UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.93 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 StyledBagelSolid = ({ 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: "M7.8 5.6C3.49238 5.6 0 9.09125 0 13.4C0 17.7088 3.49238 21.2 7.8 21.2C12.1076 21.2 15.6 17.7088 15.6 13.4C15.6 9.09125 12.1088 5.6 7.8 5.6ZM3 12.8C2.6685 12.8 2.4 12.53 2.4 12.2C2.4 11.87 2.6685 11.6 3 11.6C3.3315 11.6 3.6 11.87 3.6 12.2C3.6 12.53 3.3315 12.8 3 12.8ZM4.2 17.6C3.87 17.6 3.6 17.33 3.6 17C3.6 16.67 3.87 16.4 4.2 16.4C4.53 16.4 4.8 16.67 4.8 17C4.8 17.33 4.53 17.6 4.2 17.6ZM5.4 10.4C5.07 10.4 4.8 10.13 4.8 9.8C4.8 9.47 5.07 9.2 5.4 9.2C5.73 9.2 6 9.47 6 9.8C6 10.13 5.73 10.4 5.4 10.4ZM9 18.8C8.67 18.8 8.4 18.53 8.4 18.2C8.4 17.87 8.67 17.6 9 17.6C9.33 17.6 9.6 17.87 9.6 18.2C9.6 18.53 9.33 18.8 9 18.8ZM7.8 15.2C6.80625 15.2 6 14.3938 6 13.4C6 12.4062 6.80625 11.6 7.8 11.6C8.79375 11.6 9.6 12.4062 9.6 13.4C9.6 14.3938 8.79375 15.2 7.8 15.2ZM11.4 17.6C11.07 17.6 10.8 17.33 10.8 17C10.8 16.67 11.07 16.4 11.4 16.4C11.73 16.4 12 16.6686 12 17C12 17.33 11.73 17.6 11.4 17.6ZM11.4 11.6C11.07 11.6 10.8 11.33 10.8 11C10.8 10.67 11.07 10.4 11.4 10.4C11.73 10.4 12 10.67 12 11C12 11.33 11.73 11.6 11.4 11.6ZM16.2 2C13.8195 2 11.6925 3.06875 10.26 4.74988C10.9046 4.93363 11.523 5.18 12.1001 5.49538C12.2089 5.28005 12.3318 5.08063 12.5228 4.94712C13.026 4.59549 13.8218 4.75693 14.4266 4.56838C15.0113 4.38613 15.555 3.8 16.1663 3.8C16.7775 3.8 17.3543 4.38613 17.9381 4.56875C18.5423 4.75771 19.3384 4.5957 19.8412 4.9475C20.3494 5.30274 20.4334 6.0815 20.8035 6.56863C21.1701 7.052 21.9184 7.36663 22.1164 7.94563C22.3388 8.50625 21.9338 9.18125 21.9338 9.8C21.9338 10.4191 22.3387 11.0941 22.1497 11.654C21.9518 12.2341 21.2036 12.5488 20.8369 13.031C20.4667 13.5189 20.3827 14.2978 19.8746 14.6529C19.3717 15.0038 18.5745 14.8424 17.9715 15.0316C17.4746 15.1867 17.0059 15.6129 16.4805 15.7434C16.3068 16.3854 16.0706 17.0011 15.7665 17.5783C15.9113 17.585 16.0538 17.6 16.2 17.6C20.5088 17.6 24 14.1076 24 9.8C24 5.49238 20.5088 2 16.2 2ZM18.5663 9.8C18.5663 8.47625 17.4904 7.4 16.1663 7.4C15.6649 7.4 15.2006 7.55473 14.8155 7.8185C15.7871 9.04325 16.4415 10.5256 16.6688 12.146C17.7863 11.915 18.5663 10.9513 18.5663 9.8Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBagelSolid); const BagelSolid = /*#__PURE__*/memo(ForwardRef); export default BagelSolid;