Skip to content

Commit

Permalink
feat: added type "datetime-local" to TextInput fields
Browse files Browse the repository at this point in the history
  • Loading branch information
coderwelsch committed Nov 6, 2024
1 parent ea81b00 commit 5e1804e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/form-field/text-input/text-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const formFieldGroupStyles = classNames(
);

export interface TextInputProps extends React.ComponentPropsWithoutRef<"input"> {
type?: "text" | "password" | "email" | "date";
type?: "text" | "password" | "email" | "date" | "datetime-local";
autoSelect?: boolean;
ariaDescribedBy?: string;
LeftIcon?: React.ElementType;
Expand Down

0 comments on commit 5e1804e

Please sign in to comment.