mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import { NumberFormatter } from "@mantine/core"
|
|
import type { MetricGauge } from "@/app/types"
|
|
|
|
interface GaugeProps {
|
|
gauge: MetricGauge
|
|
}
|
|
|
|
export function Gauge(props: Readonly<GaugeProps>) {
|
|
return <NumberFormatter value={props.gauge.value} thousandSeparator />
|
|
}
|