export const docTypeOptions = [
  {
    label: 'ID Document',
    value: 'id_document',
    doc_type: [
      { label: 'ID-1', value: 'id1' },
      {
        label: 'ID-2',
        value: 'id2',
      },
      { label: 'ID-3', value: 'id3' },
    ],
  },
  {
    label: 'Other',
    value: 'other',
  },
];
export const typeOptions = [
  {
    label: 'Type',
    value: 'type',
    type: [
      { label: 'Driver License', value: 'drive_licence' },
      {
        label: 'Bank or Credit Union Statement',
        value: 'bank_or_credit_union_statement',
      },
      { label: 'Cancelled check', value: 'canceled_check' },
      { label: 'Government issued ID', value: 'government_issued' },
      {
        label: 'Signed Letter from Homeless Shelter',
        value: 'signed_letter_from_homeless_shelter',
      },
      {
        label: 'Stamped Post Office Box Receipt',
        value: 'stamped_post_office_box_receipt',
      },
      { label: 'Utility Bills', value: 'utility_bills' },
      { label: 'Pay Stub', value: 'pay_stub' },
      { label: 'Other', value: 'other' },
    ],
  },
];
