AlbyHubIcon.tsx raw
1 import { SVGAttributes } from "react";
2
3 export function AlbyHubIcon(props: SVGAttributes<SVGElement>) {
4 return (
5 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8000 8000" {...props}>
6 <path
7 fill="currentColor"
8 d="m1404.9 2404.8.6 1.2-.6-1.2Zm-6.5-12.2v-.1Zm6558.8 4015.2c-75.3-453.8-341.3-1051.7-631.8-1536.8-217.6 280.4-443.7 543.1-695.7 796.8 152 272.2 381.5 831.3 371.8 1131.1-3.3 103.1-84.6 186.4-187.5 193-323.7 20.9-761.2-169.8-1127-352-274.1 250.4-539.7 479-815 690.2 570.9 338.6 1305.5 669.7 1904.5 668.1 872.8 46.3 1378.7-776.2 1180.7-1590.3Zm-2708-724.2c1101.9-1101 2353-2527.3 2708.1-4090.6C8211.2 319.2 7197-277 6062.1 123.3c211.7 278.2 364.2 589.3 457.7 915 86.8-20.2 196.9-34.8 290-31.5 103.3 3.7 186.9 86.4 191.6 189.8 14 309.1-235.7 902.8-402.1 1193.8C5974.9 3533.6 5007.4 4598.9 3999 5467.5l-.2-.2c-263.6 226.5-526.2 434-804.2 626.6.4.3.8.7 1.2 1-509.3 353-1419.5 925.3-2012.1 893.4-103.8-5.6-186.2-90.2-188.7-194.2-7-297.5 215.6-843.7 363.8-1111.1-237.1-259.9-464.7-529.7-686.3-814.4-1228.3 1900.3-772.8 3911.2 1773 2814.9 1005-454.6 1968-1208.1 2803.8-2000Zm-2721-1683.2C2060 3449.2 1721.3 2979.5 1403 2401.3c-1.5-2.7-3.1-5.7-4.6-8.5-165-287.2-415.6-882.6-403.5-1193.5 4.1-104.7 88.1-188.3 192.7-192 92.1-3.3 200.7 10.5 286.6 30.6 93.6-325.7 246.3-636.9 458.1-915.1C797.7-275.8-214.2 319.3 39.3 1593c208.8 1126.2 1140.6 2354.1 1865.3 3206.2-1.2 1.8 1.2-1.8 0 0 177.9 202.7 363.2 406.5 558.2 604.1 267.3-191.5 530.8-396.1 795.1-617.7-259.1-257.5-503.7-520.6-729.7-785.2ZM1420.6 2433.9c.8 1.6 1.7 3.2 2.6 4.8-.9-1.6-1.7-3.2-2.6-4.8Zm36.8 68.4 2.7 5.1c-.9-1.6-1.8-3.3-2.7-5.1Zm-54.4-101.1Zm1.9 3.6.6 1.2-.6-1.2Z"
9 />
10 <path
11 fill="currentColor"
12 d="M2762.6 2987.4c-683.4-683.4-683.4-1791.5 0-2474.9 683.4-683.4 1791.5-683.4 2474.9 0 683.4 683.4 683.4 1791.5 0 2474.9L4000.1 4224.8 2762.7 2987.4Z"
13 />
14 </svg>
15 );
16 }
17