@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 744 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_Outlined = class IconKingBed_Outlined extends LitElement {
render() {
return svgTag('<path d="M22 12c0-1.1-.9-2-2-2V7c0-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-5zm-4-2h-5V7h5v3zM6 7h5v3H6V7zm-2 5h16v3H4v-3z"/>');
}
};
IconKingBed_Outlined.styles = style;
IconKingBed_Outlined = __decorate([
customElement('mdui-icon-king-bed--outlined')
], IconKingBed_Outlined);
export { IconKingBed_Outlined };