@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.15 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 StyledCaretDownRegular = ({
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: "M20.3589 4H3.6107C0.409303 4 -1.2143 7.88778 1.0664 10.1505L9.46978 18.5614C10.8688 19.9702 13.1593 19.9702 14.5674 18.5614L22.9783 10.1505C25.1651 7.89004 23.6331 4 20.3589 4ZM11.948 16.0156L3.60169 7.60467H20.3589L11.948 16.0156Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretDownRegular);
const CaretDownRegular = /*#__PURE__*/memo(ForwardRef);
export default CaretDownRegular;