18 lines
394 B
JavaScript
18 lines
394 B
JavaScript
|
import { StyleSheet } from 'react-native';
|
||
|
|
||
|
const fileDownloadButtonStyle = StyleSheet.create({
|
||
|
container: {
|
||
|
width: 120,
|
||
|
height: 36,
|
||
|
borderRadius: 18,
|
||
|
justifyContent: 'center',
|
||
|
backgroundColor: '#40c0a9',
|
||
|
},
|
||
|
text: {
|
||
|
color: '#ffffff',
|
||
|
fontSize: 13,
|
||
|
textAlign: 'center'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default fileDownloadButtonStyle;
|