import { LitElement, html } from '@lion/core'; class SlotsDialogContent extends LitElement { render() { return html` shadow button slot button `; } } customElements.define('slots-dialog-content', SlotsDialogContent);