import * as React from 'react'; import SvgIcon, {SVGIconProps} from './svgIcon'; interface Props extends SVGIconProps { isSolid?: boolean; } const IconLightning = React.forwardRef( ({isSolid = false, ...props}, ref) => { return ( {isSolid ? ( ) : ( )} ); } ); IconLightning.displayName = 'IconLightning'; export {IconLightning};