UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.3 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 StyledHotelSolid = ({ 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: "M22.5 0C23.3297 0 24 0.671719 24 1.5C24 2.32828 23.3297 3 22.5 3V21C23.3297 21 24 21.6703 24 22.5C24 23.3297 23.3297 24 22.5 24H14.25V21H9.75V24H1.5C0.671719 24 0 23.3297 0 22.5C0 21.6703 0.671719 21 1.5 21V3C0.671719 3 0 2.32828 0 1.5C0 0.671719 0.671719 0 1.5 0H22.5ZM5.25 4.5C4.8375 4.5 4.5 4.8375 4.5 5.25V6.75C4.5 7.1625 4.8375 7.5 5.25 7.5H6.75C7.1625 7.5 7.5 7.1625 7.5 6.75V5.25C7.5 4.8375 7.1625 4.5 6.75 4.5H5.25ZM10.5 6.75C10.5 7.1625 10.8375 7.5 11.25 7.5H12.75C13.1625 7.5 13.5 7.1625 13.5 6.75V5.25C13.5 4.8375 13.1625 4.5 12.75 4.5H11.25C10.8375 4.5 10.5 4.8375 10.5 5.25V6.75ZM17.25 4.5C16.8375 4.5 16.5 4.8375 16.5 5.25V6.75C16.5 7.1625 16.8375 7.5 17.25 7.5H18.75C19.1625 7.5 19.5 7.1625 19.5 6.75V5.25C19.5 4.8375 19.1625 4.5 18.75 4.5H17.25ZM4.5 11.25C4.5 11.6625 4.8375 12 5.25 12H6.75C7.1625 12 7.5 11.6625 7.5 11.25V9.75C7.5 9.3375 7.1625 9 6.75 9H5.25C4.8375 9 4.5 9.3375 4.5 9.75V11.25ZM11.25 9C10.8375 9 10.5 9.3375 10.5 9.75V11.25C10.5 11.6625 10.8375 12 11.25 12H12.75C13.1625 12 13.5 11.6625 13.5 11.25V9.75C13.5 9.3375 13.1625 9 12.75 9H11.25ZM16.5 11.25C16.5 11.6625 16.8375 12 17.25 12H18.75C19.1625 12 19.5 11.6625 19.5 11.25V9.75C19.5 9.3375 19.1625 9 18.75 9H17.25C16.8375 9 16.5 9.3375 16.5 9.75V11.25ZM12 13.5C9.9 13.5 8.13281 14.9391 7.59844 16.8844C7.48594 17.4891 8.00156 18 8.625 18H15.375C15.9984 18 16.5141 17.4891 16.3594 16.8844C15.8672 14.9391 14.1 13.5 12 13.5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledHotelSolid); const HotelSolid = /*#__PURE__*/memo(ForwardRef); export default HotelSolid;