mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
/* eslint react/prop-types: "off", react-native/no-inline-styles: "off" */
|
|
import { useTheme } from '@react-navigation/native';
|
|
import { StyleSheet, View } from 'react-native';
|
|
import { Icon } from 'react-native-elements';
|
|
import React from 'react';
|
|
|
|
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="kebab-horizontal"
|
|
size={100}
|
|
type="octicon"
|
|
color={colors.foregroundColor}
|
|
iconStyle={{ left: 0, top: 25 }}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|