Files
Rahoot/src/components/icons/Triangle.jsx
2024-01-31 20:06:10 +01:00

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>
)
}