styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 796 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Hotel = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("circle", { cx: 7.5, cy: 11.5, r: 2.5, key: "k0" }),
React.createElement("path", { d: "M17.205 7H12a1 1 0 00-1 1v7H4V6H2v14h2v-3h16v3h2v-8.205A4.8 4.8 0 0017.205 7zM13 15V9h4.205A2.798 2.798 0 0120 11.795V15h-7z", key: "k1" })));
});
Hotel.displayName = 'Hotel';
export var HotelDimensions = { height: 24, width: 24 };