@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 645 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 IconFoundation = class IconFoundation extends LitElement {
render() {
return svgTag('<path d="M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z"/>');
}
};
IconFoundation.styles = style;
IconFoundation = __decorate([
customElement('mdui-icon-foundation')
], IconFoundation);
export { IconFoundation };