19 lines
428 B
JavaScript
19 lines
428 B
JavaScript
import React from "react";
|
|
|
|
function ShapeTriangleIcon() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
fill="currentcolor"
|
|
>
|
|
<path d="M0 0h24v24H0z" fill="none" />
|
|
<path d="M2.73 21h18.53c.77 0 1.25-.83.87-1.5l-9.27-16a.996.996 0 00-1.73 0l-9.27 16c-.38.67.1 1.5.87 1.5z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ShapeTriangleIcon;
|