@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 682 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 IconBrowserUpdated = class IconBrowserUpdated extends LitElement {
render() {
return svgTag('<path d="M22 13v3c0 1.1-.9 2-2 2h-3l1 1v2H6v-2l1-1H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h8v2H4v11h16v-3h2zm-7 2-5-5h4V3h2v7h4l-5 5z"/>');
}
};
IconBrowserUpdated.styles = style;
IconBrowserUpdated = __decorate([
customElement('mdui-icon-browser-updated')
], IconBrowserUpdated);
export { IconBrowserUpdated };