AAI SDK
    Preparing search index...

    Interface ToolCallRowProps

    Props for ToolCallRow.

    interface ToolCallRowProps {
        children?: ReactNode;
        className?: string;
        detail?: ReactNode;
        icon?: ReactNode;
        pending?: boolean;
        title: ReactNode;
        variant?: ToolCallRowVariant;
    }
    Index
    children?: ReactNode

    Expanded panel content. When present the row is expandable: a chevron is shown and clicking toggles the panel. When absent the row is inert (the button is disabled). Content provides its own padding and typography; the panel supplies the top border, surface background, and a max height.

    className?: string

    Additional CSS class names for the outer container.

    detail?: ReactNode

    One-line detail (typically an args preview), truncated to the row.

    icon?: ReactNode

    Optional icon rendered in place of the outlined "TOOL" chip.

    pending?: boolean

    True while the call is in flight — animates the title with a shimmer.

    title: ReactNode

    Tool title, rendered in mono (shimmers while pending).

    Size preset; defaults to "default".