code quality
Some checks failed
CI / lint-typecheck (pull_request) Failing after 13s
CI / tests (pull_request) Has been skipped
CI / contract-tests (pull_request) Has been skipped
CI / e2e-tests (pull_request) Has been skipped
CI / comment-pr (pull_request) Has been skipped
CI / commit-types (pull_request) Has been skipped

This commit is contained in:
2026-01-27 16:30:03 +01:00
parent 9b31eaf728
commit 9894c4a841
34 changed files with 926 additions and 536 deletions

View File

@@ -5,16 +5,17 @@ import React from 'react';
interface TelemetryPanelProps {
title: string;
children: React.ReactNode;
'data-testid'?: string;
}
/**
* TelemetryPanel
*
*
* A dense, instrument-grade panel for displaying data and controls.
*/
export function TelemetryPanel({ title, children }: TelemetryPanelProps) {
export function TelemetryPanel({ title, children, 'data-testid': testId }: TelemetryPanelProps) {
return (
<Panel title={title} variant="dark" padding={4}>
<Panel title={title} variant="dark" padding={4} data-testid={testId}>
<Text size="sm" variant="med">
{children}
</Text>