Weather/app/components/WeatherDetailsGird.tsx

8 lines
145 B
TypeScript
Raw Normal View History

2025-11-17 17:17:43 +08:00
interface WeatherDetailsGridProps {
icon: React.ReactNode;
label: string;
value: string;
subtitle?: string;
}
function WeatherInfoItem()