BlueWallet/components/BlurredBalanceView.tsx

28 lines
609 B
TypeScript
Raw Normal View History

2024-03-31 12:33:25 -04:00
import React from 'react';
import { StyleSheet, View } from 'react-native';
2024-06-12 12:46:44 -04:00
import { Icon } from '@rneui/themed';
2024-03-31 12:33:25 -04:00
export const BlurredBalanceView = () => {
return (
<View style={styles.container}>
<View style={styles.background} />
2024-03-31 12:33:25 -04:00
<Icon name="eye-slash" type="font-awesome" color="#FFFFFF" />
</View>
);
};
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
borderRadius: 9,
},
background: {
backgroundColor: 'rgba(255, 255, 255, 0.5)',
height: 30,
width: 110,
marginRight: 8,
borderRadius: 9,
},
2024-03-31 12:33:25 -04:00
});