Spaces:
Running
Running
File size: 499 Bytes
9cd6ddb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { forwardRef } from "react";
export const GrandMasterOW = forwardRef((props: any, ref) => (
<image
ref={ref}
x="0"
y="0"
width="180px"
height="110px"
viewBox="0 0 180 110"
href="https://i.imgur.com/4eLiF8D.webp?maxwidth=760&fidelity=grand"
{...props}
></image>
));
export const OverwatchIcons = [
{
component: GrandMasterOW,
name: "GrandMasterOW",
tags: ["overwatch", "Grandmaster"],
isPremium: true,
category: "Overwatch",
},
];
|