@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.
46 lines (34 loc) • 992 B
text/typescript
/**
* 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
*/
// ActivityIndicator Component
export * from "./ActivityIndicator";
// AppBar Component
export * from "./AppBar";
// Button Component
export * from "./Button";
// CheckBox Component
export * from "./CheckBox";
// FloatingLabelTextInput Component
export * from "./FloatingLabelTextInput";
// LoaderModal Component
export * from "./LoaderModal";
// Radio Component
export * from "./Radio";
// StatusBar Component
export * from "./StatusBar";
// Switch Component
export * from "./Switch";
// Text Component
export * from "./Text";
// TextInput Component
export * from "./TextInput";