@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 664 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 IconKingBed = class IconKingBed extends LitElement {
render() {
return svgTag('<path d="M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5c0-1.1-.9-2-2-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z"/>');
}
};
IconKingBed.styles = style;
IconKingBed = __decorate([
customElement('mdui-icon-king-bed')
], IconKingBed);
export { IconKingBed };