UNPKG

@keen.io/ui-core

Version:

Keen visual components library

11 lines (10 loc) 276 B
import React, { FC } from 'react'; declare type Props = { children?: React.ReactNode; onConfirm?: () => void; onCancel: () => void; confirmText?: string; cancelText?: string; }; declare const ModalContent: FC<Props>; export default ModalContent;