lbry-android/app/src/styles/fileDownloadButton.js
2018-05-24 23:47:55 +01:00

19 lines
No EOL
391 B
JavaScript

import { StyleSheet } from 'react-native';
const fileDownloadButtonStyle = StyleSheet.create({
container: {
width: 160,
height: 36,
borderRadius: 18,
justifyContent: 'center',
backgroundColor: '#40c0a9',
},
text: {
fontFamily: 'Metropolis-Medium',
color: '#ffffff',
fontSize: 14,
textAlign: 'center'
}
});
export default fileDownloadButtonStyle;