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

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