Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stevdza-san authored Aug 31, 2023
1 parent 803730a commit 1f73caa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ BSInput(
BSInput(
value = inputValue,
label = "Email Address",
onValueChange = {},
floating = true
floating = true,
onValueChange = {}
)
```

Expand All @@ -159,10 +159,10 @@ BSInput(
value = inputValue,
label = "Email Address",
placeholder = "Type here",
onValueChange = {},
validation = InputValidation(
isValid = true
)
),
onValueChange = {}
)
```

Expand All @@ -173,10 +173,10 @@ BSInput(
value = inputValue,
label = "Email Address",
placeholder = "Type here",
onValueChange = {},
validation = InputValidation(
isInvalid = true
)
),
onValueChange = {}
)
```

Expand All @@ -187,8 +187,8 @@ BSInput(
value = inputValue,
label = "Email Address",
placeholder = "Type here",
onValueChange = {},
disabled = true
disabled = true,
onValueChange = {}
)
```

Expand Down

0 comments on commit 1f73caa

Please sign in to comment.