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 816 B
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 16 16", 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: "M8 3.334a.75.75 0 0 0-.639.357L5.5 8 2.652 5.018a.75.75 0 0 0-1.144.746l.959 6.265a.75.75 0 0 0 .742.637h9.582a.75.75 0 0 0 .742-.637l.96-6.265a.75.75 0 0 0-1.145-.746L10.5 8 8.639 3.691A.75.75 0 0 0 8 3.334Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(CrownIcon); module.exports = ForwardRef;