@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.35 kB
JavaScript
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 StyledHotelRegular = ({
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: "M8.25 4.5C8.6625 4.5 9 4.8375 9 5.25V6.75C9 7.1625 8.6625 7.5 8.25 7.5H6.75C6.3375 7.5 6 7.1625 6 6.75V5.25C6 4.8375 6.3375 4.5 6.75 4.5H8.25ZM10.5 5.25C10.5 4.8375 10.8375 4.5 11.25 4.5H12.75C13.1625 4.5 13.5 4.8375 13.5 5.25V6.75C13.5 7.1625 13.1625 7.5 12.75 7.5H11.25C10.8375 7.5 10.5 7.1625 10.5 6.75V5.25ZM17.25 4.5C17.6625 4.5 18 4.8375 18 5.25V6.75C18 7.1625 17.6625 7.5 17.25 7.5H15.75C15.3375 7.5 15 7.1625 15 6.75V5.25C15 4.8375 15.3375 4.5 15.75 4.5H17.25ZM6 9.75C6 9.3375 6.3375 9 6.75 9H8.25C8.6625 9 9 9.3375 9 9.75V11.25C9 11.6625 8.6625 12 8.25 12H6.75C6.3375 12 6 11.6625 6 11.25V9.75ZM12.75 9C13.1625 9 13.5 9.3375 13.5 9.75V11.25C13.5 11.6625 13.1625 12 12.75 12H11.25C10.8375 12 10.5 11.6625 10.5 11.25V9.75C10.5 9.3375 10.8375 9 11.25 9H12.75ZM15 9.75C15 9.3375 15.3375 9 15.75 9H17.25C17.6625 9 18 9.3375 18 9.75V11.25C18 11.6625 17.6625 12 17.25 12H15.75C15.3375 12 15 11.6625 15 11.25V9.75ZM22.875 0C23.4984 0 24 0.503906 24 1.125C24 1.74609 23.4984 2.25 22.875 2.25H22.5V21.75H22.875C23.4984 21.75 24 22.2516 24 22.875C24 23.4984 23.4984 24 22.875 24H1.125C0.503906 24 0 23.4984 0 22.875C0 22.2516 0.503906 21.75 1.125 21.75H1.5V2.25H1.125C0.503906 2.25 0 1.74609 0 1.125C0 0.503906 0.503906 0 1.125 0H22.875ZM3.75 2.25V21.75H9.75V18H8.25C7.8375 18 7.49531 17.6625 7.56094 17.2547C7.91719 15.1219 9.76875 13.5 12 13.5C14.2312 13.5 16.0828 15.1219 16.4391 17.2547C16.5047 17.6625 16.1625 18 15.75 18H14.25V21.75H20.25V2.25H3.75Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledHotelRegular);
const HotelRegular = /*#__PURE__*/memo(ForwardRef);
export default HotelRegular;