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.

8 lines 221 B
export interface SegmentedSwitchIOSProps { title: string; items: string[]; selectedIndex?: number | null; messageType?: 'none' | 'help' | 'error'; message?: string; onChange?: (index: number) => void; }