coinforbarter-react-native
Version:
CoinForBarter ReactNative Library - Integrate cryptocurrency payments for goods and services in your Mobile App
45 lines (44 loc) • 888 B
JavaScript
const Valid = {
backgroundColor: '#E9BE00',
borderRadius: 3,
shadowColor: 'rgba(0, 0, 0, 0.8)',
shadowOffset: {
width: -1,
height: 2,
},
shadowOpacity: 2,
shadowRadius: 3,
elevation: 5,
color: '#3D0040',
};
const Invalid = {
backgroundColor: '#CACACA',
borderRadius: 3,
shadowColor: 'rgba(0, 0, 0, 0.8)',
shadowOffset: {
width: -1,
height: 2,
},
shadowOpacity: 2,
shadowRadius: 3,
elevation: 5,
color: '#3D0040',
};
const Red = {
backgroundColor: 'red',
borderRadius: 3,
shadowColor: 'rgba(0, 0, 0, 0.8)',
shadowOffset: {
width: -1,
height: 2,
},
shadowOpacity: 2,
shadowRadius: 3,
elevation: 5,
color: 'white',
};
export const CoinForBarterButton = {
Invalid,
Valid,
Red,
};