import { useTheme } from '@mui/material'; import { SVGProps } from './interfaces'; export const NavAdd: React.FC = ({ color, opacity, ...children }) => { const theme = useTheme(); const setColor = color ? color : theme.palette.text.primary; const setOpacity = opacity ? opacity : 1; return ( ); };