@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 851 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 IconNoCell_TwoTone = class IconNoCell_TwoTone extends LitElement {
render() {
return svgTag('<path d="M7 21h10v-1H7v1zM7 3v1h10V3H7z" opacity=".3"/><path d="M17 6v8.17l2 2V3c0-1.1-.9-1.99-2-1.99L7 1c-.85 0-1.58.55-1.87 1.3L8.83 6H17zM7 3h10v1H7V3zm14.19 18.19L2.81 2.81 1.39 4.22 5 7.83V21c0 1.1.9 2 2 2h10c.85 0 1.58-.55 1.87-1.3l.91.91 1.41-1.42zM17 21H7v-1h10v1zM7 18V9.83L15.17 18H7z"/>');
}
};
IconNoCell_TwoTone.styles = style;
IconNoCell_TwoTone = __decorate([
customElement('mdui-icon-no-cell--two-tone')
], IconNoCell_TwoTone);
export { IconNoCell_TwoTone };