@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.23 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 StyledCaretDownSolid = ({
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: "M23.344 9.10354L13.7917 18.7236C13.2581 19.197 12.6418 19.43 12.0255 19.43C11.4092 19.43 10.7944 19.1952 10.3247 18.7254L0.772332 9.10542C0.017341 8.41962 -0.188618 7.38246 0.183707 6.4881C0.556032 5.59374 1.43371 5 2.40548 5H21.5779C22.5504 5 23.4282 5.58479 23.801 6.48434C24.1738 7.38389 24.0355 8.41962 23.344 9.10354Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretDownSolid);
const CaretDownSolid = /*#__PURE__*/memo(ForwardRef);
export default CaretDownSolid;