28 lines
542 B
TypeScript
28 lines
542 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { typography } from '@theme';
|
|
|
|
export const getStyles = (colors: any) => StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: colors.background,
|
|
paddingTop: 8,
|
|
},
|
|
list: {
|
|
paddingBottom: 24,
|
|
},
|
|
empty: {
|
|
alignItems: 'center',
|
|
paddingTop: 60,
|
|
},
|
|
emptyIcon: {
|
|
fontSize: 48,
|
|
marginBottom: 12,
|
|
},
|
|
emptyText: {
|
|
fontSize: typography.fontSize.md,
|
|
color: colors.textSecondary,
|
|
textAlign: 'center',
|
|
paddingHorizontal: 40,
|
|
},
|
|
});
|