import {Box, SxProps, Theme, useTheme} from "@mui/material"; interface Color{ color?: string } export default function ArrowDownIcon( props: any, {color = "#7E2AEA"}: Color ) { const theme = useTheme(); return ( ); }