Skip to content

Commit

Permalink
feat: add AddUser icon
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-shaposhnik committed Apr 14, 2021
1 parent aa02084 commit a254f3e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions packages/icons/src/add-user.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';
import { intrinsicComponent } from './utils/functions';
import type { IconProps } from './icon.props';

export const AddUser = intrinsicComponent<IconProps, SVGSVGElement>(
({ color = 'currentColor', size = 14, ...rest }, ref): JSX.Element => (
<svg
ref={ref}
width={size}
height={size}
viewBox="0 0 50 50"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<path
d="M47.7807 27.9051H38.3941V18.5183C38.3941 17.8708 37.8684 17.345 37.2206 17.345C36.5731 17.345 36.0474 17.8708 36.0474 18.5183V27.9051H26.6606C26.0131 27.9051 25.4874 28.4308 25.4874 29.0783C25.4874 29.7261 26.0131 30.2518 26.6606 30.2518H36.0474V39.6384C36.0474 40.2861 36.5731 40.8118 37.2206 40.8118C37.8684 40.8118 38.3941 40.2861 38.3941 39.6384V30.2518H47.7807C48.4284 30.2518 48.9542 29.7261 48.9542 29.0783C48.9542 28.4308 48.4284 27.9051 47.7807 27.9051Z"
fill={color}
/>
<path
d="M33.6574 12.045C33.6574 17.0444 30.5966 21.4317 26.1073 23.2682C29.0709 23.2682 32.1431 24.3626 34.67 26.2082V26.5277H25.9975C24.5888 26.5277 23.4468 27.6697 23.4468 29.0784C23.4468 30.4872 24.5888 31.6292 25.9975 31.6292H34.67V40.3017C34.67 41.7104 35.812 42.8524 37.2208 42.8524C38.6295 42.8524 39.7715 41.7104 39.7715 40.3017V33.0074C40.0321 33.8121 40.2066 34.6493 40.2816 35.5118L41.7178 46.7351C41.7178 46.8881 41.7433 47.0411 41.7688 47.1942C41.7943 47.3472 41.8198 47.5003 41.8198 47.6533C41.9218 48.8777 40.9016 50 39.6772 50H3.1506C1.82421 50 0.905945 48.8777 1.00797 47.6533C1.41609 43.5721 2.33436 35.5118 2.33436 35.5118C3.25263 28.5738 9.57846 23.2682 16.4144 23.2682H16.8226C12.5373 21.4317 9.47643 17.1465 9.47643 12.147C9.47643 5.31103 15.0881 -0.198568 22.0261 0.00549112C28.4539 0.31158 33.6574 5.61712 33.6574 12.045Z"
fill={color}
/>
</svg>
)
);

export default AddUser;
1 change: 1 addition & 0 deletions packages/icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,4 @@ export { ReleaseNotes } from './release-notes';
export { About } from './about';
export { Support } from './support';
export { Documentation } from './documentation';
export { AddUser } from './add-user';

0 comments on commit a254f3e

Please sign in to comment.