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