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.

15 lines (13 loc) 282 B
import { ReactNode } from "react"; export interface CardProps { title?: string; label?: string; cardTitle?: boolean; button?: boolean; children?: ReactNode; } export interface CardSectionProps { title?: string; icon?: boolean; onPress?: () => void; }