@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.53 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledStarSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M16.2288 6.83225L22.7593 7.79569C23.3001 7.87295 23.7546 8.25469 23.9273 8.77732C24.1 9.30449 23.9591 9.8771 23.5683 10.2679L18.8328 14.9125L19.9508 21.5748C20.0417 22.1201 19.819 22.6746 19.3646 22.9972C18.9146 23.3199 18.3193 23.3608 17.833 23.1018L11.9978 19.9887L6.16718 23.1018C5.67637 23.3608 5.08104 23.3199 4.63113 22.9972C4.18122 22.6746 3.95399 22.1201 4.04942 21.5748L5.16738 14.9125L0.431053 10.2679C0.0397671 9.8771 -0.0992962 9.30449 0.0724877 8.77732C0.243817 8.25469 0.696909 7.87295 1.2418 7.79569L7.76686 6.83225L10.6936 0.818434C10.9344 0.317806 11.4434 0 11.9978 0C12.5568 0 13.0658 0.317806 13.3067 0.818434L16.2288 6.83225Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledStarSolid);
const StarSolid = /*#__PURE__*/memo(ForwardRef);
export default StarSolid;