2026-07-01 09:55:55 +05:30

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,
},
});