import { GB } from "country-flag-icons/react/3x2"; import { formatNumberPlate } from "../../utils/utils"; import type { Sighting } from "../../types/types"; type NumberPlateProps = { sighting: Sighting; }; const NumberPlate = ({ sighting }: NumberPlateProps) => { return (

{formatNumberPlate(sighting?.vrm)}

); }; export default NumberPlate;