style.js 304 Bytes
import { StyleSheet } from 'react-native'
import { merge } from 'ramda'

import styles, { colors } from '../../common/styles'

export default merge(StyleSheet.create({
  distribute: {
    justifyContent: 'space-evenly',
  },
  btn: {
    backgroundColor: colors.primary,
    margin: 10,
  },
}), styles)