UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

9 lines (8 loc) 284 B
import type { TPaymentCurrency } from '@blocklet/payment-types'; type Props = { value: string; currencies: TPaymentCurrency[]; onChange: Function; }; export default function CurrencySelector({ value, currencies, onChange }: Props): import("react").JSX.Element; export {};