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