@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 809 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 IconOtherHouses_Sharp = class IconOtherHouses_Sharp extends LitElement {
render() {
return svgTag('<path d="M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/>');
}
};
IconOtherHouses_Sharp.styles = style;
IconOtherHouses_Sharp = __decorate([
customElement('mdui-icon-other-houses--sharp')
], IconOtherHouses_Sharp);
export { IconOtherHouses_Sharp };