@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 779 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 IconVilla_Rounded = class IconVilla_Rounded extends LitElement {
render() {
return svgTag('<path d="M7 21H4c-.55 0-1-.45-1-1V8.69c0-.42.25-.79.64-.94l11-4.23a1 1 0 0 1 1.36.94V10H8c-.55 0-1 .45-1 1v10zm10-9h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4v-4c0-.55.45-1 1-1s1 .45 1 1v4h4c.55 0 1-.45 1-1v-8c0-1.1-.9-2-2-2s-2 .9-2 2z"/>');
}
};
IconVilla_Rounded.styles = style;
IconVilla_Rounded = __decorate([
customElement('mdui-icon-villa--rounded')
], IconVilla_Rounded);
export { IconVilla_Rounded };