UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

14 lines (13 loc) 547 B
import type { TPaymentCurrency } from '@blocklet/payment-types'; interface AutoTopupProductCardProps { product: any; price: any; currency: TPaymentCurrency; quantity: number; onQuantityChange: (quantity: number) => void; maxQuantity?: number; minQuantity?: number; creditCurrency: TPaymentCurrency; } export default function AutoTopupProductCard({ product, price, currency, quantity, onQuantityChange, maxQuantity, minQuantity, creditCurrency, }: AutoTopupProductCardProps): import("react").JSX.Element; export {};