import { Box, useTheme } from "@mui/material"; interface Props { bgcolor: string; } export default function MobilePhoneIcon({ bgcolor }: Props) { const theme = useTheme(); return ( ); }