mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-13 20:15:35 +01:00
32 lines
1.6 KiB
JavaScript
32 lines
1.6 KiB
JavaScript
export default function CricleXmark({ className }) {
|
|
return (
|
|
<svg
|
|
fill="#fb1e1e"
|
|
width="800px"
|
|
height="800px"
|
|
viewBox="0 0 56.00 56.00"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
stroke="#fb1e1e"
|
|
className={className}
|
|
>
|
|
<g strokeWidth="0" transform="translate(12.4,12.4), scale(0.6)">
|
|
<rect
|
|
x="0"
|
|
y="0"
|
|
width="56.00"
|
|
height="56.00"
|
|
rx="28"
|
|
fill="#ffffff"
|
|
strokewidth="0"
|
|
/>
|
|
</g>
|
|
|
|
<g strokeLinecap="round" strokeLinejoin="round" />
|
|
|
|
<g>
|
|
<path d="M 27.9999 51.9063 C 41.0546 51.9063 51.9063 41.0781 51.9063 28 C 51.9063 14.9453 41.0312 4.0937 27.9765 4.0937 C 14.8983 4.0937 4.0937 14.9453 4.0937 28 C 4.0937 41.0781 14.9218 51.9063 27.9999 51.9063 Z M 19.5858 38.4063 C 18.4843 38.4063 17.5936 37.5156 17.5936 36.4141 C 17.5936 35.8750 17.8280 35.4063 18.2030 35.0547 L 25.1874 28.0234 L 18.2030 20.9922 C 17.8280 20.6641 17.5936 20.1719 17.5936 19.6328 C 17.5936 18.5547 18.4843 17.6875 19.5858 17.6875 C 20.1249 17.6875 20.5936 17.8984 20.9452 18.2734 L 27.9765 25.2812 L 35.0546 18.25 C 35.4530 17.8281 35.8749 17.6406 36.3905 17.6406 C 37.4921 17.6406 38.3827 18.5312 38.3827 19.6094 C 38.3827 20.1484 38.1952 20.5937 37.7968 20.9688 L 30.7655 28.0234 L 37.7733 35.0078 C 38.1249 35.3828 38.3593 35.8516 38.3593 36.4141 C 38.3593 37.5156 37.4687 38.4063 36.3671 38.4063 C 35.8046 38.4063 35.3358 38.1719 34.9843 37.8203 L 27.9765 30.7890 L 20.9921 37.8203 C 20.6405 38.1953 20.1249 38.4063 19.5858 38.4063 Z" />
|
|
</g>
|
|
</svg>
|
|
)
|
|
}
|