@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 667 B
JavaScript
import { __decorate } from "tslib";
import { LitElement } from 'lit';
import { customElement } from 'lit/decorators/custom-element.js';
import { style } from '@mdui/shared/icons/shared/style.js';
import { svgTag } from '@mdui/shared/icons/shared/svg-tag.js';
let IconRestaurant = class IconRestaurant extends LitElement {
render() {
return svgTag('<path d="M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z"/>');
}
};
IconRestaurant.styles = style;
IconRestaurant = __decorate([
customElement('mdui-icon-restaurant')
], IconRestaurant);
export { IconRestaurant };