blob: 9539a9614bd02cc892355c6ca17c3b956cdc3676 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import type { SVGProps } from 'react';
const SvgLightning = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlSpace="preserve"
viewBox="0 0 682.667 682.667"
{...props}
>
<defs>
<clipPath id="lightning_svg__a" clipPathUnits="userSpaceOnUse">
<path d="M0 512h512V0H0Z" />
</clipPath>
</defs>
<g clipPath="url(#lightning_svg__a)" transform="matrix(1.33333 0 0 -1.33333 0 682.667)">
<path
d="M0 0h137.962L69.319-155.807h140.419L.242-482l55.349 222.794h-155.853z"
style={{
fill: 'none',
stroke: 'currentColor',
strokeWidth: 30,
strokeLinecap: 'round',
strokeLinejoin: 'round',
strokeMiterlimit: 10,
strokeDasharray: 'none',
strokeOpacity: 1,
}}
transform="translate(201.262 496.994)"
/>
</g>
</svg>
);
export default SvgLightning;
|