import { Loader2 } from "lucide-react"; // 创建流光钮 export function ActionButton({ isCreating, handleCreateVideo, icon, width = "w-12", height = "h-12", className = "", disabled = false, }: { isCreating: boolean; handleCreateVideo: () => void; icon: React.ReactNode; width?: string; height?: string; className?: string; disabled?: boolean; }) { return (
); }