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