@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.45 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 StyledArrowTrendUpSolid = ({
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: "M16 7.66667C15.2625 7.66667 14.6667 7.07083 14.6667 6.33333C14.6667 5.59583 15.2625 5 16 5H22.6667C23.4042 5 24 5.59583 24 6.33333V13C24 13.7375 23.4042 14.3333 22.6667 14.3333C21.9292 14.3333 21.3333 13.7375 21.3333 13V9.55417L14.275 16.6083C13.7542 17.1292 12.9125 17.1292 12.3917 16.6083L7.9625 12.2208L2.27625 17.9417C1.75542 18.4625 0.91125 18.4625 0.3905 17.9417C-0.130167 17.4208 -0.130167 16.5792 0.3905 16.0583L7.05833 9.39167C7.57917 8.87083 8.42083 8.87083 8.94167 9.39167L13.3333 13.7792L19.4458 7.62917L16 7.66667Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTrendUpSolid);
const ArrowTrendUpSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowTrendUpSolid;