@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 • 821 B
JavaScript
const React = require("react");
function CrownIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
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: "M10 4.166a.75.75 0 0 0-.64.361L6.5 9.5 3.031 6.32a.75.75 0 0 0-1.148.742l1.23 8.133a.75.75 0 0 0 .74.639h12.293a.75.75 0 0 0 .74-.639l1.231-8.133a.75.75 0 0 0-1.148-.742L13.5 9.5l-2.86-4.973a.75.75 0 0 0-.64-.361Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(CrownIcon);
module.exports = ForwardRef;