23 lines
416 B
TypeScript
23 lines
416 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
button: {
|
|
backgroundColor: '#050505',
|
|
borderRadius: 12,
|
|
height: 56,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
width: '100%',
|
|
marginVertical: 12,
|
|
},
|
|
text: {
|
|
color: '#ffffff',
|
|
fontSize: 16,
|
|
fontWeight: 'bold',
|
|
letterSpacing: 1.2,
|
|
},
|
|
disabled: {
|
|
opacity: 0.7,
|
|
},
|
|
});
|