) => {
const formData = new FormData();
@@ -117,19 +117,17 @@ export const AddCredentialsForm = ({
className="flex flex-col space-y-4"
>
-
+
{providerType === "aws" && (
<>
+
+
+ Connect via Credentials
+
+
+ Please provide the information for your AWS credentials.
+
+
>
)}
+ Name (Optional)
+
{
label?: string;
labelPlacement?: "inside" | "outside";
variant?: "flat" | "bordered" | "underlined" | "faded";
+ size?: "sm" | "md" | "lg";
type?: string;
placeholder?: string;
password?: boolean;
@@ -29,6 +30,7 @@ export const CustomInput = ({
labelPlacement = "inside",
placeholder,
variant = "bordered",
+ size = "md",
confirmPassword = false,
password = false,
isRequired = true,
@@ -95,6 +97,7 @@ export const CustomInput = ({
placeholder={inputPlaceholder}
type={inputType}
variant={variant}
+ size={size}
isInvalid={isInvalid}
endContent={endContent}
{...field}