@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.01 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const CrownIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m16.957 9.287 1.706-.901c1.057-.515 2.145.654 1.836 1.973l-2.195 5.491a1 1 0 0 1-.929.629H6.677a1 1 0 0 1-.928-.629L3.553 10.36c-.309-1.319.78-2.488 1.836-1.973l1.763.912a1 1 0 0 0 1.354-.44l2.652-5.305a1 1 0 0 1 1.79 0l2.648 5.297a1 1 0 0 0 1.36.437Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M9.053 20.264h6",
opacity: 0.4
}));
const ForwardRef = forwardRef(CrownIcon);
export default ForwardRef;