UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.49 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 StyledChartPieSolid = ({ 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: "M12.3337 1.69083C12.3337 1.31479 12.5879 1 13.0004 1C18.1545 1 22.3337 5.17917 22.3337 10.3333C22.3337 10.7083 22.017 11 21.642 11H12.3337V1.69083ZM1.00037 12.3333C1.00037 7.27917 4.75453 3.0975 9.58787 2.42708C10.0087 2.37458 10.3337 2.68167 10.3337 3.06708V13L16.8545 19.5208C17.1337 19.8 17.1129 20.2583 16.792 20.4875C15.1587 21.65 13.1587 22.3333 11.0004 22.3333C5.47953 22.3333 1.00037 17.8583 1.00037 12.3333ZM22.9337 13C23.317 13 23.6254 13.325 23.5754 13.7083C23.2545 16.0375 22.1295 18.1083 20.4962 19.6375C20.2462 19.8375 19.8545 19.8542 19.6129 19.6125L13.0004 13H22.9337Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledChartPieSolid); const ChartPieSolid = /*#__PURE__*/memo(ForwardRef); export default ChartPieSolid;