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.22 kB
import * as React from "react"; import { forwardRef } from "react"; const MagicIcon = ({ 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: "M9.77 3.074c-.238-.765-1.303-.765-1.541 0l-.22.708h-.7a.8.8 0 0 0-.77.573.82.82 0 0 0 .287.907l.583.443-.225.724a.82.82 0 0 0 .287.907.79.79 0 0 0 .967 0L9 6.91l.562.426c.32.242.709.195.966 0a.82.82 0 0 0 .288-.907l-.226-.724.584-.443a.82.82 0 0 0 .287-.907.805.805 0 0 0-.77-.574h-.7zM3.286 16.067a2.869 2.869 0 1 0 4.092 4.023l8.93-9.082a2.869 2.869 0 1 0-4.091-4.023zM19.77 11.074c-.238-.765-1.303-.765-1.541 0l-.22.707h-.7a.8.8 0 0 0-.77.574.82.82 0 0 0 .287.907l.584.443-.226.724a.82.82 0 0 0 .287.907.79.79 0 0 0 .967 0L19 14.91l.561.426c.32.242.71.194.967 0a.82.82 0 0 0 .288-.907l-.226-.724.584-.443a.82.82 0 0 0 .288-.907.805.805 0 0 0-.771-.574h-.7z" })); const ForwardRef = forwardRef(MagicIcon); export default ForwardRef;