import {IState} from '@components/CoachMarkBottomTab/type'; import WalletIcon from '@assets/svg/WalletIcon'; import BagIcon from '@assets/svg/BagIcon'; import ProfileIcon from '@assets/svg/ProfileIcon'; import NotificationIcon from '@assets/svg/NotificationIcon'; import ScanIcon from '@assets/svg/ScanIcon'; export const state: IState = { index: 1, routes: [ { name: 'HOME_SCREEN', tabBarLabel: 'Home', tabBarIcon: WalletIcon, }, { name: 'NOTIFICATIONS_SCREEN', tabBarLabel: 'Notifications', tabBarIcon: NotificationIcon, }, { name: 'SCAN', tabBarLabel: 'Scan', tabBarIcon: ScanIcon, }, { name: 'FOR_YOU_SCREEN', tabBarLabel: 'For you', tabBarIcon: BagIcon, }, { name: 'PROFILE', tabBarLabel: 'Profile', tabBarIcon: ProfileIcon, }, ], };