import { Tooltip } from "@nextui-org/react"; import { AgentState } from "#/types/agent-state"; interface ActionButtonProps { isDisabled?: boolean; content: string; action: AgentState; handleAction: (action: AgentState) => void; } export function ActionButton({ isDisabled = false, content, action, handleAction, children, }: React.PropsWithChildren) { return ( ); }