@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 761 B
JavaScript
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 IconFastRewind_TwoTone = class IconFastRewind_TwoTone extends LitElement {
render() {
return svgTag('<path d="M9 14.14V9.86L5.97 12zm9 0V9.86L14.97 12z" opacity=".3"/><path d="m11 6-8.5 6 8.5 6V6zm-2 8.14L5.97 12 9 9.86v4.28zM20 6l-8.5 6 8.5 6V6zm-2 8.14L14.97 12 18 9.86v4.28z"/>');
}
};
IconFastRewind_TwoTone.styles = style;
IconFastRewind_TwoTone = __decorate([
customElement('mdui-icon-fast-rewind--two-tone')
], IconFastRewind_TwoTone);
export { IconFastRewind_TwoTone };