@universal-material/web
Version:
Material web components
15 lines • 428 B
JavaScript
import { __decorate } from "tslib";
import { html, LitElement } from 'lit';
import { customElement } from 'lit/decorators.js';
import { styles } from './list.styles.js';
let UmList = class UmList extends LitElement {
static { this.styles = styles; }
render() {
return html `<slot></slot>`;
}
};
UmList = __decorate([
customElement('u-list')
], UmList);
export { UmList };
//# sourceMappingURL=list.js.map