Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Input: make forwardedRef optional
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Feb 19, 2022
1 parent f654675 commit de3c0bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/inputs/basic/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type InputProps = {
inputStyles?: SharedProps
readOnly?: boolean
autoComplete?: AutocompleteValues
forwardedRef: React.Ref<HTMLInputElement>
forwardedRef?: React.Ref<HTMLInputElement>
} & React.HTMLProps<HTMLInputElement>

export type InputResponseType = 'error' | 'warning' | 'success' | 'none'
Expand Down

0 comments on commit de3c0bb

Please sign in to comment.