"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; onContinueStory?: () => void; } export function EditorToolbar({ title, onContinueStory, }: EditorToolbarProps) { const router = useRouter(); return (

{title}

); }