--- interface Props { items: string[]; speed?: number; reverse?: boolean; } const { items, speed = 20, reverse = false } = Astro.props; ---