@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 846 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 IconWebAssetOff_Rounded = class IconWebAssetOff_Rounded extends LitElement {
render() {
return svgTag('<path d="M6.83 4H20a2 2 0 0 1 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm12.95 18.61L17.17 20H4a2 2 0 0 1-2-2V6c0-.34.08-.66.23-.94l-.84-.84A.996.996 0 1 1 2.8 2.81l18.38 18.38c.39.39.39 1.02 0 1.41-.38.4-1.01.4-1.4.01zM15.17 18l-10-10H4v10h11.17z"/>');
}
};
IconWebAssetOff_Rounded.styles = style;
IconWebAssetOff_Rounded = __decorate([
customElement('mdui-icon-web-asset-off--rounded')
], IconWebAssetOff_Rounded);
export { IconWebAssetOff_Rounded };