import { View, Text } from "react-native"; import tw from "twrnc"; interface GaugeProps { label: string; value: string; } export function Gauge({ label, value }: GaugeProps) { return ( {label} {value} ); }