UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.56 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 StyledFileLinesSolid = ({ 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: "M15 0V6H21L15 0ZM13.5 6V0H5.25C4.00734 0 3 1.00734 3 2.25V21.75C3 22.9922 4.00734 24 5.25 24H18.75C19.9927 24 21 22.9927 21 21.75V7.5H15.0422C14.1703 7.5 13.5 6.82969 13.5 6ZM15.75 19.5H8.25C7.8375 19.5 7.5 19.1625 7.5 18.75C7.5 18.3375 7.8375 18 8.25 18H15.75C16.1642 18 16.5 18.3357 16.5 18.75C16.5 19.1625 16.1625 19.5 15.75 19.5ZM15.75 16.5H8.25C7.8375 16.5 7.5 16.1625 7.5 15.75C7.5 15.3375 7.8375 15 8.25 15H15.75C16.1642 15 16.5 15.3357 16.5 15.75C16.5 16.1625 16.1625 16.5 15.75 16.5ZM16.5 12.75C16.5 13.1625 16.1625 13.5 15.75 13.5H8.25C7.8375 13.5 7.5 13.1625 7.5 12.75C7.5 12.3375 7.8375 12 8.25 12H15.75C16.1625 12 16.5 12.3375 16.5 12.75Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFileLinesSolid); const FileLinesSolid = /*#__PURE__*/memo(ForwardRef); export default FileLinesSolid;