--- // Equivalent of parts/dropdown/days.html interface Props { id?: string; label?: string; value?: string; } const { id, label = 'Select time range', value = 'Last 7 days' } = Astro.props; ---