@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 643 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 IconInput = class IconInput extends LitElement {
render() {
return svgTag('<path d="M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14a2 2 0 0 0-2-2zM11 16l4-4-4-4v3H1v2h10v3z"/>');
}
};
IconInput.styles = style;
IconInput = __decorate([
customElement('mdui-icon-input')
], IconInput);
export { IconInput };