Skip to content

Commit

Permalink
Modified style prop type to be TextStyle on Input component
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonortiz committed Aug 16, 2023
1 parent 1f3330c commit b698cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ interface InputProps {
onSubmitEditing?: () => void;
onFocus?: () => void;
onBlur?: () => void;
style?: StyleProp<TextStyle>;
style?: TextStyle;
}

const Input = React.forwardRef<TextInput, InputProps>(
Expand Down

0 comments on commit b698cdb

Please sign in to comment.