react-monnify-2
Version:
This is an reactJS library for implementing monnify payment gateway
12 lines (11 loc) • 426 B
TypeScript
import { ReactNode } from 'react';
import { MonnifyProps } from './types';
export interface MonnifyButtonProps extends MonnifyProps {
text?: string;
className?: string;
children?: ReactNode;
onComplete?: Function;
onClose?: Function;
}
declare const MonnifyButton: ({ text, className, children, onComplete, onClose, ...others }: MonnifyButtonProps) => JSX.Element;
export default MonnifyButton;