@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.26 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 StyledArrowDown19Solid = ({
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 9C15 9.82922 15.6708 10.4578 16.5 10.4578L19.5 10.5C20.3292 10.5 21 9.82922 21 9C21 8.17078 20.3292 7.5 19.5 7.5V2.99906C19.5 2.47453 19.2261 1.98984 18.7791 1.7175C18.3323 1.44652 17.7755 1.42744 17.31 1.66772L15.81 2.44537C15.0745 2.82623 14.7877 3.73162 15.1683 4.46709C15.4359 4.98281 15.9563 5.27812 16.5 5.27812V7.5C15.6703 7.5 15 8.17031 15 9ZM18.375 11.9813C16.0969 11.9813 14.25 13.8281 14.25 16.1063C14.25 17.8144 15.2883 19.2797 16.7677 19.9064L16.4076 20.2816C15.9051 20.8047 15.9229 21.6353 16.4457 22.136C16.7016 22.3781 17.0297 22.5 17.3531 22.5C17.6974 22.5 18.0431 22.3652 18.2995 22.0957C21.5625 18.6959 22.4995 18.093 22.4995 16.1051C22.5 13.7859 20.6531 11.9813 18.375 11.9813ZM18.375 17.2313C17.7549 17.2313 17.25 16.7264 17.25 16.1063C17.25 15.4861 17.7549 14.9813 18.375 14.9813C18.9952 14.9813 19.5 15.4861 19.5 16.1063C19.5 16.7264 18.9938 17.2313 18.375 17.2313ZM10.125 15.0141C9.71851 15.0141 9.31407 15.1781 9.01829 15.5006L7.50001 17.1609V3.00141C7.50001 2.17172 6.82969 1.5 6 1.5C5.17032 1.5 4.5 2.17172 4.5 3.00141V17.1577L2.98125 15.5016C2.4211 14.8917 1.47188 14.8495 0.861563 15.4093C0.250782 15.9694 0.210001 16.9196 0.769267 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.0141Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDown19Solid);
const ArrowDown19Solid = /*#__PURE__*/memo(ForwardRef);
export default ArrowDown19Solid;