import type { UseFormReturn } from 'react-hook-form' import { FormControl, FormField, Input } from 'ui' import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' import type { DestinationPanelSchemaType } from './DestinationForm.schema' type DestinationNameInputProps = { form: UseFormReturn } export const DestinationNameInput = ({ form }: DestinationNameInputProps) => { return ( ( )} /> ) }