forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.tsx
More file actions
13 lines (12 loc) · 830 Bytes
/
User.tsx
File metadata and controls
13 lines (12 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import IconBase from 'react-icons/IconBase';
export const UserIcon = props => (
<IconBase fill="none" viewBox="0 0 24 24" {...props}>
<path
clipRule="evenodd"
d="m15.9534 6.45205c0 .97485-.347 1.93741-.7571 2.67069-.0931.16646.0746.44777.2427.7296.1844.30936.3692.61936.2098.77876-.4363.4363-1.4674.3843-2.3024.3221-.5483.4799-1.2091.76-1.9205.76-.8001 0-1.53626-.3544-2.12019-.9486-.16009.0742-.31971.1483-.47739.2237-1.24057-.1645-2.00655-2.20661-1.71086-4.56109s1.54107-4.12976 2.78164-3.9652c.284.0611.5412.13992.7741.23345.5329-.44032 1.1657-.69546 1.8446-.69546 1.8974 0 3.4356 1.99325 3.4356 4.45205zm-10.90009 12.62585h12.39809s.8963-5.984-6.2737-6.1407c-7.17001-.1568-6.12439 6.1407-6.12439 6.1407z"
fill="currentColor"
fillRule="evenodd"
/>
</IconBase>
);