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