import { useTheme } from "@mui/material"; interface Props { width?: number; } export default function CloseBold({ width }: Props) { const theme = useTheme(); return ( ); }