@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.01 kB
JavaScript
const React = require("react");
function StarIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M10.533 3.112a1.524 1.524 0 0 1 2.934 0l1.303 4.184c.207.663.799 1.112 1.467 1.112h4.218c1.494 0 2.115 1.994.906 2.91l-3.412 2.586a1.65 1.65 0 0 0-.56 1.799l1.303 4.184c.462 1.482-1.165 2.715-2.373 1.799l-3.412-2.587a1.49 1.49 0 0 0-1.814 0l-3.412 2.587c-1.208.916-2.835-.317-2.373-1.8l1.303-4.183a1.65 1.65 0 0 0-.56-1.8l-3.412-2.585c-1.209-.916-.588-2.91.906-2.91h4.218c.668 0 1.26-.45 1.467-1.112z"
}));
}
const ForwardRef = React.forwardRef(StarIcon);
module.exports = ForwardRef;