-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFriendtechIcon.tsx
30 lines (29 loc) · 2.02 KB
/
FriendtechIcon.tsx
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 { Icon, type IconProps } from ':/app/components/Icon';
export function FriendtechIcon(props: Omit<IconProps, 'children'>) {
return (
<Icon viewBox="0 0 32 32" {...props}>
<svg>
<g clipPath="url(#clip0_452_7226)">
<path
d="M28 16.8431C27.8596 17.5983 27.8335 18.3681 27.6428 19.1194C27.208 20.8283 26.4247 22.3174 25.078 23.4889C24.0091 24.4184 22.7301 24.369 21.6854 23.2992C20.7675 22.3581 20.2776 21.1623 19.8109 19.9637C19.2155 18.4339 18.8679 16.8383 18.5842 15.2253C18.6113 16.4481 18.8069 17.6438 19.1022 18.8289C19.5146 20.4865 20.172 22.0231 21.269 23.3485C21.4481 23.5645 21.4278 23.7252 21.2564 23.9362C20.3337 25.0691 19.383 26.1757 18.3625 27.2233C18.101 27.4915 17.859 27.5612 17.5095 27.416C17.0806 27.2369 16.639 27.0781 16.1898 26.959C15.7347 26.8389 15.5914 26.5436 15.5556 26.1176C15.4724 25.1107 15.3223 24.1076 15.2845 23.0987C15.1528 19.5745 15.2574 16.0666 16.244 12.643C16.4628 11.882 16.7659 11.1607 17.2664 10.5352C17.8929 9.75196 18.7023 9.43633 19.6908 9.59124C21.5043 9.87493 23.2664 10.298 24.9511 11.0794C26.9563 12.0089 27.8199 13.587 27.91 15.6997C27.9177 15.8914 27.9051 16.087 27.9981 16.2651V16.8431H28Z"
fill="currentColor"
/>
<path
d="M14.3958 20.076C14.3493 21.6174 14.1014 23.8617 13.6638 26.0866C13.5844 26.4894 13.3888 26.7247 13.0161 26.9009C11.4805 27.627 11.4795 27.6416 10.4726 26.29C8.23698 23.2895 6.3025 20.1176 5.06706 16.5652C4.28572 14.3161 3.95168 11.9808 4.0059 9.60478C4.03108 8.48553 4.17728 7.36144 4.76982 6.3574C5.64218 4.87895 7.06254 4.59236 8.48775 5.57509C10.0272 6.63625 11.0603 8.1089 11.9452 9.70838C13.6057 12.7079 14.4161 15.9253 14.3958 20.0769V20.076Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_452_7226">
<rect
width="24"
height="22.4896"
fill="currentColor"
transform="translate(4 5)"
/>
</clipPath>
</defs>
</svg>
</Icon>
);
}