diff options
| author | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
| commit | 396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b (patch) | |
| tree | b9df4ca6a70db45cfffbae6fdd7252e20fb8e93c /src/components/svg/Lightning.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/Lightning.tsx')
| -rw-r--r-- | src/components/svg/Lightning.tsx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/components/svg/Lightning.tsx b/src/components/svg/Lightning.tsx new file mode 100644 index 0000000..9539a96 --- /dev/null +++ b/src/components/svg/Lightning.tsx @@ -0,0 +1,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; |