UNPKG

@activate-spritz-components/spritz-ui-components

Version:

This is shared components library for spritz projects.

15 lines (14 loc) 383 B
import { FunctionComponent } from 'react'; interface IProps { height?: number; title: string; subTitle: string; successBtnText: string; cancelBtnText?: string; onClickCancel: () => any; onClickSuccess: () => any; closeSvg: string; className?: string; } declare const ConfirmationModal: FunctionComponent<IProps>; export default ConfirmationModal;