/// import { TextInputProps as RNTextInputProps } from "react-native"; import { BorderPropsType, SpacingPropsType, RoundedPropsType } from "../../theme"; export interface InputProps extends RNTextInputProps, BorderPropsType, SpacingPropsType, RoundedPropsType { h?: number; w?: number; bg?: string; color?: string; loading?: boolean; loaderSize?: number | string; loaderColor?: string; shadow?: number; shadowColor?: string; focusBorderColor?: string; minW?: number | string; minH?: number | string; suffix?: React.ReactNode; prefix?: React.ReactNode; }