@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.28 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 StyledChevronUpSolid = ({
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: "M22.0016 18.9953C21.4898 18.9953 20.9778 18.8 20.5878 18.4094L12.0016 9.82656L3.41406 18.4141C2.63281 19.1953 1.36719 19.1953 0.585937 18.4141C-0.195312 17.6328 -0.195312 16.3672 0.585937 15.5859L10.5859 5.58594C11.3672 4.80469 12.6328 4.80469 13.4141 5.58594L23.4141 15.5859C24.1953 16.3672 24.1953 17.6328 23.4141 18.4141C23.0266 18.8016 22.5141 18.9953 22.0016 18.9953Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChevronUpSolid);
const ChevronUpSolid = /*#__PURE__*/memo(ForwardRef);
export default ChevronUpSolid;