mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-14 04:25:35 +01:00
13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
export default function Triangle({ className, fill = "#FFF" }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill={fill}
|
|
viewBox="0 0 512 512"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<polygon points="256 32 20 464 492 464 256 32" />
|
|
</svg>
|
|
)
|
|
}
|