UNPKG

@astraicons/react

Version:

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

20 lines 1.01 kB
const React = require("react"); const { forwardRef } = require("react"); const CrownIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M15.047 19.514a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1 0-1.5zM10.481 3.218c.645-1.29 2.486-1.29 3.131 0l2.649 5.297a.25.25 0 0 0 .34.108l1.707-.9.01-.006.011-.005c.876-.427 1.758-.128 2.308.462.538.579.797 1.458.587 2.356l-.013.055-.022.052-2.195 5.492a1.75 1.75 0 0 1-1.625 1.1H6.671a1.75 1.75 0 0 1-1.625-1.1l-2.194-5.492-.022-.052-.013-.055c-.21-.898.049-1.777.587-2.356.515-.554 1.323-.85 2.144-.534l.164.072.015.008 1.764.912a.25.25 0 0 0 .338-.11z" })); const ForwardRef = forwardRef(CrownIcon); module.exports = ForwardRef;