11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const getStyles = (colors: any) =>
|
|
StyleSheet.create({
|
|
divider: {
|
|
width: '100%',
|
|
backgroundColor: colors.divider,
|
|
marginVertical: 12,
|
|
},
|
|
});
|