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/Clock.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/Clock.tsx')
| -rw-r--r-- | src/components/svg/Clock.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/svg/Clock.tsx b/src/components/svg/Clock.tsx new file mode 100644 index 0000000..2dfa6a6 --- /dev/null +++ b/src/components/svg/Clock.tsx @@ -0,0 +1,12 @@ +import type { SVGProps } from 'react'; + +const SvgClock = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" width={512} height={512} viewBox="0 0 24 24" {...props}> + <g clipRule="evenodd"> + <path d="M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12" /> + <path d="M11.168 11.445a1 1 0 0 1 1.387-.277l3 2a1 1 0 0 1-1.11 1.664l-3-2a1 1 0 0 1-.277-1.387" /> + <path d="M12 6a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1" /> + </g> + </svg> +); +export default SvgClock; |