diff --git a/src/components/form-field/text-input/text-input.tsx b/src/components/form-field/text-input/text-input.tsx index 13f3eb8a..e3e01b4b 100644 --- a/src/components/form-field/text-input/text-input.tsx +++ b/src/components/form-field/text-input/text-input.tsx @@ -16,7 +16,7 @@ const formFieldGroupStyles = classNames( ); export interface TextInputProps extends React.ComponentPropsWithoutRef<"input"> { - type?: "text" | "password" | "email"; + type?: "text" | "password" | "email" | "date"; autoSelect?: boolean; ariaDescribedBy?: string; LeftIcon?: React.ElementType;