UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 574 B
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 IconTableRows = class IconTableRows extends LitElement { render() { return svgTag('<path d="M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z"/>'); } }; IconTableRows.styles = style; IconTableRows = __decorate([ customElement('mdui-icon-table-rows') ], IconTableRows); export { IconTableRows };