@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.
51 lines • 1.97 kB
JavaScript
;
/**
* 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
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
// ActivityIndicator Component
__exportStar(require("./ActivityIndicator"), exports);
// AppBar Component
__exportStar(require("./AppBar"), exports);
// Button Component
__exportStar(require("./Button"), exports);
// CheckBox Component
__exportStar(require("./CheckBox"), exports);
// FloatingLabelTextInput Component
__exportStar(require("./FloatingLabelTextInput"), exports);
// LoaderModal Component
__exportStar(require("./LoaderModal"), exports);
// Radio Component
__exportStar(require("./Radio"), exports);
// StatusBar Component
__exportStar(require("./StatusBar"), exports);
// Switch Component
__exportStar(require("./Switch"), exports);
// Text Component
__exportStar(require("./Text"), exports);
// TextInput Component
__exportStar(require("./TextInput"), exports);
//# sourceMappingURL=index.js.map