diff --git a/src/components/Charts/HalfTopGauge.tsx b/src/components/Charts/HalfTopGauge.tsx new file mode 100644 index 00000000..c5d7516d --- /dev/null +++ b/src/components/Charts/HalfTopGauge.tsx @@ -0,0 +1,43 @@ +import { ResponsivePie } from '@nivo/pie' +import { Stack } from 'tamagui' +export interface GaugeDataPoint { + id: string + label: string + value: number +} + +interface HalfTopGaugeProps { + data: GaugeDataPoint[] + isInteractive?: boolean +} + +const HalfTopGauge = ({ data, isInteractive = true }: HalfTopGaugeProps) => { + return ( + + + + ) +} + +export default HalfTopGauge