--- import Icon from '@ui/Icon.astro' interface Props { city?: string temperature?: string | number color?: string icon?: string description?: string } const { city = 'Warsaw', temperature = 20, color = 'blue', icon = 'cloud-rain', description = 'Cloudy morning' } = Astro.props ---

{city}

{description}
{temperature}°