@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.36 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 StyledArrowDownLongSolid = ({
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.43938 15.0389C6.02574 14.4525 6.97487 14.4535 7.56029 15.0389L10.9994 18.4792V1.09948C10.9994 0.270332 11.6702 -0.400391 12.4993 -0.400391C13.3285 -0.400391 13.9992 0.270332 13.9992 1.09948V18.4792L17.4386 15.0398C18.0244 14.4539 18.9736 14.4539 19.5595 15.0398C20.1453 15.6257 20.1453 16.5748 19.5595 17.1607L13.56 23.1602C12.9741 23.7461 12.025 23.7461 11.4391 23.1602L5.43962 17.1607C4.8535 16.5716 4.8535 15.6248 5.43938 15.0389Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownLongSolid);
const ArrowDownLongSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowDownLongSolid;