// SPDX-FileCopyrightText: 2024 Mehdi Benadel // // SPDX-License-Identifier: AGPL-3.0-only import { html } from 'lit' import { customElement, property } from 'lit/decorators.js' import { LivechatElement } from '../../lib/elements/livechat' @customElement('livechat-configuration-row') export class ConfigurationRowElement extends LivechatElement { @property({ attribute: false }) public title: string = `title` @property({ attribute: false }) public description: string = `Here's a description` @property({ attribute: false }) public helpPage: string = 'documentation' render() { return html`

${this.title}

${this.description}

` } }