UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

22 lines (21 loc) 332 B
/** * Notifier prompt props */ export type NotifierPromptProps = Record<string, any> & { /** * Cancel label */ cancelLabel?: string; /** * OK label */ okLabel?: string; /** * Multiple inputs */ inputs: React.ReactNode; /** * Single type */ type?: string; };