Files
supabase/apps/studio/components/interfaces/ProjectCreation/ProjectNameInput.tsx
Gildas Garcia 0facd341a6 chore: remove UI form components _Shadcn_ suffix (#45212)
## Problem

We used to have a `_Shadcn_` suffix for all the shadcn form components
because we also had `formik` form components.
This is not needed anymore.

## Solution

- Remove the suffix
- Update all usages
2026-04-24 12:14:15 +02:00

29 lines
846 B
TypeScript

import { UseFormReturn } from 'react-hook-form'
import { FormControl, FormField, Input_Shadcn_ } from 'ui'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
import { CreateProjectForm } from './ProjectCreation.schema'
import Panel from '@/components/ui/Panel'
interface ProjectNameInputProps {
form: UseFormReturn<CreateProjectForm>
}
export const ProjectNameInput = ({ form }: ProjectNameInputProps) => {
return (
<Panel.Content>
<FormField
control={form.control}
name="projectName"
render={({ field }) => (
<FormItemLayout label="Project name" layout="horizontal">
<FormControl>
<Input_Shadcn_ {...field} placeholder="Project name" />
</FormControl>
</FormItemLayout>
)}
/>
</Panel.Content>
)
}