@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.48 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 StyledArrowTurnUpSolid = ({
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.0586 8.56013C19.768 8.85543 19.3836 9.00073 18.9571 9.00073C18.5305 9.00073 18.1893 8.85425 17.8968 8.5613L14.4995 5.12436V20.2502C14.4995 22.3187 12.8172 24 10.7497 24H5.49993C4.67169 24 4 23.3293 4 22.5001C4 21.6709 4.67169 21.0001 5.49993 21.0001H10.7497C11.1621 21.0001 11.4996 20.6627 11.4996 20.2502V5.12436L8.06011 8.56013C7.4742 9.14604 6.52503 9.14604 5.93912 8.56013C5.35321 7.97422 5.35321 7.02505 5.93912 6.43914L11.8966 0.439432C12.4825 -0.146477 13.4317 -0.146477 14.0176 0.439432L20.0173 6.43914C20.6445 7.02739 20.6445 7.97422 20.0586 8.56013Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTurnUpSolid);
const ArrowTurnUpSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowTurnUpSolid;