@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 754 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 IconEventAvailable = class IconEventAvailable extends LitElement {
render() {
return svgTag('<path d="M16.53 11.06 15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"/>');
}
};
IconEventAvailable.styles = style;
IconEventAvailable = __decorate([
customElement('mdui-icon-event-available')
], IconEventAvailable);
export { IconEventAvailable };