import { LitElement, html, css } from 'lit'; class SlotsDialogContent extends LitElement { static get styles() { return [ css` :host { background-color: #fff; } .actions { border-top: 2px solid green; } `, ]; } _closeOverlay() { this.dispatchEvent(new Event('close-overlay', { bubbles: true })); } render() { return html`
This content contains an actions slot