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

{formatNumberPlate(sighting?.vrm)}

); }; export default NumberPlate;