UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.77 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 StyledFolderPlusRegular = ({ 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 4.5H12.9328L10.6266 2.37891C10.0641 1.81594 9.30469 1.5 8.50781 1.5H3C1.34344 1.5 0 2.84344 0 4.5V19.5C0 21.1566 1.34344 22.5 3 22.5H21C22.6566 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.4134 20.25 21 20.25H3C2.58656 20.25 2.25 19.9136 2.25 19.5V4.5C2.25 4.08637 2.58656 3.75 3 3.75H8.50781C8.70811 3.75 8.89636 3.828 9.03797 3.96975L12 6.75H21C21.4134 6.75 21.75 7.08637 21.75 7.5V19.5ZM15.75 12.375H13.125V9.70781C13.0828 9.12656 12.6234 8.625 12 8.625C11.3766 8.625 10.875 9.12656 10.875 9.70781V12.375H8.20781C7.62656 12.375 7.125 12.8766 7.125 13.5C7.125 14.1216 7.62797 14.5828 8.20781 14.5828H10.8328V17.2078C10.875 17.8734 11.3766 18.375 12 18.375C12.6216 18.375 13.0828 17.8716 13.0828 17.2922V14.5828H15.7078C16.3734 14.5828 16.875 14.1234 16.875 13.5C16.875 12.8766 16.3734 12.375 15.75 12.375Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderPlusRegular); const FolderPlusRegular = /*#__PURE__*/memo(ForwardRef); export default FolderPlusRegular;