UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.42 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 StyledArrowTurnDownRightSolid = ({ 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: "M15.4406 20.5594C15.1453 20.2688 15 19.8844 15 19.5C15 19.1156 15.1453 18.7312 15.4406 18.4406L18.8766 15H3.75C1.68141 15 0 13.3172 0 11.25V3C0 2.17172 0.670781 1.5 1.5 1.5C2.32922 1.5 3 2.17172 3 3V11.25C3 11.6625 3.33703 12 3.75 12H18.8766L15.4406 8.55938C14.8547 7.97344 14.8547 7.02656 15.4406 6.44062C16.0266 5.85469 16.9734 5.85469 17.5594 6.44062L23.5594 12.4406C24.1453 13.0266 24.1453 13.9734 23.5594 14.5594L17.5594 20.5594C16.9734 21.1453 16.0266 21.1453 15.4406 20.5594Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTurnDownRightSolid); const ArrowTurnDownRightSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowTurnDownRightSolid;