UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 600 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 IconSwitchLeft = class IconSwitchLeft extends LitElement { render() { return svgTag('<path d="M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z"/>'); } }; IconSwitchLeft.styles = style; IconSwitchLeft = __decorate([ customElement('mdui-icon-switch-left') ], IconSwitchLeft); export { IconSwitchLeft };