12345678910111213141516171819202122232425262728 |
- import * as React from 'react';
- import SvgIcon, {SVGIconProps} from './svgIcon';
- interface Props extends SVGIconProps {
- isSolid?: boolean;
- }
- const IconLightning = React.forwardRef<SVGSVGElement, Props>(
- ({isSolid = false, ...props}, ref) => {
- return (
- <SvgIcon {...props} ref={ref}>
- {isSolid ? (
- <React.Fragment>
- <path d="M3.81,16a1.21,1.21,0,0,1-.74-.26,1.19,1.19,0,0,1-.33-1.45L4.79,10,2.32,8.39a1,1,0,0,1-.07-1.58L10.67.26a1.19,1.19,0,0,1,1.8,1.46L10.41,6,12.9,7.64a1,1,0,0,1,.44.78,1,1,0,0,1-.38.8L4.54,15.74A1.15,1.15,0,0,1,3.81,16Z" />
- <path d="M12.08,8.9Z" />
- </React.Fragment>
- ) : (
- <path d="M3.81,16a1.21,1.21,0,0,1-.74-.26,1.19,1.19,0,0,1-.33-1.45L4.79,10,2.32,8.39a1,1,0,0,1-.07-1.58L10.67.26a1.19,1.19,0,0,1,1.8,1.46L10.41,6,12.9,7.64a1,1,0,0,1,.44.78,1,1,0,0,1-.38.8L4.54,15.74A1.15,1.15,0,0,1,3.81,16ZM3.76,7.53l2.4,1.56a.77.77,0,0,1,.27,1L4.65,13.76l6.81-5.27L9,6.91a.75.75,0,0,1-.26-1l1.78-3.71ZM12.08,8.9Zm-.95-8h0Z" />
- )}
- </SvgIcon>
- );
- }
- );
- IconLightning.displayName = 'IconLightning';
- export {IconLightning};
|