formik_typescript_ui
Version:
[](https://www.npmjs.com/package/formik_typescript_ui) [](https://github.com/RominaManzano/formik_typescript_ui/blob/master/LICEN
16 lines (15 loc) • 472 B
TypeScript
import React from 'react';
import { FieldProps } from 'formik';
export interface RadioButtonProps {
className?: string | null;
classNameLabel?: string | null;
disabled?: boolean;
id: string;
label?: string | null;
labelStyle?: object;
name: string;
style?: object;
}
export declare type RenderRadioButton = (props: FieldProps) => React.ReactNode;
declare const RadioButtonField: React.FC<RadioButtonProps>;
export default RadioButtonField;