--- interface Props { height?: number; width?: number; fill?: string; className?: string; // 更新主题过渡动画模式配置 transitionMode?: "expand" | "shrink" | "auto" | "reverse-auto"; } const { height = 16, width = 16, fill = "currentColor", className = "", transitionMode = "auto", // 默认为自动模式 } = Astro.props; ---