Skip to content

Commit

Permalink
fix props type
Browse files Browse the repository at this point in the history
  • Loading branch information
javadbat committed Nov 7, 2023
1 parent bde3af2 commit 90ae271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/JBDateInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export type JBDateInputProps = {
label?: string,
style?:string,
name?:string,
min?: string,
max?: string,
min: string | null | undefined,
max: string | null | undefined,
format?: string,
className?:string,
onKeyup?: (e:JBDateInputEventType<KeyboardEvent>)=>void,
Expand Down

0 comments on commit 90ae271

Please sign in to comment.