@react-native-utils/forminput
Version:
A comprehensive React Native form input component with date selection, validation, and customizable styling.
21 lines (18 loc) • 664 B
JavaScript
;
/**
* Combined interface for all props - traditional approach (exposes all props individually)
* This approach is maintained for backward compatibility
*/
/**
* Modern grouped approach (significantly reduces prop signature)
* Organizes props into logical groups for better readability and maintainability
*/
// Re-export all the individual types for consumers
export * from './types/styleProps';
export * from './types/textProps';
export * from './types/iconProps';
export * from './types/datePickerProps';
export * from './types/coreProps';
export * from './types/componentProps';
export {};
//# sourceMappingURL=formInputProps.js.map