2018-03-18 15:42:16 +01:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
const fileDownloadButtonStyle = StyleSheet.create({
|
2018-03-22 07:26:04 +01:00
|
|
|
container: {
|
2018-08-30 14:48:29 +02:00
|
|
|
paddingLeft: 32,
|
|
|
|
paddingRight: 32,
|
2018-03-22 07:26:04 +01:00
|
|
|
height: 36,
|
|
|
|
borderRadius: 18,
|
|
|
|
justifyContent: 'center',
|
|
|
|
backgroundColor: '#40c0a9',
|
|
|
|
},
|
|
|
|
text: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Medium',
|
2018-03-22 07:26:04 +01:00
|
|
|
color: '#ffffff',
|
|
|
|
fontSize: 14,
|
|
|
|
textAlign: 'center'
|
|
|
|
}
|
2018-03-18 15:42:16 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
export default fileDownloadButtonStyle;
|