export function FormControl()

in src/components/ActionDetail/FormControl.tsx [37:48]


export function FormControl({ label, name, noPrepend, onChange, value, ...rest }: IFormControl) {
  return (
    <EuiFormRow label={label ?? 'Command'}>
      <EuiFieldText
        onChange={onChange}
        prepend={noPrepend === true ? undefined : name}
        value={value}
        {...rest}
      />
    </EuiFormRow>
  );
}