Chrome.tsx raw

   1  import { SVGAttributes } from "react";
   2  
   3  export function ChromeIcon(props: SVGAttributes<SVGElement>) {
   4    return (
   5      <svg
   6        xmlns="http://www.w3.org/2000/svg"
   7        width="16"
   8        height="16"
   9        fill="none"
  10        {...props}
  11      >
  12        <path
  13          stroke="currentColor"
  14          strokeLinecap="round"
  15          strokeLinejoin="round"
  16          d="M8.07 5.291h6.505M1 8.071a7.07 7.07 0 1 0 14.141 0A7.07 7.07 0 0 0 1 8.07Z"
  17        />
  18        <path
  19          stroke="currentColor"
  20          strokeLinecap="round"
  21          strokeLinejoin="round"
  22          d="M5.651 9.461 2.398 3.828m8.07 5.628-3.252 5.633m-1.928-7.02a2.778 2.778 0 1 0 5.556 0 2.778 2.778 0 0 0-5.556 0Z"
  23        />
  24      </svg>
  25    );
  26  }
  27