mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-06-02 22:26:57 -05:00
This is just bad UX than a11y. Most of the time icons are used with contextual text but if stand-alone we should provide a better name in the context of the feature rather than a generic one.
38 lines
1017 B
XML
38 lines
1017 B
XML
export function BattlefyIcon() {
|
|
return (
|
|
<svg
|
|
version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
x="0px"
|
|
y="0px"
|
|
viewBox="0 0 1152 1152"
|
|
enableBackground="new 0 0 1152 1152"
|
|
xmlSpace="preserve"
|
|
>
|
|
<path
|
|
display="none"
|
|
fill="#151B27"
|
|
d="M1152,1099.3c0,29.4-23.8,52.7-53.2,52.7H52.8c-29.4,0-52.8-23.4-52.8-52.7V53.2
|
|
C0,23.8,23.4,0,52.8,0h1046.1c29.4,0,53.2,23.8,53.2,53.2V1099.3z"
|
|
/>
|
|
<g>
|
|
<path
|
|
fill="#DD4B5E"
|
|
d="M222.5,399.8c1.5-18.1,79.5-154.8,99.7-166.1c20.2-11.3,211.5-22.9,211.5-22.9S368.9,346.1,331.5,555.9
|
|
c-37.3,209.8-1.3,374.1-1.3,374.1S218.8,444.5,222.5,399.8z"
|
|
/>
|
|
<path
|
|
fill="#DD4B5E"
|
|
d="M467.6,753.3c0,0,242.8-431.4,522.1-542.6l-154,520L342.4,941.2c0,0,417.4-276.9,449.6-289.8l93.3-307.7
|
|
C885.4,343.8,548.5,641.2,467.6,753.3z"
|
|
/>
|
|
<path
|
|
fill="#DD4B5E"
|
|
d="M672.9,400.4c0,0-203.8,193.6-257.9,351.2c0,0-26-108.8-19.5-133.2L672.9,400.4z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|