UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.37 kB
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 StyledArrowUpSolid = ({ 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.1069 11.5203C21.7741 11.8584 21.3339 12.0248 20.8938 12.0248C20.4536 12.0248 20.0146 11.8571 19.6796 11.5216L14.0232 5.86816V22.3307C14.0232 23.2802 13.254 24 12.3539 24C11.4537 24 10.5879 23.2807 10.5879 22.3307V5.86816L4.93207 11.5203C4.26111 12.1912 3.17417 12.1912 2.50322 11.5203C1.83226 10.8493 1.83226 9.76237 2.50322 9.09142L11.0914 0.503215C11.7624 -0.167738 12.8493 -0.167738 13.5203 0.503215L22.1085 9.09142C22.7778 9.76505 22.7778 10.8493 22.1069 11.5203Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpSolid); const ArrowUpSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowUpSolid;