import {html, LitElement, css} from "lit"; import {customElement} from "lit/decorators.js"; const tagName = "sonic-thead"; @customElement(tagName) export class TableThead extends LitElement { static styles = [ css` :host { display: table-header-group; } `, ]; render() { return html``; } }