UNPKG

formik-pf

Version:

A UI library that provides formik bindings with PF components.

10 lines (9 loc) 298 B
import { FormGroupProps, ValidatedOptions } from '@patternfly/react-core'; export type FieldProps = { name: string; isDisabled?: boolean; dataTest?: string; helperText?: string; helperTextInvalid?: string; validated?: ValidatedOptions; } & Omit<FormGroupProps, 'children'>;