Skip to content

Commit

Permalink
Merge branch 'fix/address-ui' into tmp/20241217
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 committed Dec 17, 2024
2 parents 147dc46 + cf5ae0d commit 95e2ff4
Showing 1 changed file with 12 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
import React from 'react';
import { Platform, StyleProp, StyleSheet, View, ViewStyle } from 'react-native';
import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native';
import { useTheme2024 } from '@/hooks/theme';
import { createGetStyles2024 } from '@/utils/styles';

const getStyle = createGetStyles2024(({ colors2024 }) => ({
shadowView: {
...Platform.select({
ios: {
shadowColor: colors2024['neutral-black'],
shadowOffset: {
width: 0,
height: 4,
},
shadowOpacity: 0.06,
shadowRadius: 10,
elevation: 8,
},
android: {
borderWidth: 1,
borderRadius: 30,
borderColor: colors2024['neutral-line'],
},
}),
borderWidth: 1,
borderRadius: 30,
borderColor: colors2024['neutral-line'],
shadowColor: colors2024['neutral-black'],
shadowOffset: {
width: 0,
height: 4,
},
shadowOpacity: 0.06,
shadowRadius: 10,
elevation: 8,
},
}));

Expand Down

0 comments on commit 95e2ff4

Please sign in to comment.