@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 960 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_Rounded = class IconOtherHouses_Rounded extends LitElement {
render() {
return svgTag('<path d="M1.61 12.19c.34.44.96.52 1.4.19l.99-.76V20c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-8.38l.99.76c.44.34 1.07.25 1.4-.19a.992.992 0 0 0-.19-1.4l-9.6-7.33c-.36-.27-.86-.27-1.21 0l-9.6 7.33c-.43.34-.52.97-.18 1.4zM8 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_Rounded.styles = style;
IconOtherHouses_Rounded = __decorate([
customElement('mdui-icon-other-houses--rounded')
], IconOtherHouses_Rounded);
export { IconOtherHouses_Rounded };