UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

19 lines (17 loc) 580 B
import { TextStyle, ViewStyle } from "react-native"; import type { IAnimatedInput } from "@/components/vendor/reactICX/Input/types"; export interface InputFieldProps extends Partial<IAnimatedInput> { error?: string; containerStyle?: ViewStyle; prefix?: JSX.Element | null; suffix?: JSX.Element | null; onChange?: (text: string) => void; isSearch?: boolean; inputColorWhenDisabled?: string; inputStyle?: TextStyle; hintText?: string; label?: string; isPlaceholderDotsHidden?: boolean; isTextAreaInput?: boolean; placeholder?: string; }