UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.45 kB
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 StyledArrowTurnDownLeftSolid = ({ 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.44063 20.5594L0.440628 14.5594C-0.145309 13.9734 -0.145309 13.0242 0.440628 12.4383L6.44063 6.48047C7.02657 5.89453 7.97579 5.89453 8.56172 6.48047C9.14766 7.06641 9.14766 8.01562 8.56172 8.60156L5.12344 12H20.25C20.6625 12 21 11.6625 21 11.25V3C21 2.17172 21.6708 1.5 22.5 1.5C23.3292 1.5 24 2.17172 24 3V11.25C24 13.3177 22.3181 15 20.25 15H5.12344L8.56313 18.4392C8.85469 18.7312 9.00001 19.1156 9.00001 19.4578C9.00001 19.8 8.85352 20.2256 8.56055 20.5181C7.97344 21.1453 7.02657 21.1453 6.44063 20.5594Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTurnDownLeftSolid); const ArrowTurnDownLeftSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowTurnDownLeftSolid;