2024-09-14 13:43:00 +02:00
|
|
|
import { NumberFormatter } from "@mantine/core"
|
2025-06-27 16:29:31 +02:00
|
|
|
import type { MetricGauge } from "@/app/types"
|
2024-06-13 21:54:14 +02:00
|
|
|
|
2025-07-29 15:21:15 +02:00
|
|
|
interface GaugeProps {
|
2024-06-13 21:54:14 +02:00
|
|
|
gauge: MetricGauge
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-29 15:21:15 +02:00
|
|
|
export function Gauge(props: Readonly<GaugeProps>) {
|
2024-09-14 13:43:00 +02:00
|
|
|
return <NumberFormatter value={props.gauge.value} thousandSeparator />
|
2024-06-13 21:54:14 +02:00
|
|
|
}
|