import { CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; import { COMMON_STYLES } from "../common/styles"; @customElement("ak-empty-state") export class EmptyState extends LitElement { @property({type: String}) icon = ""; @property() header?: string; static get styles(): CSSResult[] { return COMMON_STYLES; } render(): TemplateResult { return html`

${this.header}

`; } }