UNPKG

react-ravepayment

Version:

This is a reactJS library for implementing rave payment gateway

9 lines (8 loc) 280 B
import { ReactNode } from 'react'; interface RavePaymentButtonProps { text?: string; className?: string; children?: ReactNode; } export default function RavePaymentButton({ className, text, children, ...rest }: RavePaymentButtonProps): JSX.Element; export {};