import { PauseCircle, RefreshCw } from "lucide-react"; import { Button } from "@/app/components/ui/button"; import { ChatHandler } from "@/app/components/ui/chat/chat.interface"; export default function ChatActions( props: Pick & { showReload?: boolean; showStop?: boolean; }, ) { return (
{props.showStop && ( )} {props.showReload && ( )}
); }