@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.11 kB
JavaScript
import * as React from "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.442 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.658c-.787.426-1.737.07-2.132-.799L14 4.062c-.628-1.382-2.506-1.45-3 0L9.166 8.126c-.319.935-1.267 1.396-2.1 1.02l-1.859-.839c-1.235-.557-2.506.708-2.145 2.134Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M9 20.063h6"
}));
}
const ForwardRef = React.forwardRef(CrownIcon);
export default ForwardRef;