UNPKG

zips-react-native-sdk-test

Version:

Lightweight ZIPS Payment Gateway SDK for React Native - Complete payment solution with card payments, wallet payments (AfrMoney & ZApp), netbanking, and native UI design

25 lines (23 loc) 480 B
export interface Wallet { id: string; name: string; logo: string; description: string; isActive: boolean; } export const wallets: Wallet[] = [ // { // id: 'afrmoney', // name: 'AfrMoney', // logo: '🌍', // description: 'Digital wallet for African payments', // isActive: true, // }, { id: 'zapp', name: 'ZApp', logo: 'https://zappme.net/logo.jpeg', description: 'Fast and secure mobile payments', isActive: true, }, ];