lbry-android-sdk/app/src/styles/fileDownloadButton.js
2018-12-13 00:15:29 +01:00

20 lines
No EOL
416 B
JavaScript

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