Skip to content

Commit 90fe640

Browse files
author
cnilton
committed
making labelProps optional
1 parent fe6b484 commit 90fe640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-floating-label-input",
33
"description": "A simple and customizable React Native TextInput with it's placeholder always shown.",
4-
"version": "1.3.12",
4+
"version": "1.3.13",
55
"author": "Caio Nilton <cnilton>",
66
"main": "index.tsx",
77
"private": false,

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export interface Props extends Omit<TextInputProps, 'secureTextEntry'> {
103103
/** Set custom animation duration. Default 300 ms */
104104
animationDuration?: number;
105105
/** Label Props */
106-
labelProps: TextProps;
106+
labelProps?: TextProps;
107107
}
108108

109109
export interface SetGlobalStyles {

0 commit comments

Comments
 (0)