2021-08-26 22:38:30 +01:00
|
|
|
import React from 'react';
|
2024-05-20 10:54:13 +01:00
|
|
|
import { StyleSheet, View } from 'react-native';
|
2024-06-12 12:46:44 -04:00
|
|
|
import { Icon } from '@rneui/themed';
|
2024-05-20 10:54:13 +01:00
|
|
|
|
2023-10-23 21:28:44 -04:00
|
|
|
import { useTheme } from './themes';
|
2021-08-26 22:38:30 +01:00
|
|
|
|
2024-03-20 15:44:43 +00:00
|
|
|
export const TransactionPendingIconBig: React.FC = () => {
|
2021-08-26 22:38:30 +01:00
|
|
|
const { colors } = useTheme();
|
|
|
|
|
2024-03-20 15:44:43 +00:00
|
|
|
const hookStyles = StyleSheet.create({
|
2021-08-26 22:38:30 +01:00
|
|
|
ball: {
|
|
|
|
backgroundColor: colors.buttonBackgroundColor,
|
|
|
|
},
|
|
|
|
});
|
2024-03-20 15:44:43 +00:00
|
|
|
|
2021-08-26 22:38:30 +01:00
|
|
|
return (
|
2024-03-20 15:44:43 +00:00
|
|
|
<View>
|
|
|
|
<View style={styles.boxIncoming}>
|
|
|
|
<View style={[styles.ball, hookStyles.ball]}>
|
|
|
|
<Icon name="more-horiz" type="material" size={100} color={colors.foregroundColor} iconStyle={styles.iconStyle} />
|
2021-08-26 22:38:30 +01:00
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
2024-03-20 15:44:43 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
boxIncoming: {
|
|
|
|
position: 'relative',
|
|
|
|
},
|
|
|
|
ball: {
|
|
|
|
width: 150,
|
|
|
|
height: 150,
|
|
|
|
borderRadius: 75,
|
|
|
|
},
|
|
|
|
iconStyle: {
|
|
|
|
left: 0,
|
|
|
|
top: 25,
|
|
|
|
},
|
|
|
|
});
|