UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.71 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 StyledMemoCircleInfoSolid = ({ 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: "M0 3.667A2.666 2.666 0 0 1 2.667 1h10.666A2.668 2.668 0 0 1 16 3.667v5.608a7.335 7.335 0 0 0-5.333 7.058 7.333 7.333 0 0 0 3.07 5.971c-.129.017-.266.03-.404.03H2.667A2.668 2.668 0 0 1 0 19.666v-16Zm3.333 4h9.334c.366 0 .666-.3.666-.667 0-.367-.3-.667-.666-.667H3.333a.668.668 0 0 0 0 1.334Zm0 2.666a.668.668 0 0 0 0 1.334H10c.367 0 .667-.3.667-.667 0-.367-.3-.667-.667-.667H3.333Zm0 4a.668.668 0 0 0 0 1.334h4c.367 0 .667-.3.667-.667 0-.367-.3-.667-.667-.667h-4Zm8.667 2c0-3.312 2.688-6 6-6 3.313 0 6 2.688 6 6a6 6 0 0 1-12 0Zm6-2c.554 0 1-.446 1-1s-.446-1-1-1-1 .446-1 1 .446 1 1 1ZM17.333 17v2c-.366 0-.666.3-.666.667 0 .366.3.666.666.666h1.334c.366 0 .666-.3.666-.666 0-.367-.3-.667-.666-.667v-2.667c0-.366-.3-.666-.667-.666h-.667c-.366 0-.666.3-.666.666 0 .367.3.667.666.667Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledMemoCircleInfoSolid); const MemoCircleInfoSolid = /*#__PURE__*/memo(ForwardRef); export default MemoCircleInfoSolid;