formik-material-ui
Version:
[](https://travis-ci.org/stackworx/formik-material-ui) [](./LICENSE) [ • 463 B
TypeScript
import * as React from 'react';
import { SwitchProps as MuiSwitchProps } from '@material-ui/core/Switch';
import { FieldProps } from 'formik';
export interface SwitchProps extends FieldProps, Omit<MuiSwitchProps, 'form' | 'name' | 'onChange' | 'value' | 'defaultChecked'> {
}
export declare const fieldToSwitch: ({ field, form: { isSubmitting }, disabled, ...props }: SwitchProps) => MuiSwitchProps;
export declare const Switch: React.ComponentType<SwitchProps>;