@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 808 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 IconFastForward_Rounded = class IconFastForward_Rounded extends LitElement {
render() {
return svgTag('<path d="m5.58 16.89 5.77-4.07c.56-.4.56-1.24 0-1.63L5.58 7.11C4.91 6.65 4 7.12 4 7.93v8.14c0 .81.91 1.28 1.58.82zM13 7.93v8.14c0 .81.91 1.28 1.58.82l5.77-4.07c.56-.4.56-1.24 0-1.63l-5.77-4.07c-.67-.47-1.58 0-1.58.81z"/>');
}
};
IconFastForward_Rounded.styles = style;
IconFastForward_Rounded = __decorate([
customElement('mdui-icon-fast-forward--rounded')
], IconFastForward_Rounded);
export { IconFastForward_Rounded };