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

12 lines (10 loc) 268 B
import { ReactNode } from "react"; type ActionType = "none" | "primary" | "secondary"; export interface EmptyStateProps { message: string; description?: string; label?: string; onPress?: () => void; action?: ActionType; children?: ReactNode; }