import { faCheck, faX } from "@fortawesome/free-solid-svg-icons"; import type { SightingType } from "../../types/types"; import NumberPlate from "../PlateStack/NumberPlate"; import ModalComponent from "../UI/ModalComponent"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; type SightingModalProps = { isSightingModalOpen: boolean; handleClose: () => void; sighting: SightingType | null; }; const SightingModal = ({ isSightingModalOpen, handleClose, sighting, }: SightingModalProps) => { const motionAway = (sighting?.motion ?? "").toUpperCase() === "AWAY"; return (

Sighting Details

overview patch
plate patch infrared patch
); }; export default SightingModal;