@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 938 B
JavaScript
import * as React from "react";
function TriangleIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M2.39 18.098l8.225-14.206c.455-.785.682-1.178.979-1.31a1 1 0 01.812 0c.297.132.524.525.978 1.31l8.225 14.206c.456.788.685 1.182.65 1.506a1 1 0 01-.406.705c-.263.191-.718.191-1.628.191H3.775c-.91 0-1.366 0-1.629-.191a1 1 0 01-.406-.705c-.034-.324.194-.718.65-1.506z"
}));
}
const ForwardRef = React.forwardRef(TriangleIcon);
export default ForwardRef;