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.

13 lines (12 loc) 296 B
import { ReactNode } from 'react'; export interface IOSModalSheetProps { title: string; label: string; action?: 1 | 2 | 3; compact?: boolean; onClose?: () => void; onButtonPress?: () => void; onClipboard?: () => void; onForward?: () => void; children?: ReactNode; }