@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.67 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 StyledCloudArrowDownSolid = ({
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.8C2.41763 20.8 0 18.3812 0 15.4C0 13.045 1.50637 11.0425 3.6075 10.3038C3.60263 10.2025 3.6 10.1012 3.6 10C3.6 6.685 6.285 4 9.6 4C11.8238 4 13.7625 5.20937 14.8013 7.0075C15.3713 6.59125 16.0613 6.4 16.8 6.4C18.7875 6.4 20.4 7.97875 20.4 10C20.4 10.4575 20.3137 10.8925 20.16 11.2975C22.35 11.74 24 13.6787 24 16C24 18.6512 21.8513 20.8 19.2 20.8H5.4ZM11.3625 17.5037C11.715 17.8862 12.285 17.8862 12.6038 17.5037L15.6038 14.5037C15.9863 14.185 15.9863 13.615 15.6038 13.2625C15.285 12.9137 14.715 12.9137 14.3625 13.2625L12.9 14.7287V9.7C12.9 9.20125 12.4988 8.8 12 8.8C11.5013 8.8 11.1 9.20125 11.1 9.7V14.7287L9.60375 13.2625C9.285 12.9137 8.715 12.9137 8.3625 13.2625C8.01375 13.615 8.01375 14.185 8.3625 14.5037L11.3625 17.5037Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCloudArrowDownSolid);
const CloudArrowDownSolid = /*#__PURE__*/memo(ForwardRef);
export default CloudArrowDownSolid;