@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 882 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 IconBrowserNotSupported_Rounded = class IconBrowserNotSupported_Rounded extends LitElement {
render() {
return svgTag('<path d="M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.86 3.95a.9.9 0 0 0-1.27 0 .9.9 0 0 0 0 1.27l.41.42V18c0 1.1.9 2 2 2h12.36l1.42 1.42a.9.9 0 0 0 1.27 0 .9.9 0 0 0 0-1.27L3.86 3.95zM5 18V7.64L15.36 18H5z"/>');
}
};
IconBrowserNotSupported_Rounded.styles = style;
IconBrowserNotSupported_Rounded = __decorate([
customElement('mdui-icon-browser-not-supported--rounded')
], IconBrowserNotSupported_Rounded);
export { IconBrowserNotSupported_Rounded };