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.

23 lines 1.32 kB
"use strict"; /** * CheckBox Variants * * Re-exports base `SelectionControl` variants for use with the `CheckBox` component. * Defines default configurations for size and color options, including container * dimensions, indicator styling, and theming support for states such as primary, * secondary, and error. * * Developers can override existing variants or extend them with custom ones * via the `ThemeProvider`, ensuring consistent CheckBox styling across the app. * * Author: Geeky Hawks FZE LLC */ Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultCheckBoxSizeVariants = exports.defaultCheckBoxColorVariants = void 0; /** CheckBox Color Variants */ var SelectionControlVariants_1 = require("../../base/SelectionControl/SelectionControlVariants"); Object.defineProperty(exports, "defaultCheckBoxColorVariants", { enumerable: true, get: function () { return SelectionControlVariants_1.defaultSelectionControlColorVariants; } }); /** CheckBox Size Variants */ var SelectionControlVariants_2 = require("../../base/SelectionControl/SelectionControlVariants"); Object.defineProperty(exports, "defaultCheckBoxSizeVariants", { enumerable: true, get: function () { return SelectionControlVariants_2.defaultSelectionControlSizeVariants; } }); //# sourceMappingURL=CheckBoxVariants.js.map