@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 753 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_TwoTone = class IconVilla_TwoTone extends LitElement {
render() {
return svgTag('<path d="m5 9.37 9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z" opacity=".3"/><path d="M19 10c-1.1 0-2 .9-2 2h-1V3L3 8v13h18v-9c0-1.1-.9-2-2-2zM5 9.37l9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z"/>');
}
};
IconVilla_TwoTone.styles = style;
IconVilla_TwoTone = __decorate([
customElement('mdui-icon-villa--two-tone')
], IconVilla_TwoTone);
export { IconVilla_TwoTone };