UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 609 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 IconNotes_TwoTone = class IconNotes_TwoTone extends LitElement { render() { return svgTag('<path d="M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z"/>'); } }; IconNotes_TwoTone.styles = style; IconNotes_TwoTone = __decorate([ customElement('mdui-icon-notes--two-tone') ], IconNotes_TwoTone); export { IconNotes_TwoTone };