import { Button, Tooltip } from "antd"; import { ChevronDown } from "lucide-react"; import { canvasThemes } from "@/lib/canvas-theme"; export function AgentScrollToBottom({ theme, title, ariaLabel = title, className = "", onClick, }: { theme: (typeof canvasThemes)[keyof typeof canvasThemes]; title: string; ariaLabel?: string; className?: string; onClick: () => void; }) { return (