Skip to content

Commit

Permalink
Merge pull request #142 from galio-org/dev
Browse files Browse the repository at this point in the history
v0.6.3
  • Loading branch information
palingheorghe authored Oct 15, 2019
2 parents 3284291 + 8b19b90 commit 1842df9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "galio-framework",
"main": "src/index.js",
"version": "0.6.2",
"version": "0.6.3",
"files": [
"src/"
],
Expand Down
4 changes: 2 additions & 2 deletions src/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function Input({
styles.inputText,
color && { color },
];

const iconInstance = icon ? (
<Icon
name={icon}
Expand All @@ -64,7 +64,7 @@ function Input({
);

const viewPassElement = password && viewPass && (
<TouchableOpacity style={{ marginLeft: 2 }} onPress={() => setIsPassword(password)}>
<TouchableOpacity style={{ marginLeft: 2 }} onPress={() => setIsPassword(!isPassword)}>
<Icon
size={iconSize || theme.SIZES.BASE * 1.0625}
color={iconColor || theme.COLORS.BLACK}
Expand Down
1 change: 0 additions & 1 deletion src/Text.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ function Typography({
italic,
center,
children,
style,
styles,
theme,
...rest
Expand Down

0 comments on commit 1842df9

Please sign in to comment.