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/Location.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/Location.tsx')
| -rw-r--r-- | src/components/svg/Location.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/svg/Location.tsx b/src/components/svg/Location.tsx new file mode 100644 index 0000000..0fd7d16 --- /dev/null +++ b/src/components/svg/Location.tsx @@ -0,0 +1,8 @@ +import type { SVGProps } from 'react'; + +const SvgLocation = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" width={512} height={512} viewBox="0 0 64 64" {...props}> + <path d="M32 0A24.03 24.03 0 0 0 8 24c0 17.23 22.36 38.81 23.31 39.72a.99.99 0 0 0 1.38 0C33.64 62.81 56 41.23 56 24A24.03 24.03 0 0 0 32 0m0 35a11 11 0 1 1 11-11 11.007 11.007 0 0 1-11 11" /> + </svg> +); +export default SvgLocation; |