@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 685 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 IconAutoAwesomeMotion_Sharp = class IconAutoAwesomeMotion_Sharp extends LitElement {
render() {
return svgTag('<path d="M14 2H2v12h2V4h10V2zm4 4H6v12h2V8h10V6zm4 4H10v12h12V10z"/>');
}
};
IconAutoAwesomeMotion_Sharp.styles = style;
IconAutoAwesomeMotion_Sharp = __decorate([
customElement('mdui-icon-auto-awesome-motion--sharp')
], IconAutoAwesomeMotion_Sharp);
export { IconAutoAwesomeMotion_Sharp };