UNPKG

@octopusdeploy/design-system-components

Version:
11 lines (10 loc) 227 B
export interface FormFieldProps<T> { /** * The value of the form field. */ value: T; /** * The action to perform when the form control field is changed. */ onChange: (newValue: T) => void; }