MDK Logo
ReferenceUIComponents

Action Components

Buttons, action triggers, and export controls

Components for triggering actions and user interactions.

Prerequisites

  • Complete the installation
  • Import styles: import '@tetherto/mdk-react-devkit/styles.css'

Components

ActionButton

ActionButton component with confirmation popover or dialog

agent-ready

Props

PropTypeRequiredDefaultDescription
labelstring | undefined--
loadingboolean | undefined--
disabledboolean | undefined--
classNamestring | undefined--
variantTActionButtonVariant | undefined--
confirmationActionButtonConfirmation--
mode"dialog" | "popover" | undefined-Confirmation mode: popover (inline) or dialog (modal). Default: popover

Button

Primary action button. Supports loading state with spinner, icon placement, variants, sizes, and full-width layout. Forwards refs and all native button attributes.

agent-ready

Props

PropTypeRequiredDefaultDescription
loadingboolean-Show a spinner instead of the content and disable the button.
fullWidthboolean-Make the button stretch to fill its container.
iconReact.ReactNode-Icon node rendered alongside children.
variantButtonVariant-Visual variant (e.g. primary, secondary, ghost).
contentClassNamestring-Class names applied to the inner content wrapper.
iconPositionButtonIconPosition-Icon placement relative to children.
sizeComponentSize-Size token (sm, md, lg).

StatsExport

Dropdown button that triggers asynchronous CSV or JSON export. Shows a spinner while the corresponding handler is awaited.

agent-ready

Props

PropTypeRequiredDefaultDescription
showLabelboolean | undefined--
disabledboolean | undefined--
onCsvExport() => Promise<void>--
onJsonExport() => Promise<void>--

On this page