@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 • 900 B
JavaScript
;
/**
* FloatingLabelTextInput Component Entry Point
*
* Re-exports the `FloatingLabelTextInput` component and its props for easier imports.
* This allows consumers to import from the component directory directly:
*
* Example:
* import { FloatingLabelTextInput, FloatingLabelTextInputProps } 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.FloatingLabelTextInput = void 0;
var FloatingLabelTextInput_1 = require("./FloatingLabelTextInput");
Object.defineProperty(exports, "FloatingLabelTextInput", { enumerable: true, get: function () { return __importDefault(FloatingLabelTextInput_1).default; } });
//# sourceMappingURL=index.js.map