UNPKG

reactnativeepictrailsds

Version:

A modern, production-ready design system for React Native — featuring pre-styled, customizable components, state-based UI logic, theme support, and seamless integration with Tailwind, Expo, and TypeScript. Built for scalable mobile app development with ac

10 lines (9 loc) 218 B
type MessageType = 'none' | 'help' | 'error'; export interface TabsProps { label: string; placeholder?: string; value?: string; messageType?: MessageType; message?: string; onPress?: () => void; }