-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-add-user.tsx
More file actions
26 lines (23 loc) · 1.55 KB
/
Copy pathicon-add-user.tsx
File metadata and controls
26 lines (23 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { forwardRef } from 'react';
import type { IconProps } from './types';
const IconAddUser = forwardRef<SVGSVGElement, IconProps>((props, ref) => {
const { size = '1em', color = 'currentColor', className, style, ...rest } = props;
return (
<svg
ref={ref}
viewBox="0 0 1024 1024"
width={size}
height={size}
fill={color}
className={className}
style={{ verticalAlign: "middle", ...style }}
{...rest}
>
<g transform="translate(0, 896) scale(1, -1)">
<path d="M678.3 253.60000000000002c24.2 13 51.9 20.4 81.4 20.4h0.1c3 0 4.4 3.6 2.2 5.6-30.8 27.6-65.6 49.7-103.7 65.8-0.4 0.2-0.8 0.3-1.2 0.5C719.2 391 759.6 464.3 759.6 547c0 137-110.8 248-247.5 248S264.7 684 264.7 547c0-82.7 40.4-156 102.6-201.1-0.4-0.2-0.8-0.3-1.2-0.5-44.7-18.9-84.8-46-119.3-80.6-34.5-34.5-61.5-74.7-80.4-119.5C147.9 101.5 138 55 137 7.2000000000000455c-0.1-4.5 3.5-8.2 8-8.2h59.9c4.3 0 7.9 3.5 8 7.8 2 77.2 32.9 149.5 87.6 204.3C357 267.79999999999995 432.2 299 512.2 299c56.7 0 111.1-15.7 158-45.1 2.5-1.5 5.5-1.7 8.1-0.3zM512.2 375c-45.8 0-88.9 17.9-121.4 50.4-32.4 32.5-50.3 75.7-50.3 121.6 0 45.9 17.9 89.1 50.3 121.6S466.3 719 512.2 719s88.9-17.9 121.4-50.4c32.4-32.5 50.3-75.7 50.3-121.6 0-45.9-17.9-89.1-50.3-121.6C601.1 392.9 558 375 512.2 375zM880 137h-84v84c0 4.4-3.6 8-8 8h-56c-4.4 0-8-3.6-8-8v-84h-84c-4.4 0-8-3.6-8-8v-56c0-4.4 3.6-8 8-8h84v-84c0-4.4 3.6-8 8-8h56c4.4 0 8 3.6 8 8v84h84c4.4 0 8 3.6 8 8v56c0 4.4-3.6 8-8 8z" />
</g>
</svg>
);
});
IconAddUser.displayName = 'IconAddUser';
export { IconAddUser };