@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.
26 lines • 1.26 kB
JavaScript
/**
* Switch Component Entry Point
*
* Re-exports the `Switch` component, its props, and related utilities
* for easier imports. This allows consumers to import everything
* related to Switch directly from the component directory.
*
* Example:
* import { Switch, SwitchProps, SwitchGroup, SwitchGroupProps }
* 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.useSwitchGroupContext = exports.SwitchGroup = exports.Switch = void 0;
var Switch_1 = require("./Switch");
Object.defineProperty(exports, "Switch", { enumerable: true, get: function () { return __importDefault(Switch_1).default; } });
var SwitchGroup_1 = require("./SwitchGroup");
Object.defineProperty(exports, "SwitchGroup", { enumerable: true, get: function () { return SwitchGroup_1.SwitchGroup; } });
var SwitchContext_1 = require("./SwitchContext");
Object.defineProperty(exports, "useSwitchGroupContext", { enumerable: true, get: function () { return SwitchContext_1.useSwitchGroupContext; } });
//# sourceMappingURL=index.js.map
;