@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 891 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 IconDeveloperBoard_TwoTone = class IconDeveloperBoard_TwoTone extends LitElement {
render() {
return svgTag('<path d="M4 19h14V5H4v14zm8-12h4v3h-4V7zm0 4h4v6h-4v-6zM6 7h5v5H6V7zm0 6h5v4H6v-4z" opacity=".3"/><path d="M6 13h5v4H6zm0-6h5v5H6zm6 0h4v3h-4zm0 4h4v6h-4zm10-2V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14z"/>');
}
};
IconDeveloperBoard_TwoTone.styles = style;
IconDeveloperBoard_TwoTone = __decorate([
customElement('mdui-icon-developer-board--two-tone')
], IconDeveloperBoard_TwoTone);
export { IconDeveloperBoard_TwoTone };