@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 742 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 IconEvent_TwoTone = class IconEvent_TwoTone extends LitElement {
render() {
return svgTag('<path d="M5 8h14V6H5z" opacity=".3"/><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z"/>');
}
};
IconEvent_TwoTone.styles = style;
IconEvent_TwoTone = __decorate([
customElement('mdui-icon-event--two-tone')
], IconEvent_TwoTone);
export { IconEvent_TwoTone };