@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 762 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 IconShortcut_Rounded = class IconShortcut_Rounded extends LitElement {
render() {
return svgTag('<path d="M20.29 10.29 16.7 6.7c-.62-.62-1.7-.18-1.7.71V10H8c-2.76 0-5 2.24-5 5v3c0 .55.45 1 1 1s1-.45 1-1v-3c0-1.65 1.35-3 3-3h7v2.59c0 .89 1.08 1.34 1.71.71l3.59-3.59c.38-.39.38-1.03-.01-1.42z"/>');
}
};
IconShortcut_Rounded.styles = style;
IconShortcut_Rounded = __decorate([
customElement('mdui-icon-shortcut--rounded')
], IconShortcut_Rounded);
export { IconShortcut_Rounded };