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