@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.17 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 StyledCaretUpRegular = ({
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: "M3.59859 19.5987H20.3986C23.5958 19.5987 25.2083 15.7167 22.9396 13.4479L14.5471 5.04794C13.1408 3.65069 10.8533 3.65069 9.44709 5.04794L1.05459 13.4479C-1.2014 15.7137 0.401495 19.5987 3.59859 19.5987ZM11.9333 7.53119L20.3333 15.9312H3.59859L11.9333 7.53119Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretUpRegular);
const CaretUpRegular = /*#__PURE__*/memo(ForwardRef);
export default CaretUpRegular;