import { css, html, LitElement } from 'lit' import { customElement, property } from 'lit/decorators.js' import './HelpButtonElement' import { getGlobalStyleSheets } from '../../global-styles' @customElement('plugin-configuration-row') export class PluginConfigurationRow extends LitElement { @property({ attribute: false }) public title: string = `title` @property({ attribute: false }) public description: string = `Here's a description` @property({ attribute: false }) public helpPage: string = 'documentation' static styles = [ ...getGlobalStyleSheets() ]; render() { return html`

${this.title}

${this.description}

Nothing in this row.

` } }