File size: 1,081 Bytes
f5071ca |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 |
export const PlayIcon = () => {
return (
<svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
width="80px"
height="80px"
viewBox="0 0 213.7 213.7"
enableBackground="new 0 0 213.7 213.7"
xmlSpace="preserve"
>
<polygon
className="triangle"
fill="none"
strokeWidth="7"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit="10"
points="73.5,62.5 148.5,105.8 73.5,149.1 "
></polygon>
<circle
className="circle"
fill="none"
strokeWidth="7"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit="10"
cx="106.8"
cy="106.8"
r="103.3"
></circle>
</svg>
);
};
|