16 lines
413 B
TypeScript
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,
|
|
},
|
|
}); |