import { UseFormReturn } from 'react-hook-form' import { CloudProvider } from 'shared-data' import { FormField, Select, SelectContent, SelectGroup, SelectItem, SelectTrigger, SelectValue, } from 'ui' import { ComputeBadge } from 'ui-patterns' import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' import { sizes } from './ProjectCreation.constants' import { CreateProjectForm } from './ProjectCreation.schema' import { InlineLink } from '@/components/ui/InlineLink' import Panel from '@/components/ui/Panel' import { instanceSizeSpecs } from '@/data/projects/new-project.constants' import { getCloudProviderArchitecture } from '@/lib/cloudprovider-utils' import { DOCS_URL } from '@/lib/constants' interface ComputeSizeSelectorProps { form: UseFormReturn } export const ComputeSizeSelector = ({ form }: ComputeSizeSelectorProps) => { return ( (

The size for your dedicated database. You can change this later. Learn more about{' '} compute add-ons {' '} and{' '} compute billing .

} >
)} />
) }