GooglePay.tsx raw

   1  import { SVGAttributes } from "react";
   2  
   3  export function GooglePayIcon(props: SVGAttributes<SVGElement>) {
   4    return (
   5      <svg
   6        {...props}
   7        width="16"
   8        height="16"
   9        fill="none"
  10        xmlns="http://www.w3.org/2000/svg"
  11      >
  12        <path
  13          d="M13.5 8a5.5 5.5 0 1 1-2.4-4.5"
  14          stroke="currentColor"
  15          strokeWidth="1.5"
  16          strokeLinecap="round"
  17          strokeLinejoin="round"
  18        />
  19        <path
  20          d="M8.5 8h5"
  21          stroke="currentColor"
  22          strokeWidth="1.5"
  23          strokeLinecap="round"
  24          strokeLinejoin="round"
  25        />
  26      </svg>
  27    );
  28  }
  29