@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.07 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const StarIcon = ({
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", {
fillRule: "evenodd",
d: "M9.963 3.778c.635-2.037 3.438-2.037 4.073 0l1.173 3.765c.093.3.348.474.604.474h3.795c1.055 0 1.784.717 2.037 1.527s.064 1.81-.767 2.44l-3.072 2.327a.73.73 0 0 0-.24.799l1.172 3.765a2.205 2.205 0 0 1-.767 2.44c-.686.52-1.695.638-2.538 0l-3.07-2.328a.59.59 0 0 0-.727 0l-3.07 2.328c-.843.638-1.853.52-2.538 0a2.205 2.205 0 0 1-.768-2.44l1.173-3.765a.73.73 0 0 0-.24-.799L3.12 11.984c-.83-.63-1.02-1.63-.767-2.44.252-.81.982-1.527 2.036-1.527h3.796c.256 0 .51-.174.604-.474z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(StarIcon);
export default ForwardRef;