forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeam.tsx
More file actions
30 lines (29 loc) · 2.41 KB
/
Team.tsx
File metadata and controls
30 lines (29 loc) · 2.41 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
27
28
29
30
import React from 'react';
import IconBase from 'react-icons/IconBase';
export const TeamIcon = props => (
<IconBase
viewBox="0 0 33 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M9.98041 17.3524C11.4921 17.3524 12.7214 15.8995 12.7543 14.2274C12.8192 14.1384 12.8639 14.024 12.8766 13.8963C12.8957 13.7058 12.8394 13.5294 12.7376 13.4147C12.6588 11.8805 12.266 10.2483 10.6463 10.0524L10.6277 10.0502C10.1581 9.99325 9.08961 9.86378 8.87058 10.5087C7.3924 10.3299 7.20857 11.8965 7.19827 13.1907C7.0275 13.2967 6.93859 13.5444 6.9944 13.8017C7.02765 13.955 7.10599 14.0827 7.20584 14.1655C7.20917 15.8635 8.45011 17.3524 9.98041 17.3524ZM10.767 22.8274L10.767 22.7992C10.7669 21.3867 10.7669 19.9174 12.2098 19.0109C11.3219 17.5281 3.32138 17.9227 5.31908 22.8274H10.767Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M23.354 17.3679C21.8205 17.3765 20.5689 15.8906 20.5594 14.1898C20.5589 14.1043 20.559 14.0176 20.5598 13.9301C20.4799 13.8413 20.4222 13.7188 20.4027 13.5783C20.3702 13.3436 20.454 13.1256 20.6011 13.0167C20.7249 11.6198 21.1773 10.2577 22.6467 10.0718L22.6653 10.0694C23.135 10.0099 24.2035 9.8744 24.4264 10.518C26.0573 10.3117 26.1235 12.2385 26.1161 13.5805C26.2378 13.7 26.2989 13.9044 26.2607 14.1197C26.2371 14.2527 26.1793 14.3684 26.1021 14.4536C25.9776 16.0291 24.7983 17.3598 23.354 17.3679ZM21.7101 22.5895L21.7101 22.5637C21.7101 21.2685 21.7102 19.9214 20.3872 19.0903C21.2013 17.7308 28.5367 18.0926 26.7051 22.5895H21.7101Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M20.0196 13.6191C20.0196 14.3434 19.7618 15.0586 19.4571 15.6034C19.3879 15.7271 19.5125 15.9361 19.6374 16.1455C19.7744 16.3754 19.9117 16.6057 19.7933 16.7241C19.4691 17.0483 18.7029 17.0097 18.0824 16.9634C17.6751 17.3199 17.1841 17.5281 16.6555 17.5281C16.0611 17.5281 15.5141 17.2648 15.0802 16.8233C14.9613 16.8784 14.8427 16.9334 14.7255 16.9895C13.8038 16.8672 13.2346 15.35 13.4543 13.6007C13.674 11.8513 14.5993 10.5323 15.5211 10.6546C15.7321 10.7 15.9233 10.7586 16.0964 10.8281C16.4923 10.5009 16.9626 10.3113 17.467 10.3113C18.8768 10.3113 20.0196 11.7923 20.0196 13.6191ZM11.9207 23L21.1323 23C21.1323 23 21.7982 18.554 16.471 18.4375C11.1438 18.321 11.9207 23 11.9207 23Z"
fill="currentColor"
/>
</IconBase>
);