fix custom tabs

deskripsi:
- penambahan style untuk tabs
This commit is contained in:
2025-06-30 12:09:52 +08:00
parent c1bee77629
commit 5577ef5d1e
7 changed files with 211 additions and 211 deletions

View File

@@ -0,0 +1,13 @@
import { Href } from "expo-router";
export { ITabs };
interface ITabs {
id: string;
icon: string;
activeIcon: string;
label: string;
path: Href;
isActive: boolean;
disabled: boolean;
}