manifold/web/lib/icons/triangle-fill-icon.tsx

17 lines
486 B
TypeScript
Raw Normal View History

// Icon from Bootstrap: https://icons.getbootstrap.com/
export default function TriangleFillIcon(props: { className?: string }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
className={props.className}
viewBox="0 0 16 16"
>
<path
2022-05-25 16:48:28 +00:00
fillRule="evenodd"
d="M7.022 1.566a1.13 1.13 0 0 1 1.96 0l6.857 11.667c.457.778-.092 1.767-.98 1.767H1.144c-.889 0-1.437-.99-.98-1.767L7.022 1.566z"
/>
</svg>
)
}