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 StyledRoomBedRegular = ({ 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: "M6.3 14.2C8.11875 14.2 9.6 12.7187 9.6 10.9C9.6 9.08125 8.11875 7.6 6.3 7.6C4.48125 7.6 3 9.08125 3 10.9C3 12.7187 4.48125 14.2 6.3 14.2ZM6.3 9.4C7.09125 9.4 7.8 10.075 7.8 10.9C7.8 11.725 7.09125 12.4 6.3 12.4C5.44125 12.4 4.8 11.725 4.8 10.9C4.8 10.075 5.44125 9.4 6.3 9.4ZM19.8 7.6H11.4C11.07 7.6 10.8 7.87 10.8 8.2V15.4H1.8V4.9C1.8 4.40312 1.39688 4 0.9 4C0.403125 4 0 4.40312 0 4.86625V19.9C0 20.3987 0.403125 20.8 0.86625 20.8C1.32938 20.8 1.8 20.3987 1.8 19.9V17.2H22.2V19.9C22.2 20.3987 22.6013 20.8 23.1 20.8C23.5988 20.8 24 20.3987 24 19.9V11.8C24 9.47875 22.1213 7.6 19.8 7.6ZM22.2 15.4H12.6V9.4H19.8C21.1219 9.4 22.2 10.4781 22.2 11.8V15.4Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledRoomBedRegular); const RoomBedRegular = /*#__PURE__*/memo(ForwardRef); export default RoomBedRegular;