UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 665 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 IconDoubleArrow_TwoTone = class IconDoubleArrow_TwoTone extends LitElement { render() { return svgTag('<path d="M15.5 5H11l5 7-5 7h4.5l5-7z"/><path d="M8.5 5H4l5 7-5 7h4.5l5-7z"/>'); } }; IconDoubleArrow_TwoTone.styles = style; IconDoubleArrow_TwoTone = __decorate([ customElement('mdui-icon-double-arrow--two-tone') ], IconDoubleArrow_TwoTone); export { IconDoubleArrow_TwoTone };