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/Moon.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/Moon.tsx')
| -rw-r--r-- | src/components/svg/Moon.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/svg/Moon.tsx b/src/components/svg/Moon.tsx new file mode 100644 index 0000000..40e3e8b --- /dev/null +++ b/src/components/svg/Moon.tsx @@ -0,0 +1,8 @@ +import type { SVGProps } from 'react'; + +const SvgMoon = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1399.98 1400" {...props}> + <path d="M562.44 837.55C335.89 611 288.08 273.54 418.71 0a734.3 734.3 0 0 0-203.17 143.73c-287.39 287.39-287.39 753.33 0 1040.72s753.33 287.4 1040.74 0A733.8 733.8 0 0 0 1400 981.29c-273.55 130.63-611 82.8-837.56-143.74" /> + </svg> +); +export default SvgMoon; |