UNPKG

@yosgo/swap-ui

Version:
19 lines (18 loc) 447 B
/// <reference types="react" /> export interface SWAPDialogProps { status: "success" | "warning" | "critical"; title: string; helpText?: string; open: boolean; primaryButton: { title: string; onClick: () => void; disabled?: boolean; }; secondaryButton?: { title: string; onClick: () => void; disabled?: boolean; }; children?: React.ReactNode; }