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