@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 884 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 IconAddHome_Rounded = class IconAddHome_Rounded extends LitElement {
render() {
return svgTag('<path d="M16.53 11.16c1.23-.26 2.4-.18 3.47.14V10c0-.63-.3-1.22-.8-1.6l-6-4.5a2.01 2.01 0 0 0-2.4 0l-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h5.68a6.915 6.915 0 0 1-.55-4.35c.52-2.72 2.69-4.91 5.4-5.49z"/><path d="M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21v1z"/>');
}
};
IconAddHome_Rounded.styles = style;
IconAddHome_Rounded = __decorate([
customElement('mdui-icon-add-home--rounded')
], IconAddHome_Rounded);
export { IconAddHome_Rounded };