| 1 |
// Bulk imports |
| 2 |
import bulkTable1 from '../../../asset/img/badge-images/table/bulk/table1.svg'; |
| 3 |
import bulkTable2 from '../../../asset/img/badge-images/table/bulk/table2.svg'; |
| 4 |
import bulkTable3 from '../../../asset/img/badge-images/table/bulk/table3.svg'; |
| 5 |
import bulkTable4 from '../../../asset/img/badge-images/table/bulk/table4.svg'; |
| 6 |
import bulkTable5 from '../../../asset/img/badge-images/table/bulk/table5.svg'; |
| 7 |
|
| 8 |
// Bundle imports |
| 9 |
import bundleTable1 from '../../../asset/img/badge-images/table/bundle/table1.svg'; |
| 10 |
import bundleTable2 from '../../../asset/img/badge-images/table/bundle/table2.svg'; |
| 11 |
import bundleTable3 from '../../../asset/img/badge-images/table/bundle/table3.svg'; |
| 12 |
import bundleTable4 from '../../../asset/img/badge-images/table/bundle/table4.svg'; |
| 13 |
import bundleTable5 from '../../../asset/img/badge-images/table/bundle/table5.svg'; |
| 14 |
|
| 15 |
// Export bulk table images |
| 16 |
export const BulkTable = { |
| 17 |
table1: bulkTable1, |
| 18 |
table2: bulkTable2, |
| 19 |
table3: bulkTable3, |
| 20 |
table4: bulkTable4, |
| 21 |
table5: bulkTable5, |
| 22 |
}; |
| 23 |
|
| 24 |
// Export bundle table images |
| 25 |
export const BundleTable = { |
| 26 |
table1: bundleTable1, |
| 27 |
table2: bundleTable2, |
| 28 |
table3: bundleTable3, |
| 29 |
table4: bundleTable4, |
| 30 |
table5: bundleTable5, |
| 31 |
}; |
| 32 |
|
| 33 |
// Export both together if needed |
| 34 |
const bulkBundleTable = { |
| 35 |
bulk: BulkTable, |
| 36 |
bundle: BundleTable, |
| 37 |
}; |
| 38 |
|
| 39 |
export default bulkBundleTable; |
| 40 |
|