import {LitElement, html, unsafeCSS} from 'lit'; import {customElement} from 'lit/decorators.js'; import compentStyle from './automation-input-modal.css?inline'; @customElement('obc-automation-input-modal') export class ObcAutomationInputModal extends LitElement { override render() { return html`
`; } static override styles = unsafeCSS(compentStyle); } declare global { interface HTMLElementTagNameMap { 'obc-automation-input-modal': ObcAutomationInputModal; } }