import { Box, SxProps, Theme } from "@mui/material"; type Props = { sx?: SxProps; }; export default function SimpleArrowDown({ sx }: Props) { return ( ); }