BlueWallet/components/TransactionPendingIconBig.js
Marcos Rodriguez Velez 8641f94612
REF: Use our useTheme
2023-10-23 21:28:44 -04:00

34 lines
937 B
JavaScript

/* eslint react/prop-types: "off", react-native/no-inline-styles: "off" */
import { StyleSheet, View } from 'react-native';
import { Icon } from 'react-native-elements';
import React from 'react';
import { useTheme } from './themes';
export const TransactionPendingIconBig = props => {
const { colors } = useTheme();
const stylesBlueIconHooks = StyleSheet.create({
ball: {
backgroundColor: colors.buttonBackgroundColor,
},
ball2: {
width: 150,
height: 150,
borderRadius: 75,
},
boxIncoming: {
position: 'relative',
},
});
return (
<View {...props}>
<View style={stylesBlueIconHooks.boxIncoming}>
<View style={[stylesBlueIconHooks.ball2, stylesBlueIconHooks.ball]}>
<Icon {...props} name="more-horiz" type="material" size={100} color={colors.foregroundColor} iconStyle={{ left: 0, top: 25 }} />
</View>
</View>
</View>
);
};