UNPKG

omnipay-savings-sdk

Version:

Omnipay Savings SDK

14 lines (13 loc) 584 B
export declare const getTextColor: (status: 'Debit' | 'Credit') => string; export declare const getBackgroundColor: (status: 'Debit' | 'Credit') => string; declare const TransactionCard: ({ status, title, transactionType, showTransactionType, amount, onPress, createdDate, bottomSpacing, }: { status: 'Debit' | 'Credit'; title: string; amount: number; transactionType: string; showTransactionType: boolean; onPress: () => void; createdDate: string; bottomSpacing?: number; }) => import("react/jsx-runtime").JSX.Element; export default TransactionCard;