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.

18 lines (16 loc) 550 B
import { TextInputProps } from "react-native"; export type NInputProp = TextInputProps & { Size?: "small" | "medium" | "large" | "full" | "fit"; Label?: string; Hint?: string; State?: "Default" | "Active" | "Correct" | "ViewOnly" | "Loading" | "Disabled" | "Incorrect"; curved?: boolean }; export type AInputProp = TextInputProps & { Size?: "small" | "medium" | "large" | "full" | "fit"; Label?: string; Hint?: string; State?: "Default" | "Error" | "Success" | "Loading"; input?: string[]; curved?: boolean };