@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.47 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 StyledArrowTrendDownRegular = ({
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.6667 16.3335H20.5875L13.3333 9.07938L8.67083 13.671C8.31667 14.096 7.68333 14.096 7.29167 13.671L0.292875 6.67104C-0.097625 6.31688 -0.097625 5.68354 0.292875 5.29188C0.683333 4.90271 1.31667 4.90271 1.70708 5.29188L8 11.5877L12.625 6.95854C13.0167 6.57104 13.65 6.57104 14.0042 6.95854L22 14.921V10.0002C22 9.44604 22.4458 9.00021 23 9.00021C23.5542 9.00021 24 9.44604 24 10.0002V17.3335C24 17.8877 23.5542 18.3335 23 18.3335H15.6667C15.1125 18.3335 14.6667 17.8877 14.6667 17.3335C14.6667 16.7794 15.1125 16.3335 15.6667 16.3335Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTrendDownRegular);
const ArrowTrendDownRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowTrendDownRegular;