import { MeasurementDisplay } from './measurement-display';
interface SpeedDisplayProps {
kmh: number;
showBothUnits?: boolean;
className?: string;
}
export function SpeedDisplay({ kmh, showBothUnits = false, className }: SpeedDisplayProps) {
return (
);
}
interface DistanceDisplayProps {
meters: number;
showBothUnits?: boolean;
className?: string;
}
export function DistanceDisplay({ meters, showBothUnits = false, className }: DistanceDisplayProps) {
return (
);
}
interface HeightDisplayProps {
cm: number;
showBothUnits?: boolean;
className?: string;
}
export function HeightDisplay({ cm, showBothUnits = false, className }: HeightDisplayProps) {
return (
);
}