8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
|
|
interface WeatherDetailsGridProps {
|
||
|
|
icon: React.ReactNode;
|
||
|
|
label: string;
|
||
|
|
value: string;
|
||
|
|
subtitle?: string;
|
||
|
|
}
|
||
|
|
|