Temporal input components added

This commit is contained in:
2025-07-31 22:23:00 -04:00
parent f6f77c9d42
commit e1b3000121
8 changed files with 118 additions and 1 deletions

View File

@@ -149,3 +149,12 @@ export interface RadioListProps {
direction?: "vertical" | "horizontal";
children?: React.ReactNode;
}
export interface DateInputProps {
id?: string;
className?: string;
defaultValue?: Date;
value?: Date;
onChange?: (newValue: Date) => void;
}