@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.27 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 StyledChevronDownSolid = ({
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: "M11.9997 19C11.4879 19 10.9759 18.8047 10.5859 18.4141L0.585937 8.41406C-0.195312 7.63281 -0.195312 6.36719 0.585937 5.58594C1.36719 4.80469 2.63281 4.80469 3.41406 5.58594L11.9997 14.175L20.5872 5.5875C21.3684 4.80625 22.6341 4.80625 23.4153 5.5875C24.1966 6.36875 24.1966 7.63437 23.4153 8.41562L13.4153 18.4156C13.0247 18.8062 12.5122 19 11.9997 19Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChevronDownSolid);
const ChevronDownSolid = /*#__PURE__*/memo(ForwardRef);
export default ChevronDownSolid;