@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 851 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 IconBeenhere_Rounded = class IconBeenhere_Rounded extends LitElement {
render() {
return svgTag('<path d="M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66l7.57 5.04c.34.22.77.22 1.11 0l7.56-5.04c.53-.36.88-.97.88-1.66V3c0-1.1-.9-2-2-2zm-.7 6.7-7.59 7.59a.996.996 0 0 1-1.41 0L5.71 11.7a.996.996 0 1 1 1.41-1.41L10 13.17l6.88-6.88c.39-.39 1.02-.39 1.41 0s.4 1.02.01 1.41z"/>');
}
};
IconBeenhere_Rounded.styles = style;
IconBeenhere_Rounded = __decorate([
customElement('mdui-icon-beenhere--rounded')
], IconBeenhere_Rounded);
export { IconBeenhere_Rounded };