import { useTheme } from '@mui/material'; export const HomeIcon = ({ height = 20, width = 23, color }) => { const theme = useTheme(); const setColor = color ? color : theme.palette.text.primary; return ( ); };