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