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.

21 lines (19 loc) 670 B
import { PressableProps } from "react-native"; export type ButtonProps = PressableProps&{ label: string; variant?: "primary" | "secondary"; size?: "small" | "medium" | "large"; icon?: "right" | "left" ; state?: "default" | "pressed" | "hover" | "disabled" | "loading"; disabled?: boolean; background?: string | null; }; export type TypeDocsProps = PressableProps&{ icon?: "left" | "right"; buttonLabel?: string; label?: string; size?: "small" | "medium" | "large"; state?: "default" | "pressed" | "hover" | "disabled" | "loading"; disabled?: boolean; background?: string | null; };