--- interface Props { items: string[]; direction?: "normal" | "reverse"; class?: string; duration?: string; } const { items, direction = "normal", class: className = "", duration = "46s" } = Astro.props; const separator = direction === "normal" ? "❖" : "◆"; ---