UNPKG

carpooluikit

Version:
17 lines (16 loc) 426 B
import { BoxProps } from "../../components/Box"; export interface ModalTheme { background: string; } export declare type Handler = () => void; export interface InjectedProps { onDismiss?: Handler; } export interface ModalProps extends InjectedProps, BoxProps { title: string; hideCloseButton?: boolean; onBack?: () => void; bodyPadding?: string; headerBackground?: string; minWidth?: string; }