sgcart/app/components/button/button.styles.ts
2026-07-03 13:10:46 +05:30

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,
},
});