"use client" import { ArrowLeft } from "lucide-react" import { Button } from "@/components/ui/button" interface BackButtonProps { onClick: () => void label?: string className?: string } export function BackButton({ onClick, label = "返回", className = "" }: BackButtonProps) { return (