@wniemiec-component-reactnative/action-button
Version:
22 lines (20 loc) • 393 B
JavaScript
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
justifyContent: 'space-around',
alignItems: 'center'
},
title: {
fontSize: 18,
fontWeight: 'bold'
},
btn: {
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#e5810c',
borderRadius: 10,
height: 40,
paddingHorizontal: 10,
}
});