@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.8 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 StyledMemoCircleInfoRegular = ({
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: "M13.333 3H2.63c-.33 0-.667.298-.667.667v16c0 .366.336.666.667.666h9.225a7.437 7.437 0 0 0 1.884 1.971c-.13.017-.267.03-.405.03H2.667A2.668 2.668 0 0 1 0 19.666v-16A2.666 2.666 0 0 1 2.667 1h10.666A2.668 2.668 0 0 1 16 3.667v5.608a7.26 7.26 0 0 0-2 .912V3.63c0-.33-.3-.667-.667-.667V3Zm-9.37 4.333c0-.554.483-1 1-1h6c.591 0 1 .446 1 1s-.409 1-1 1h-6c-.517 0-1-.446-1-1Zm7 3c.591 0 1 .446 1 1s-.409 1-1 1h-6c-.517 0-1-.446-1-1s.483-1 1-1h6Zm-4 4c.591 0 1 .446 1 1s-.409 1-1 1h-2c-.517 0-1-.445-1-1 0-.554.483-1 1-1h2Zm5 2c0-3.312 2.725-6 6.037-6 3.313 0 6 2.688 6 6 0 3.313-2.688 6-6 6-3.313 0-6.037-2.687-6.037-6Zm6.037-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(StyledMemoCircleInfoRegular);
const MemoCircleInfoRegular = /*#__PURE__*/memo(ForwardRef);
export default MemoCircleInfoRegular;