UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.7 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 StyledBedBunkSolid = ({ 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: "M19.3333 1H10C9.62917 1 9.33333 1.29688 9.33333 1.66667V6.33333H2.66667V1.66667C2.66667 1.29688 2.37 1 2 1H0.666667C0.296875 1 0 1.29688 0 1.66667V21.6667C0 22.0375 0.296875 22.3333 0.666667 22.3333H2C2.37 22.3333 2.66667 22.0375 2.66667 21.6667V19.6667H21.3333V21.6667C21.3333 22.0365 21.6302 22.3333 22 22.3333H23.3333C23.7031 22.3333 24 22.0365 24 21.6667V5.66667C24 3.08833 21.9125 1 19.3333 1ZM21.3333 12.1375C20.7083 11.8292 20.025 11.6708 19.3333 11.6667H10C9.62917 11.6667 9.33333 11.9625 9.33333 12.3333V17H2.66667V9H21.3333V12.1375ZM6 15.6667C7.10417 15.6667 8 14.7708 8 13.6667C8 12.5625 7.10417 11.6667 6 11.6667C4.89583 11.6667 4 12.5625 4 13.6667C4 14.7708 4.89583 15.6667 6 15.6667ZM6 5C7.10417 5 8 4.10417 8 3C8 1.89583 7.10417 1 6 1C4.89583 1 4 1.89583 4 3C4 4.10417 4.89583 5 6 5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBedBunkSolid); const BedBunkSolid = /*#__PURE__*/memo(ForwardRef); export default BedBunkSolid;