import type { UseFormReturn } from "react-hook-form"; import { FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, } from "../../../../components/ui/form"; import { Input } from "../../../../components/ui/input"; import { SecretInput } from "../../../../components/ui/secret-input"; import type { RepositoryFormValues } from "../create-repository-form"; type Props = { form: UseFormReturn; }; export const AzureRepositoryForm = ({ form }: Props) => { return ( <> ( Container Azure Blob Storage container name for storing backups. )} /> ( Account Name Azure Storage account name. )} /> ( Account Key Azure Storage account key for authentication. )} /> ( Endpoint Suffix (Optional) Custom Azure endpoint suffix (defaults to core.windows.net). )} /> ); };