UNPKG

@sidekickicons/react

Version:

<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-

22 lines 732 B
const React = require("react"); function TriangleIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M9.401 3.027c1.155-2.001 4.043-2.001 5.198 0l7.354 12.747c1.154 2-.29 4.5-2.599 4.5H4.646c-2.31 0-3.753-2.5-2.599-4.5z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(TriangleIcon); module.exports = ForwardRef;