UNPKG

formik-material-ui

Version:

[![Build Status](https://travis-ci.org/stackworx/formik-material-ui.svg?branch=master)](https://travis-ci.org/stackworx/formik-material-ui) [![license](https://badgen.now.sh/badge/license/MIT)](./LICENSE) [![Coverage Status](https://coveralls.io/repos/git

8 lines (7 loc) 430 B
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>;