@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 778 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 IconSkipPrevious_Rounded = class IconSkipPrevious_Rounded extends LitElement {
render() {
return svgTag('<path d="M7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1zm3.66 6.82 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"/>');
}
};
IconSkipPrevious_Rounded.styles = style;
IconSkipPrevious_Rounded = __decorate([
customElement('mdui-icon-skip-previous--rounded')
], IconSkipPrevious_Rounded);
export { IconSkipPrevious_Rounded };