import {html, LitElement, css} from "lit"; import {customElement} from "lit/decorators.js"; const tagName = "sonic-modal-content"; @customElement(tagName) export class ModalContent extends LitElement { static styles = [ css` :host { display: block; width: 100%; } `, ]; render() { return html``; } }