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

{title}

) }