@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 632 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 IconKitchen = class IconKitchen extends LitElement {
render() {
return svgTag('<path d="M20 9V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v5h16zM8 5h2v3H8V5zm-4 6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9H4zm6 6H8v-5h2v5z"/>');
}
};
IconKitchen.styles = style;
IconKitchen = __decorate([
customElement('mdui-icon-kitchen')
], IconKitchen);
export { IconKitchen };