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.

24 lines 759 B
/** * Components Entry Point * * Re-exports all UI components and their prop types from the library. * This allows consumers to import components directly from the package root * without needing to know the internal folder structure. * * Example: * import { Button, TextInput, FloatingLabelTextInput, Text } from "@geekyhawks/react-native-ui-components"; * * Author: Geeky Hawks FZE LLC */ export * from "./ActivityIndicator"; export * from "./AppBar"; export * from "./Button"; export * from "./CheckBox"; export * from "./FloatingLabelTextInput"; export * from "./LoaderModal"; export * from "./Radio"; export * from "./StatusBar"; export * from "./Switch"; export * from "./Text"; export * from "./TextInput"; //# sourceMappingURL=index.d.ts.map