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.

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; }