import { UseFormReturn } from 'react-hook-form' import Panel from 'components/ui/Panel' import { FormControl_Shadcn_, FormField_Shadcn_, Input_Shadcn_ } from 'ui' import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' import { CreateProjectForm } from './ProjectCreation.schema' interface CustomPostgresVersionInputProps { form: UseFormReturn } export const CustomPostgresVersionInput = ({ form }: CustomPostgresVersionInputProps) => { return ( ( )} /> ) }