@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledArrowTurnDownLeftRegular = ({
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: "M6.32812 20.2547L0.328125 14.2547C0.109875 14.0766 0 13.7906 0 13.5C0 13.2094 0.109875 12.9244 0.329578 12.7045L6.32958 6.70453C6.76903 6.26508 7.48083 6.26508 7.92052 6.70453C8.3602 7.14398 8.35997 7.85578 7.92052 8.29547L3.84094 12.375H21.75V2.625C21.75 2.00391 22.2563 1.5 22.875 1.5C23.4937 1.5 24 2.00391 24 2.625V13.5C24 14.1211 23.4961 14.625 22.875 14.625H3.84094L7.92047 18.7045C8.35992 19.144 8.35992 19.8558 7.92047 20.2955C7.48102 20.7352 6.76875 20.7328 6.32812 20.2547Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTurnDownLeftRegular);
const ArrowTurnDownLeftRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowTurnDownLeftRegular;