/** @license Copyright (c) 2022 trading_peter This program is available under Apache License Version 2.0 */ import './tp-lc-in.js'; import './tp-lc-out.js'; import { LitElement, html, css } from 'lit'; export class TpLcBlock extends LitElement { static get blockStyles() { return [ css` :host { display: block; position: absolute; padding: 10px; } .wrap { display: flex; } .inputs, .outputs { display: flex; flex-direction: column; justify-content: space-evenly; } .inputs { margin-right: 20px; } .outputs { margin-left: 20px; } tp-lc-in + tp-lc-in, tp-lc-out + tp-lc-out { margin-top: 10px; } ` ]; } render() { const { } = this; const inputs = this.inputs || []; const outputs = this.outputs || []; return html`