formik-material-ui
Version:
[](https://travis-ci.org/stackworx/formik-material-ui) [](./LICENSE) [ • 430 B
TypeScript
import * as React from 'react';
import { FormControlLabelProps as MuiFormControlLabelProps } from '@material-ui/core/FormControlLabel';
import { CheckboxProps } from './Checkbox';
export interface CheckboxWithLabelProps extends CheckboxProps {
Label: Omit<MuiFormControlLabelProps, 'checked' | 'name' | 'onChange' | 'value' | 'inputRef'>;
}
export declare const CheckboxWithLabel: React.ComponentType<CheckboxWithLabelProps>;