@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.
20 lines • 783 B
JavaScript
;
/**
* 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
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextInput = void 0;
var TextInput_1 = require("./TextInput");
Object.defineProperty(exports, "TextInput", { enumerable: true, get: function () { return __importDefault(TextInput_1).default; } });
//# sourceMappingURL=index.js.map