Files
hipmi-mobile/screens/Home/tabsList.ts
Bagasbanuna02 4701fce07c feature profile
deskripsi
- resaourcing drawer
2025-06-30 17:44:00 +08:00

40 lines
783 B
TypeScript

import { ITabs } from "@/components/_Interface/types";
export const tabsHome: ITabs[] = [
{
id: "forum",
icon: "chatbubble-ellipses-outline",
activeIcon: "chatbubble-ellipses",
label: "Forum",
path: "/forum",
isActive: true,
disabled: false,
},
{
id: "marketplace",
icon: "cart-outline",
activeIcon: "cart",
label: "Marketplace",
path: "/marketplace",
isActive: false,
disabled: true,
},
{
id: "maps",
icon: "map-outline",
activeIcon: "map",
label: "Maps",
path: "/maps",
isActive: true,
disabled: false,
},
{
id: "profile",
icon: "person-outline",
activeIcon: "person",
label: "Profile",
path: "/profile/coba-id",
isActive: true,
disabled: false,
},
];