import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconSad = forwardRef((props, ref) => { return ( ); }); IconSad.displayName = 'IconSad'; export {IconSad};