--- interface Props { phrases: string[]; className?: string; textSize?: string; } const { phrases = ["河北旅游", "河北文化", "河北美食"], className = "", textSize = "text-7xl sm:text-8xl md:text-9xl" } = Astro.props; const id = `morphing-text-${Math.random().toString(36).substr(2, 9)}`; ---