@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.29 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 StyledArrowDownLeftSolid = ({
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: "M23.295 3.69274L8.1975 18.7977H19.2C20.5253 18.7977 21.6 19.871 21.6 21.1977C21.6 22.5245 20.5253 23.5977 19.2 23.5977H2.4C1.07475 23.5977 0 22.5245 0 21.1977V4.39774C0 3.07099 1.07475 1.99774 2.4 1.99774C3.72525 1.99774 4.8 3.07099 4.8 4.39774V15.4077L19.905 0.302735C20.8425 -0.634766 22.3612 -0.634766 23.2987 0.302735C24.2362 1.24023 24.2325 2.75524 23.295 3.69274Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownLeftSolid);
const ArrowDownLeftSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowDownLeftSolid;