8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
|
interface WeatherDetailsGridProps {
|
||
|
|
icon: React.ReactNode;
|
||
|
|
label: string;
|
||
|
|
value: string;
|
||
|
|
subtitle?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
function WeatherInfoItem()
|