@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.27 kB
JavaScript
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",
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("path", {
d: "m15.605 10.611 2.928 1.602a.897.897 0 0 1 0 1.574l-2.928 1.602a5.58 5.58 0 0 0-2.216 2.216l-1.602 2.928a.897.897 0 0 1-1.574 0l-1.602-2.928a5.58 5.58 0 0 0-2.216-2.216l-2.928-1.602a.897.897 0 0 1 0-1.574l2.928-1.602a5.58 5.58 0 0 0 2.216-2.216l1.602-2.928a.897.897 0 0 1 1.574 0l1.602 2.928a5.58 5.58 0 0 0 2.216 2.216Z"
}), /*#__PURE__*/React.createElement("path", {
d: "m19.727 5.104 1.098.6a.336.336 0 0 1 0 .591l-1.098.6c-.351.193-.64.481-.831.832l-.6 1.098a.336.336 0 0 1-.591 0l-.6-1.098c-.193-.351-.481-.64-.832-.831l-1.098-.6a.336.336 0 0 1 0-.591l1.098-.6c.351-.193.64-.481.831-.832l.6-1.098a.336.336 0 0 1 .591 0l.6 1.098c.193.351.481.64.832.831Z",
opacity: 0.4
}));
const ForwardRef = forwardRef(AiStarIcon);
export default ForwardRef;