@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.25 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 StyledArrowDown91Solid = ({
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: "M10.125 15.0141C9.71851 15.0141 9.31407 15.1781 9.01829 15.5006L7.5 17.1609V3.00141C7.5 2.17172 6.82969 1.5 6 1.5C5.17032 1.5 4.5 2.17172 4.5 3.00141V17.1577L2.98125 15.5016C2.42109 14.8917 1.47188 14.8495 0.861563 15.4093C0.250781 15.9694 0.21 16.9196 0.769266 17.5313L4.85208 22.0355C5.42021 22.6571 6.49552 22.6571 7.06411 22.0355L11.1469 17.5313C11.7066 16.9196 11.6654 15.9699 11.0546 15.4093C10.8516 15.1453 10.4859 15.0141 10.125 15.0141ZM16.7672 9.42656L16.4071 9.80175C15.9046 10.3249 15.9224 11.1555 16.4452 11.6561C16.6986 11.9008 17.0269 12.0223 17.3536 12.0223C17.6979 12.0223 18.0436 11.8875 18.3 11.618C21.563 8.21817 22.5 7.61536 22.5 5.62739C22.5 3.34927 20.6532 1.50239 18.375 1.50239C16.0969 1.50239 14.25 3.34927 14.25 5.62739C14.2078 7.33125 15.2859 8.79844 16.7672 9.42656ZM18.375 4.5C18.9952 4.5 19.5 5.00484 19.5 5.625C19.5 6.24516 18.9938 6.75 18.375 6.75C17.7563 6.75 17.25 6.24375 17.25 5.625C17.25 5.00625 17.7563 4.5 18.375 4.5ZM19.5 19.5187V15.0178C19.5 14.4933 19.2261 14.0086 18.7791 13.7363C18.3323 13.4653 17.7755 13.4462 17.31 13.6865L15.81 14.4641C15.0745 14.845 14.7877 15.7504 15.1683 16.4858C15.4359 17.0062 15.9563 17.2969 16.5 17.2969V19.5192C15.6708 19.5192 15 20.19 15 21.0192C15 21.8484 15.6708 22.5192 16.5 22.5192H19.5C20.3292 22.5192 21 21.8484 21 21.0192C21 20.19 20.3297 19.5187 19.5 19.5187Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDown91Solid);
const ArrowDown91Solid = /*#__PURE__*/memo(ForwardRef);
export default ArrowDown91Solid;