import { Square } from "lucide-react"; import { Button } from "@/components/ui/button"; interface ChatStopButtonProps { onStop: () => void; } export function ChatStopButton({ onStop }: ChatStopButtonProps) { return (
); }