style.js
463 Bytes
import { StyleSheet } from 'react-native'
import { merge } from 'ramda'
import styles, { colors } from '../../common/styles'
export default merge(StyleSheet.create({
view: {
alignItems: 'stretch'
},
nombreUsuario: {
fontSize: 14,
color: colors.muted,
fontWeight: 'bold',
},
fechaSolicitud: {
fontSize: 14,
color: colors.muted,
},
cardFooter: {
justifyContent: 'space-between',
flexDirection: 'row'
},
}), styles)