UNPKG

@fluentui/react-northstar

Version:
15 lines (14 loc) 779 B
import { CheckboxProps } from '../Checkbox/Checkbox'; import { FormFieldBaseProps } from './utils/formFieldBase'; interface FormCheckboxOwnProps extends Omit<CheckboxProps, 'accessibility'> { } declare type SelectedFormFieldCustomProps = Omit<FormFieldBaseProps, 'control' | 'styles' | 'accessibility' | 'design' | 'variables' | 'label'>; export interface FormCheckboxProps extends SelectedFormFieldCustomProps, FormCheckboxOwnProps { } export declare type FormCheckboxStylesProps = never; export declare const formCheckboxClassName = "ui-form__checkbox"; /** * An FormCheckbox renders a Checkbox wrapped by FormField. */ export declare const FormCheckbox: import("@fluentui/react-bindings").ComponentWithAs<"div", FormCheckboxProps & SelectedFormFieldCustomProps>; export {};