import { GB } from "country-flag-icons/react/3x2"; import { formatNumberPlate } from "../../utils/utils"; type NumberPlateProps = { vrm?: string | undefined; motion?: boolean; }; const NumberPlate = ({ motion, vrm }: NumberPlateProps) => { return (

{vrm && formatNumberPlate(vrm)}

); }; export default NumberPlate;