UNPKG

formik-pf

Version:

A UI library that provides formik bindings with PF components.

10 lines (9 loc) 336 B
import React from 'react'; import { FieldProps } from '../types'; type RadioButtonFieldProps = Omit<FieldProps, 'ref'> & { value: React.ReactText; description?: React.ReactNode; onChange?: (value: React.ReactText) => void; }; declare const RadioButtonField: React.FC<RadioButtonFieldProps>; export default RadioButtonField;