diff --git a/app/containers/Passcode/Base/Button.js b/app/containers/Passcode/Base/Button.js
index 8f8f30362..79c8049c0 100644
--- a/app/containers/Passcode/Base/Button.js
+++ b/app/containers/Passcode/Base/Button.js
@@ -7,7 +7,7 @@ import { themes } from '../../../constants/colors';
import Touch from '../../../utils/touch';
const Button = ({
- text, disabled, theme, onPress
+ text, disabled, theme, onPress, del
}) => (
onPress && onPress(text)}
>
-
- {text}
-
+ {
+ del
+ ? (
+
+ del
+
+ )
+ : (
+
+ {text}
+
+ )
+ }
);
@@ -25,6 +35,7 @@ Button.propTypes = {
text: PropTypes.string,
theme: PropTypes.string,
disabled: PropTypes.bool,
+ del: PropTypes.bool,
onPress: PropTypes.func
};
diff --git a/app/containers/Passcode/Base/index.js b/app/containers/Passcode/Base/index.js
index 4740b4f5f..8cedad737 100644
--- a/app/containers/Passcode/Base/index.js
+++ b/app/containers/Passcode/Base/index.js
@@ -107,7 +107,7 @@ const Base = forwardRef(({
-
+
diff --git a/app/containers/Passcode/Base/styles.js b/app/containers/Passcode/Base/styles.js
index 1ff54b959..bfc9e60f6 100644
--- a/app/containers/Passcode/Base/styles.js
+++ b/app/containers/Passcode/Base/styles.js
@@ -6,8 +6,7 @@ export default StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
- alignItems: 'center',
- // width: '100%'
+ alignItems: 'center'
},
viewTitle: {
flexDirection: 'column',
@@ -50,12 +49,15 @@ export default StyleSheet.create({
fontSize: grid.unit * 2,
fontWeight: '200'
},
+ deleteText: {
+ fontSize: grid.unit * 1.2,
+ fontWeight: '200'
+ },
buttonCircle: {
alignItems: 'center',
justifyContent: 'center',
width: grid.unit * 4,
height: grid.unit * 4,
- backgroundColor: 'rgb(242, 245, 251)',
borderRadius: grid.unit * 2,
borderWidth: 1
},