ridecabrider
Version:
RideCab Customer Ride Booking All Over Cyprus, Live Driver Tracking, Wallet, Payment Methods
25 lines (24 loc) • 572 B
JavaScript
import { StyleSheet } from 'react-native';
import { theme } from './theme';
export default StyleSheet.create({
buttonBlue:{
height:50,
width:160,
backgroundColor:theme.BUTTON_BLUE,
},
buttonYellow:{
height:50,
width:160,
backgroundColor:theme.BUTTON_YELLOW,
},
buttonPrimary:{
height:50,
width:160,
backgroundColor:theme.BUTTON_PRIMARY
},
buttonText:{
fontFamily: theme.FONT_ONE,
fontSize:theme.FONT_SIZE_BUTTONS,
color:theme.BUTTON_TEXT
}
});