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/AddUser.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/AddUser.tsx')
| -rw-r--r-- | src/components/svg/AddUser.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/svg/AddUser.tsx b/src/components/svg/AddUser.tsx new file mode 100644 index 0000000..d1eb509 --- /dev/null +++ b/src/components/svg/AddUser.tsx @@ -0,0 +1,16 @@ +import type { SVGProps } from 'react'; + +const SvgAddUser = (props: SVGProps<SVGSVGElement>) => ( + <svg + xmlns="http://www.w3.org/2000/svg" + width={512} + height={512} + data-name="Layer 2" + viewBox="0 0 30 30" + {...props} + > + <path d="M15 14a5.5 5.5 0 1 1 5.5-5.5A5.51 5.51 0 0 1 15 14m0-9a3.5 3.5 0 1 0 3.5 3.5A3.5 3.5 0 0 0 15 5M7.5 24.5a1 1 0 0 1-1-1 8.5 8.5 0 0 1 13.6-6.8 1 1 0 1 1-1.2 1.6A6.44 6.44 0 0 0 15 17a6.51 6.51 0 0 0-6.5 6.5 1 1 0 0 1-1 1M23 27a1 1 0 0 1-1-1v-6a1 1 0 0 1 2 0v6a1 1 0 0 1-1 1" /> + <path d="M26 24h-6a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2" /> + </svg> +); +export default SvgAddUser; |