UNPKG

reactnativeepictrailsds

Version:

A flexible and customizable design system for React Native, providing pre-built UI components, typography, and themes to enhance mobile app development.

18 lines (16 loc) 351 B
export interface NavItemProps { icon: string; label: string; active: boolean; theme?: "light" | "dark"; onPress: () => void; } export interface BottomNavProps { items: Array<{ icon: string; label: string; }>; theme?: "light" | "dark"; initialActiveIndex?: number; onItemPress?: (index: number) => void; }