UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

29 lines 1.12 kB
const React = require("react"); function CrownIcon({ 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", d: "m3.062 10.38 2.145 5.453c.195.768.45 1.167 1.168 1.167h12.32c.799 0 1.069-.287 1.18-1.167.105-.831 1.003-5.131 1.1-5.597a1 1 0 0 0 .014-.086c.146-1.39-1.152-2.424-2.294-1.806l-1.213.657c-.787.427-1.737.071-2.132-.798L14 4c-.628-1.382-2.506-1.448-3 0L9.166 8.065C8.847 9 7.9 9.46 7.066 9.085l-1.859-.839c-1.235-.557-2.506.708-2.145 2.134Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 20h6", opacity: 0.4 })); } const ForwardRef = React.forwardRef(CrownIcon); module.exports = ForwardRef;