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/Overview.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/Overview.tsx')
| -rw-r--r-- | src/components/svg/Overview.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/svg/Overview.tsx b/src/components/svg/Overview.tsx new file mode 100644 index 0000000..67e6af1 --- /dev/null +++ b/src/components/svg/Overview.tsx @@ -0,0 +1,8 @@ +import type { SVGProps } from 'react'; + +const SvgOverview = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" xmlSpace="preserve" viewBox="0 0 512 512" {...props}> + <path d="M452 36H60C26.916 36 0 62.916 0 96v240c0 33.084 26.916 60 60 60h176v40H132v40h248v-40H276v-40h176c33.084 0 60-26.916 60-60V96c0-33.084-26.916-60-60-60m20 300c0 11.028-8.972 20-20 20H60c-11.028 0-20-8.972-20-20V96c0-11.028 8.972-20 20-20h392c11.028 0 20 8.972 20 20z" /> + </svg> +); +export default SvgOverview; |