BlueWallet/screen/wallets/xpub.styles.ts
Marcos Rodriguez Velez 8dee082001
REF: XPub screen to TSX
2024-02-06 20:10:33 -04:00

29 lines
534 B
TypeScript

import { StyleSheet } from 'react-native';
import { useTheme } from '../../components/themes';
export const styles = StyleSheet.create({
root: {
flex: 1,
paddingTop: 20,
},
container: {
alignItems: 'center',
flex: 1,
justifyContent: 'center',
},
share: {
alignSelf: 'center',
width: '40%',
},
});
export const useDynamicStyles = () => {
const { colors } = useTheme();
return StyleSheet.create({
root: {
backgroundColor: colors.elevated,
},
// More properties
});
};