UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 656 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 IconChevronLeft_TwoTone = class IconChevronLeft_TwoTone extends LitElement { render() { return svgTag('<path d="M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z"/>'); } }; IconChevronLeft_TwoTone.styles = style; IconChevronLeft_TwoTone = __decorate([ customElement('mdui-icon-chevron-left--two-tone') ], IconChevronLeft_TwoTone); export { IconChevronLeft_TwoTone };