2026-06-30 12:47:44 +05:30

25 lines
545 B
TypeScript

import { StyleSheet } from 'react-native';
import { typography } from '@theme';
export const getStyles = (colors: any) => StyleSheet.create({
button: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
borderWidth: 1,
borderColor: colors.border,
borderRadius: 12,
height: 56,
flex: 1,
backgroundColor: colors.cardBg,
},
icon: {
marginRight: 8,
},
text: {
fontSize: typography.fontSize.md,
fontWeight: typography.fontWeight.semibold,
color: colors.text,
},
});