"use client" import { ArrowLeft, RefreshCw, Download, Plus, Info } from "lucide-react" import { Button } from "@/components/ui/button" import { useRouter } from "next/navigation" interface EditorToolbarProps { title: string onInfoClick: () => void } export function EditorToolbar({ title, onInfoClick }: EditorToolbarProps) { const router = useRouter() return (

{title}

) }