@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.3 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 StyledArrowDownLeftRegular = ({
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.4075 2.60195L6.1455 19.9944H19.8C20.7938 19.9944 21.6 20.8007 21.6 21.7944C21.6 22.7882 20.7975 23.5944 19.8 23.5944H1.8C0.80625 23.5944 0 22.7919 0 21.7944V3.79445C0 2.80445 0.80625 1.99445 1.8 1.99445C2.79375 1.99445 3.6 2.80445 3.6 3.79445V17.4519L20.925 0.126953C21.6281 -0.576172 22.767 -0.576172 23.4705 0.126953C24.174 0.830078 24.1725 1.96445 23.4075 2.60195Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownLeftRegular);
const ArrowDownLeftRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowDownLeftRegular;