@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 751 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 IconShuffleOn_Sharp = class IconShuffleOn_Sharp extends LitElement {
render() {
return svgTag('<path d="M1 1v22h22V1H1zm4.41 3 5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z"/>');
}
};
IconShuffleOn_Sharp.styles = style;
IconShuffleOn_Sharp = __decorate([
customElement('mdui-icon-shuffle-on--sharp')
], IconShuffleOn_Sharp);
export { IconShuffleOn_Sharp };