@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.
21 lines (17 loc) • 697 B
text/typescript
/**
* CheckBox Component Entry Point
*
* Re-exports the `CheckBox` component, its props, and related utilities for easier imports.
* This allows consumers to import everything related to checkboxes
* directly from the component directory:
*
* Example:
* import { CheckBox, CheckBoxProps, CheckBoxGroup, CheckBoxGroupProps } from "@geekyhawks/react-native-ui-components";
*
* Author: Geeky Hawks FZE LLC
*/
export { default as CheckBox } from "./CheckBox";
export type { Props as CheckBoxProps } from "./CheckBox";
export { CheckBoxGroup } from "./CheckBoxGroup";
export type { CheckBoxGroupProps } from "./CheckBoxGroup";
export { useCheckBoxGroupContext } from "./CheckBoxContext";