@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 802 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_Rounded = class IconFastRewind_Rounded extends LitElement {
render() {
return svgTag('<path d="M11 16.07V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.56.4-.56 1.24 0 1.63l5.77 4.07c.67.47 1.58 0 1.58-.81zm1.66-3.25 5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07a1 1 0 0 0 0 1.64z"/>');
}
};
IconFastRewind_Rounded.styles = style;
IconFastRewind_Rounded = __decorate([
customElement('mdui-icon-fast-rewind--rounded')
], IconFastRewind_Rounded);
export { IconFastRewind_Rounded };