UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

8 lines (7 loc) 335 B
import type { DonationSettings, TLineItemExpanded, TPaymentCurrency } from '@blocklet/payment-types'; export default function ProductDonation({ item, settings, onChange, currency, }: { item: TLineItemExpanded; settings: DonationSettings; onChange: Function; currency: TPaymentCurrency; }): import("react").JSX.Element;