import type { ViewStyle } from 'react-native'; const justify = { center: { justifyContent: 'center', }, start: { justifyContent: 'flex-start', }, end: { justifyContent: 'flex-end', }, between: { justifyContent: 'space-between', }, around: { justifyContent: 'space-around', }, evenly: { justifyContent: 'space-evenly', }, } satisfies Record; export default justify;