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
28 lines (26 loc) • 609 B
text/typescript
export interface PaymentMethod {
id: 'bank-selection' | 'card-input' | 'wallet-selection';
title: string;
subtitle: string;
icon: string;
}
export const paymentMethods: PaymentMethod[] = [
{
id: 'bank-selection',
title: 'Netbanking',
subtitle: 'Pay with Internet Banking Account',
icon: '🏛️',
},
// {
// id: 'card-input',
// title: 'Credit/Debit Card',
// subtitle: 'Visa, Mastercard, Maestro, American express etc',
// icon: '💳',
// },
{
id: 'wallet-selection',
title: 'Wallet',
subtitle: 'Pay using a Wallet',
icon: '👛',
},
];