native_convex_CRM/app/navigation/leadsStack.styles.ts
2026-07-24 13:15:31 +05:30

16 lines
413 B
TypeScript

import { Platform, StyleSheet } from "react-native";
export const getStyles = (colors: any) =>
StyleSheet.create({
drawerButton: {
width: 38,
height: 38,
borderRadius: 12,
justifyContent: 'center',
alignItems: 'center',
marginLeft: Platform.OS === 'ios' ? 0 : 0,
backgroundColor: colors.surface,
borderWidth: 1,
borderColor: colors.border,
},
});