export const mockTransactions = [
  {
    status: 'Credit',
    title: 'Salary Payment',
    amount: 250000,
    transactionType: 'Salary',
    createdDate: '2025-05-01T10:30:00Z',
    showTransactionType: true,
  },
  {
    status: 'Debit',
    title: 'Grocery Shopping',
    amount: 15000,
    transactionType: 'Shopping',
    createdDate: '2025-05-02T14:20:00Z',
    showTransactionType: true,
  },
  {
    status: 'Debit',
    title: 'Electricity Bill',
    amount: 7500,
    transactionType: 'Utilities',
    createdDate: '2025-05-03T08:10:00Z',
    showTransactionType: true,
  },
  {
    status: 'Credit',
    title: 'Transfer from James',
    amount: 10000,
    transactionType: 'Transfer',
    createdDate: '2025-05-04T12:45:00Z',
    showTransactionType: true,
  },
  {
    status: 'Debit',
    title: 'Netflix Subscription',
    amount: 4500,
    transactionType: 'Subscription',
    createdDate: '2025-05-05T09:00:00Z',
    showTransactionType: true,
  },
];
