@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.38 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 StyledArrowDownSolid = ({
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: "M22.108 14.5063L13.5193 23.095C13.1865 23.4332 12.7463 23.5996 12.3061 23.5996C11.866 23.5996 11.4269 23.4319 11.0919 23.0964L2.50324 14.5077C1.83225 13.8367 1.83225 12.7497 2.50324 12.0787C3.17423 11.4077 4.26124 11.4077 4.93223 12.0787L10.5884 17.7378V1.26903C10.5884 0.319448 11.3576 -0.400391 12.2578 -0.400391C13.158 -0.400391 14.0239 0.319448 14.0239 1.26903V17.7378L19.6817 12.08C20.3526 11.409 21.4396 11.409 22.1106 12.08C22.7816 12.751 22.7789 13.8354 22.108 14.5063Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownSolid);
const ArrowDownSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowDownSolid;