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

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