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 StyledFolderArrowDownSolid = ({ 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.5ZM7.45312 12.7031C7.67344 12.4828 7.95937 12.375 8.25 12.375C8.54062 12.375 8.82563 12.4849 9.04547 12.7046L10.875 14.5359V9.375C10.875 8.75625 11.3813 8.25 12 8.25C12.6187 8.25 13.125 8.75391 13.125 9.375V14.5359L14.9545 12.7064C15.394 12.267 16.1058 12.267 16.5455 12.7064C16.9852 13.1459 16.9849 13.8577 16.5455 14.2973L12.7955 18.0473C12.356 18.4868 11.6442 18.4868 11.2045 18.0473L7.45453 14.2973C7.01719 13.8563 7.01719 13.1438 7.45312 12.7031Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderArrowDownSolid); const FolderArrowDownSolid = /*#__PURE__*/memo(ForwardRef); export default FolderArrowDownSolid;