rharuow-ds
Version:
Modern React Design System with 20 components and auto color system. Define only 2 colors (primary/secondary) and get automatic variations (hover, light, dark) with proper text contrast (WCAG AA). Includes: Table, Card, Button, Chip, Pagination, Input, Te
20 lines (19 loc) • 588 B
TypeScript
import React from "react";
export interface BottomTabItem {
id: string;
label: React.ReactNode;
icon?: React.ReactNode;
badge?: React.ReactNode;
disabled?: boolean;
}
export interface BottomTabNavigatorProps extends React.HTMLAttributes<HTMLElement> {
items: BottomTabItem[];
value?: string;
defaultValue?: string;
onValueChange?: (value: string) => void;
}
/**
* BottomTabNavigator
* Mobile-only bottom navigation (hidden on md+), useful as a persistent app navigator.
*/
export declare const BottomTabNavigator: React.FC<BottomTabNavigatorProps>;