import { Box, BoxProps } from '@mui/material'; // ---------------------------------------------------------------------- interface Props extends BoxProps { src: string; } export default function SvgIconStyle({ src, sx }: Props) { return ( ); }