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 StyledArrowUpLongSolid = ({ 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: "M19.5595 8.16034C18.9732 8.7467 18.024 8.74576 17.4386 8.16034L13.9995 4.72002L13.9995 22.0997C13.9995 22.9289 13.3287 23.5996 12.4996 23.5996C11.6705 23.5996 10.9997 22.9289 10.9997 22.0997L10.9997 4.72002L7.56034 8.15941C6.97446 8.74529 6.02532 8.74529 5.43944 8.15941C4.85355 7.57352 4.85355 6.62439 5.43944 6.0385L11.4389 0.039027C12.0248 -0.546859 12.9739 -0.546859 13.5598 0.0390268L19.5593 6.0385C20.1454 6.62766 20.1454 7.57446 19.5595 8.16034Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpLongSolid); const ArrowUpLongSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowUpLongSolid;