@geekyhawks/react-native-ui-components
Version:
Lightweight, reusable React Native UI components with built-in theming — including Text, TextInput, FloatingLabelTextInput, Button, and more. Fully typed with TypeScript and easy to integrate into any project.
15 lines (13 loc) • 444 B
text/typescript
/**
* 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";