@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.82 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Hotel({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Hotel",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9.48 1.15a.07.07 0 0 0-.04-.13L8.5.86 8.07.04a.08.08 0 0 0-.14 0L7.5.86l-.93.16a.07.07 0 0 0-.04.13l.66.66-.14.92c0 .06.06.1.11.07L8 2.4l.85.4c.05.03.11-.01.1-.07l-.13-.92.66-.66ZM5.48 2.15a.07.07 0 0 0-.04-.13l-.93-.16-.44-.82a.08.08 0 0 0-.14 0l-.44.82-.93.16a.07.07 0 0 0-.04.13l.66.66-.14.92c0 .06.06.1.11.07L4 3.4l.85.4c.05.03.11-.01.1-.07l-.13-.92.66-.66ZM13.44 2.02c.06 0 .08.08.04.13l-.66.66.14.92c0 .06-.06.1-.11.07L12 3.4l-.85.4a.08.08 0 0 1-.1-.07l.13-.92-.66-.66a.07.07 0 0 1 .04-.13l.93-.16.44-.82c.03-.05.1-.05.14 0l.44.82.93.16ZM7 8a1 1 0 1 0 0 2h2a1 1 0 0 0 0-2H7Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M15 16a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1h-2V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v4H1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h14ZM5 7v7h2v-1a1 1 0 1 1 2 0v1h2V7H5Zm9 7h-1v-4h1v4ZM3 14v-2H2v2h1Z",
shapeRendering: "geometricPrecision"
}));
}
Hotel.displayName = 'Hotel';
export default createBaseComponent(Hotel);