@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 747 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 IconSkipNext_Rounded = class IconSkipNext_Rounded extends LitElement {
render() {
return svgTag('<path d="m7.58 16.89 5.77-4.07c.56-.4.56-1.24 0-1.63L7.58 7.11C6.91 6.65 6 7.12 6 7.93v8.14c0 .81.91 1.28 1.58.82zM16 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z"/>');
}
};
IconSkipNext_Rounded.styles = style;
IconSkipNext_Rounded = __decorate([
customElement('mdui-icon-skip-next--rounded')
], IconSkipNext_Rounded);
export { IconSkipNext_Rounded };