UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.41 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 StyledArrowDownLongRegular = ({ 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: "M5.32957 15.3015C5.54935 15.0812 5.8362 14.9734 6.12493 14.9734C6.41365 14.9734 6.70051 15.0832 6.92033 15.3029L11.3745 19.7589V0.724519C11.3745 0.103475 11.8807 -0.400391 12.4994 -0.400391C13.1181 -0.400391 13.6243 0.103475 13.6243 0.724519V19.7589L18.0785 15.3048C18.5179 14.8653 19.2297 14.8653 19.6693 15.3048C20.109 15.7442 20.1087 16.4559 19.6693 16.8956L13.2948 23.27C12.8554 23.7095 12.1437 23.7095 11.704 23.27L5.32952 16.8956C4.89015 16.4545 4.89015 15.7421 5.32957 15.3015Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownLongRegular); const ArrowDownLongRegular = /*#__PURE__*/memo(ForwardRef); export default ArrowDownLongRegular;