UNPKG

@appbuckets/react-ui

Version:
13 lines (12 loc) 544 B
import { ShorthandCollection } from '@appbuckets/react-ui-core'; import { UIMutableComponentProps } from '../generic'; import { ButtonProps, ButtonClickHandler } from '../Button'; export interface ModalActionsProps extends UIMutableComponentProps<StrictModalActionsProps> {} export interface StrictModalActionsProps { /** Buttons Action Shorthand */ actions?: ShorthandCollection<ButtonProps>; /** On Action Click Handler */ onActionClick?: ModalActionClickHandler; } export declare type ModalActionClickHandler = ButtonClickHandler;