@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
7 lines (6 loc) • 345 B
TypeScript
import React from 'react';
import type { ICheckboxWithLabelStandAlone } from './types/checkboxWithLabel';
declare const CheckboxWithLabelStandAlone: <V extends string | unknown>(props: ICheckboxWithLabelStandAlone<V> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => JSX.Element;
export { CheckboxWithLabelStandAlone };