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