UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.55 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 StyledFolderArrowUpSolid = ({ 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: "M21.75 4.5H12.75L9.75 1.5H2.25C1.00781 1.5 0 2.50781 0 3.75V20.25C0 21.4922 1.00781 22.5 2.25 22.5H21.75C22.9922 22.5 24 21.4922 24 20.25V6.75C24 5.50781 22.9922 4.5 21.75 4.5ZM16.5047 14.2547C16.3266 14.5172 16.0406 14.625 15.75 14.625C15.4594 14.625 15.1744 14.5151 14.9545 14.2954L13.125 12.4641V17.625C13.125 18.2461 12.6211 18.75 12 18.75C11.3789 18.75 10.875 18.2461 10.875 17.625V12.4641L9.00469 14.2547C8.56524 14.6941 7.85344 14.6941 7.41375 14.2547C6.97406 13.8152 6.9743 13.1034 7.41375 12.6637L11.1637 8.91375C11.6032 8.4743 12.315 8.4743 12.7547 8.91375L16.5047 12.6637C16.9828 13.1438 16.9828 13.8563 16.5047 14.2547Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderArrowUpSolid); const FolderArrowUpSolid = /*#__PURE__*/memo(ForwardRef); export default FolderArrowUpSolid;