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.

18 lines 684 B
/** * 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 */ export { default as Radio } from "./Radio"; export type { Props as RadioProps } from "./Radio"; export { RadioGroup } from "./RadioGroup"; export type { RadioGroupProps } from "./RadioGroup"; export { useRadioGroupContext } from "./RadioContext"; //# sourceMappingURL=index.d.ts.map