UNPKG

@astraicons/react

Version:

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

24 lines 1.32 kB
import * as React from "react"; import { forwardRef } from "react"; const AiStarIcon = ({ 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.555 5.106c.625-1.142 2.266-1.142 2.89 0l1.602 2.929a4.83 4.83 0 0 0 1.918 1.918l2.929 1.602c1.142.624 1.142 2.266 0 2.89l-2.929 1.602a4.83 4.83 0 0 0-1.918 1.918l-1.602 2.928c-.624 1.143-2.265 1.143-2.89 0l-1.602-2.928a4.83 4.83 0 0 0-1.918-1.918l-2.928-1.602c-1.143-.624-1.143-2.266 0-2.89l2.928-1.602a4.83 4.83 0 0 0 1.918-1.918z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M18.953 2.815a1.087 1.087 0 0 0-1.82-.132l-.086.132-.6 1.098c-.124.225-.309.41-.534.533l-1.097.6a1.086 1.086 0 0 0 0 1.907l1.097.6c.225.124.41.309.534.534l.6 1.097.085.133c.46.618 1.435.574 1.821-.133l.6-1.097c.124-.225.31-.41.534-.533l1.098-.601.133-.085a1.088 1.088 0 0 0 0-1.736l-.133-.085-1.098-.6a1.34 1.34 0 0 1-.533-.534z", clipRule: "evenodd" })); const ForwardRef = forwardRef(AiStarIcon); export default ForwardRef;