import { useLocation } from "react-router-dom"; import { Box, SxProps, Theme } from "@mui/material"; interface Props { sx?: SxProps; } export default function CloseIcon({ sx }: Props) { const location = useLocation(); return ( ); }