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.

25 lines 1.25 kB
"use strict"; /** * Radio Component Entry Point * * Re-exports the `Radio` component, its props, and related utilities for easier imports. * This allows consumers to import everything related to radio buttons * directly from the component directory: * * Example: * import { Radio, RadioProps, RadioGroup, RadioGroupProps } 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.useRadioGroupContext = exports.RadioGroup = exports.Radio = void 0; var Radio_1 = require("./Radio"); Object.defineProperty(exports, "Radio", { enumerable: true, get: function () { return __importDefault(Radio_1).default; } }); var RadioGroup_1 = require("./RadioGroup"); Object.defineProperty(exports, "RadioGroup", { enumerable: true, get: function () { return RadioGroup_1.RadioGroup; } }); var RadioContext_1 = require("./RadioContext"); Object.defineProperty(exports, "useRadioGroupContext", { enumerable: true, get: function () { return RadioContext_1.useRadioGroupContext; } }); //# sourceMappingURL=index.js.map