import React from 'react'; import { ImageBackground, StyleSheet, View } from 'react-native'; import { Icon } from 'react-native-elements'; export const BlurredBalanceView = () => { return ( {/* @ts-ignore: We just want the blur effect. No source prop needed */} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', borderRadius: 9 }, background: { backgroundColor: '#FFFFFF', opacity: 0.5, height: 30, width: 110, marginRight: 8, borderRadius: 9 }, });