import type { SvgIconProps } from '@mui/material/SvgIcon'; import SvgIcon from '@mui/material/SvgIcon'; import { memo } from 'react'; // ---------------------------------------------------------------------- function PlanFreeIcon({ sx, ...other }: SvgIconProps) { return ( ({ '--primary-main': theme.vars.palette.primary.main, '--primary-dark': theme.vars.palette.primary.dark, '--primary-darker': theme.vars.palette.primary.darker, width: 48, flexShrink: 0, height: 'auto', }), ...(Array.isArray(sx) ? sx : [sx]), ]} {...other} > ); } export default memo(PlanFreeIcon);