We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b75ced commit 4c34afcCopy full SHA for 4c34afc
src/DateTimePicker.tsx
@@ -99,7 +99,11 @@ type DateTimePickerProps = {
99
value?: LooseValue;
100
yearAriaLabel?: string;
101
yearPlaceholder?: string;
102
-};
+} & Omit<
103
+ React.ComponentPropsWithoutRef<typeof Calendar>,
104
+ 'className' | 'maxDetail' | 'minDetail' | 'onChange'
105
+> &
106
+ Omit<React.ComponentPropsWithoutRef<typeof Clock>, 'value'>;
107
108
export default function DateTimePicker(props: DateTimePickerProps) {
109
const {
0 commit comments