import { cn } from "@/lib/utils" import { ReactNode } from "react" export function Dialogue({ children, className = "", isLoading }: { children: ReactNode className?: string isLoading: boolean }) { return (
{ isLoading ?

⌛ Generating story, please wait..

: children }
) }