MastercardLogo.tsx raw
1 import { SVGAttributes } from "react";
2
3 export function MastercardLogo(props: SVGAttributes<SVGElement>) {
4 return (
5 <svg
6 {...props}
7 viewBox="0 0 152 108"
8 xmlns="http://www.w3.org/2000/svg"
9 aria-label="Mastercard"
10 >
11 <circle cx="60" cy="54" r="36" fill="#EB001B" />
12 <circle cx="92" cy="54" r="36" fill="#F79E1B" />
13 <path
14 fill="#FF5F00"
15 d="M 76 21.75 A 36 36 0 0 1 76 86.25 A 36 36 0 0 1 76 21.75 Z"
16 />
17 </svg>
18 );
19 }
20