UNPKG

@astraicons/react

Version:

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

30 lines 1.44 kB
const React = require("react"); const { forwardRef } = require("react"); const MagicIcon = ({ 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("rect", { width: 16.975, height: 4.238, x: 2.336, y: 18.104, rx: 2.119, transform: "rotate(-45.483 2.336 18.104)" }), /*#__PURE__*/React.createElement("path", { d: "M8.707 3.222a.305.305 0 0 1 .586 0l.261.837a.31.31 0 0 0 .293.223h.844c.299 0 .423.398.181.582l-.682.517a.33.33 0 0 0-.112.36l.26.836c.093.297-.232.543-.474.36L9.18 6.42a.3.3 0 0 0-.362 0l-.683.517c-.241.183-.567-.063-.474-.36l.26-.836a.33.33 0 0 0-.112-.36l-.682-.517c-.242-.184-.118-.582.181-.582h.844a.31.31 0 0 0 .293-.223zM18.707 11.222a.305.305 0 0 1 .586 0l.261.837a.31.31 0 0 0 .293.223h.844c.299 0 .423.398.181.582l-.682.517a.33.33 0 0 0-.112.36l.26.836c.093.297-.233.543-.474.36l-.683-.517a.3.3 0 0 0-.362 0l-.683.517c-.241.183-.567-.063-.474-.36l.26-.836a.33.33 0 0 0-.112-.36l-.682-.517c-.242-.184-.118-.583.181-.583h.844a.31.31 0 0 0 .293-.222z", opacity: 0.4 })); const ForwardRef = forwardRef(MagicIcon); module.exports = ForwardRef;