UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.2 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 StyledCloudPlusRegular = ({ 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.1 16.9007V14.5007H8.7C8.20125 14.5007 7.8 14.0995 7.8 13.6007C7.8 13.102 8.20125 12.7007 8.7 12.7007H11.1V10.3007C11.1 9.80198 11.5013 9.40073 12 9.40073C12.4988 9.40073 12.9 9.80198 12.9 10.3007V12.7007H15.3C15.7988 12.7007 16.2 13.102 16.2 13.6007C16.2 14.0995 15.7988 14.5007 15.3 14.5007H12.9V16.9007C12.9 17.3995 12.4988 17.8007 12 17.8007C11.5013 17.8007 11.1 17.3995 11.1 16.9007ZM5.4 20.8007C2.41763 20.8007 0 18.382 0 15.4007C0 13.0495 1.50263 11.017 3.6 10.3082V10.3007C3.6 6.82073 6.42 4.00073 9.9 4.00073C11.8088 4.00073 13.515 4.84823 14.6737 6.18736C15.2325 5.93873 15.8475 5.80073 16.5 5.80073C18.9862 5.80073 21 7.81448 21 10.3007C21 10.5482 20.9813 10.7882 20.9438 11.0245C22.7438 11.812 24 13.612 24 15.7007C24 18.4157 21.8775 20.6357 19.2 20.7932V20.8007H5.4ZM9.9 5.80073C7.41375 5.80073 5.4 7.81448 5.4 10.3007V11.5795L4.16625 12.007C2.799 12.502 1.8 13.837 1.8 15.4007C1.8 17.3882 3.41175 19.0007 5.4 19.0007H18.9975L19.095 18.9932C20.8275 18.8957 22.2 17.4557 22.2 15.7007C22.2 14.3507 21.39 13.1845 20.22 12.6745L18.9413 12.1157L19.1663 10.7395C19.1888 10.597 19.2 10.4507 19.2 10.3007C19.2 8.80823 17.9925 7.60073 16.5 7.60073C16.1063 7.60073 15.735 7.68323 15.405 7.83323L14.1825 8.37698L13.3088 7.36448C12.48 6.40373 11.2613 5.80073 9.86625 5.80073H9.9Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledCloudPlusRegular); const CloudPlusRegular = /*#__PURE__*/memo(ForwardRef); export default CloudPlusRegular;