UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.82 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 StyledFolderArrowUpRegular = ({ 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: "M12.7547 8.95312C12.3152 8.51367 11.6034 8.51367 11.1637 8.95312L7.41375 12.7031C6.9743 13.1426 6.9743 13.8544 7.41375 14.2941C7.8532 14.7338 8.565 14.7335 9.00469 14.2941L10.875 12.4641V17.25C10.875 17.8711 11.3789 18.375 12 18.375C12.6211 18.375 13.125 17.8711 13.125 17.25V12.4641L14.9545 14.2936C15.1734 14.5172 15.4594 14.625 15.75 14.625C16.0406 14.625 16.3256 14.5151 16.5455 14.2954C16.9849 13.856 16.9849 13.1442 16.5455 12.7045L12.7547 8.95312ZM21 4.5H12.9328L10.6266 2.37891C10.0641 1.81594 9.30469 1.5 8.50781 1.5H3C1.34297 1.5 0 2.84344 0 4.5V19.5C0 21.1566 1.34297 22.5 3 22.5H21C22.657 22.5 24 21.1566 24 19.5V7.5C24 5.84531 22.6547 4.5 21 4.5ZM21.75 19.5C21.75 19.9136 21.4135 20.25 21 20.25H3C2.58647 20.25 2.25 19.9136 2.25 19.5V4.5C2.25 4.08637 2.58647 3.75 3 3.75H8.50781C8.70811 3.75 8.89655 3.828 9.03797 3.96975L12 6.75H21C21.4135 6.75 21.75 7.08637 21.75 7.5V19.5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderArrowUpRegular); const FolderArrowUpRegular = /*#__PURE__*/memo(ForwardRef); export default FolderArrowUpRegular;