UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.94 kB
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 StyledStarRegular = ({ 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: "M11.9983 0C12.4166 0 12.7985 0.238693 12.9804 0.614691L16.0993 7.03803L23.0691 8.0701C23.4783 8.1292 23.8148 8.41563 23.9466 8.80664C24.0739 9.20218 23.9693 9.6341 23.6784 9.92054L18.6226 14.9308L19.8183 22.0007C19.8865 22.4099 19.7183 22.8281 19.3773 23.0691C19.0409 23.3101 18.5544 23.3419 18.2271 23.1464L11.9983 19.8183L5.73319 23.1464C5.40584 23.3419 4.96028 23.3101 4.61929 23.0691C4.28285 22.8281 4.11463 22.4099 4.14191 22.0007L5.37402 14.9308L0.323276 9.92054C0.0295695 9.6341 -0.074546 9.20218 0.0545755 8.80664C0.183242 8.41563 0.522868 8.1292 0.931602 8.0701L7.89734 7.03803L11.0163 0.614691C11.2027 0.238648 11.58 0 11.9983 0ZM11.9983 3.58949L9.61139 8.51111C9.45226 8.83391 9.14309 9.06124 8.78846 9.1158L3.40901 9.9069L7.31539 13.776C7.56545 14.0261 7.67911 14.3852 7.62001 14.7353L6.70161 20.173L11.4846 17.6178C11.8074 17.4451 12.1938 17.4451 12.5121 17.6178L17.295 20.173L16.3766 14.7353C16.3175 14.3852 16.4357 14.0261 16.6858 13.776L20.5913 9.9069L15.2127 9.1158C14.8535 9.06124 14.5444 8.83391 14.3898 8.51111L11.9983 3.58949Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledStarRegular); const StarRegular = /*#__PURE__*/memo(ForwardRef); export default StarRegular;