@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
12 lines (11 loc) • 529 B
TypeScript
import React from 'react';
import { ICheckboxStandAlone } from './types/checkbox';
/**
* @description
* Checkbox component is a input component that can be used to select one or more options from a list of options.
* It can be used to create a list of options that can be selected.
* @param {React.PropsWithChildren<ICheckboxStandAlone>} props
* @returns {JSX.Element}
* @constructor
*/
export declare const CheckboxStandAlone: React.ForwardRefExoticComponent<ICheckboxStandAlone & React.RefAttributes<HTMLInputElement>>;