UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 735 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 IconKeyboardDoubleArrowLeft = class IconKeyboardDoubleArrowLeft extends LitElement { render() { return svgTag('<path d="M17.59 18 19 16.59 14.42 12 19 7.41 17.59 6l-6 6z"/><path d="m11 18 1.41-1.41L7.83 12l4.58-4.59L11 6l-6 6z"/>'); } }; IconKeyboardDoubleArrowLeft.styles = style; IconKeyboardDoubleArrowLeft = __decorate([ customElement('mdui-icon-keyboard-double-arrow-left') ], IconKeyboardDoubleArrowLeft); export { IconKeyboardDoubleArrowLeft };