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