Alby.tsx raw

   1  import { SVGAttributes } from "react";
   2  
   3  export function AlbyIcon(props: SVGAttributes<SVGElement>) {
   4    return (
   5      <svg
   6        xmlns="http://www.w3.org/2000/svg"
   7        viewBox="0 0 9423.732 10000"
   8        {...props}
   9      >
  10        <path
  11          fill="currentColor"
  12          d="M5527.962 4990.99c393.301-.834 787.346 74.247 1132.78 208.89 0 1299.07-892.45 1794.67-2010.18 1794.71-.5 1.02-678.02 1397.06 1141.3 3005.41-1807.59 0-3151.49-1108.56-3151.49-2496.66 0-399.54 105.11-777.31 292.13-1112.74 462.72-829.91 1481.02-1399.61 2595.46-1399.61Zm3732.91-1000.81c89.94 0 162.86 71.11 162.86 158.82 0 87.72-72.92 158.83-162.86 158.83-420.35 0-761.79 329.4-767.7 737.95 395.18 134.9 679.28 508.38 679.28 948v1001.8h-1005.09c-555.09 0-1005.09-448.52-1005.09-1001.8s450-1001.8 1005.09-1001.8h1.98c34.23-558.88 509.84-1001.8 1091.53-1001.8ZM65.874 3361.38c-211.361-681.58 74.341-894.86 1024.978-775.19 460.33 64.1 1315.68 332.36 1957.75 621.58 1043.89 468.09 1727.36 989.66 1653.95 1262.85-43.5 161.88-550.3 399.52-1054.13 497.31-1028.44 195.65-2013.85 50.83-2632.17-378.31-414.83-284.96-813.81-809.21-950.378-1228.24ZM4098.122 435.873c334.09-630.92 687.41-580.369 1274.72 174.253 280.03 369.763 694.54 1162.294 943.38 1819.334 406.06 1066.71 519.32 1917.22 273.61 2058.66-145.6 83.81-672.55-105.34-1098.18-391.29-866.02-586.49-1460.07-1383.4-1592.85-2122.64-91.17-493.87-1.38-1145.768 199.32-1538.317Z"
  13        />
  14      </svg>
  15    );
  16  }
  17