Skip to content

Commit

Permalink
making labelProps optional
Browse files Browse the repository at this point in the history
  • Loading branch information
cnilton committed Mar 14, 2022
1 parent fe6b484 commit 90fe640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-floating-label-input",
"description": "A simple and customizable React Native TextInput with it's placeholder always shown.",
"version": "1.3.12",
"version": "1.3.13",
"author": "Caio Nilton <cnilton>",
"main": "index.tsx",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export interface Props extends Omit<TextInputProps, 'secureTextEntry'> {
/** Set custom animation duration. Default 300 ms */
animationDuration?: number;
/** Label Props */
labelProps: TextProps;
labelProps?: TextProps;
}

export interface SetGlobalStyles {
Expand Down

0 comments on commit 90fe640

Please sign in to comment.