import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps & { isSolid?: boolean; }; const IconLightning = React.forwardRef(function IconLightning( {isSolid = false, ...props}: Props, ref: React.Ref ) { return ( {isSolid ? ( ) : ( )} ); }); IconLightning.displayName = 'IconLightning'; export {IconLightning};