UNPKG

@impossiblefinance/uikit

Version:
12 lines (11 loc) 304 B
import React from 'react'; import { InjectedProps } from './types'; interface Props extends InjectedProps { title: string; hideCloseButton?: boolean; onBack?: () => void; bodyPadding?: string; style?: React.CSSProperties; } declare const Modal: React.FC<Props>; export default Modal;