UNPKG

@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) 404 B
/** * Text Component Entry Point * * Re-exports the `Text` component and its props for easier imports. * This allows consumers to import from the component directory directly: * * Example: * import { Text, TextProps } from "@geekyhawks/react-native-ui-components"; * * Author: Geeky Hawks FZE LLC */ export { default as Text } from "./Text"; export type { Props as TextProps } from "./Text";