@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.72 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 StyledCloudPlusSolid = ({
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: "M5.4 20.8007C2.41763 20.8007 0 18.382 0 15.4007C0 13.0457 1.50637 11.0432 3.6075 10.3045C3.60263 10.2032 3.6 10.102 3.6 10.0007C3.6 6.68573 6.285 4.00073 9.6 4.00073C11.8238 4.00073 13.7625 5.21011 14.8013 7.00823C15.3713 6.59198 16.0613 6.40073 16.8 6.40073C18.7875 6.40073 20.4 7.97948 20.4 10.0007C20.4 10.4582 20.3137 10.8932 20.16 11.2982C22.35 11.7407 24 13.6795 24 16.0007C24 18.652 21.8513 20.8007 19.2 20.8007H5.4ZM12 17.8007C12.4988 17.8007 12.9 17.3995 12.9 16.9007V14.5007H15.3C15.7988 14.5007 16.2 14.0995 16.2 13.6007C16.2 13.102 15.7988 12.7007 15.3 12.7007H12.9V10.3007C12.9 9.80198 12.4988 9.40073 12 9.40073C11.5013 9.40073 11.1 9.80198 11.1 10.3007V12.7007H8.7C8.20125 12.7007 7.8 13.102 7.8 13.6007C7.8 14.0995 8.20125 14.5007 8.7 14.5007H11.1V16.9007C11.1 17.3995 11.5013 17.8007 12 17.8007Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCloudPlusSolid);
const CloudPlusSolid = /*#__PURE__*/memo(ForwardRef);
export default CloudPlusSolid;