mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
39 lines
858 B
JavaScript
39 lines
858 B
JavaScript
import React from 'react';
|
|
import { StyleSheet, View } from 'react-native';
|
|
import { Icon } from 'react-native-elements';
|
|
import { useTheme } from '@react-navigation/native';
|
|
|
|
const styles = StyleSheet.create({
|
|
boxIncoming: {
|
|
position: 'relative',
|
|
},
|
|
ball: {
|
|
width: 30,
|
|
height: 30,
|
|
borderRadius: 15,
|
|
},
|
|
icon: {
|
|
left: 0,
|
|
top: 7,
|
|
},
|
|
});
|
|
|
|
const TransactionPendingIcon = props => {
|
|
const { colors } = useTheme();
|
|
const stylesHook = StyleSheet.create({
|
|
ball: {
|
|
backgroundColor: colors.buttonBackgroundColor,
|
|
},
|
|
});
|
|
|
|
return (
|
|
<View style={styles.boxIncoming}>
|
|
<View style={[styles.ball, stylesHook.ball]}>
|
|
<Icon name="more-horiz" type="material" size={16} color={colors.foregroundColor} iconStyle={styles.icon} />
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default TransactionPendingIcon;
|