import { Box, useTheme } from "@mui/material"; interface Props { color?: string; } export default function UploadIcon({ color = "#9A9AAF" }: Props) { const theme = useTheme(); return ( ); }