UNPKG

@geekyhawks/react-native-ui-components

Version:

A lightweight and reusable React Native UI components library with customizable Text, TextInput, FloatingLabelTextInput, Button, and more. Built with TypeScript, fully typed, and designed for easy integration into any React Native project.

14 lines 477 B
/** * TextInput Component Entry Point * * Re-exports the `TextInput` component and its props for easier imports. * This allows consumers to import from the component directory directly: * * Example: * import { TextInput, TextInputProps } from "@geekyhawks/react-native-ui-components"; * * Author: Geeky Hawks FZE LLC */ export { default as TextInput } from "./TextInput"; export type { Props as TextInputProps } from "./TextInput"; //# sourceMappingURL=index.d.ts.map