22 lines
461 B
TypeScript
22 lines
461 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { colors, typography } from '@theme';
|
|
|
|
export const styles = StyleSheet.create({
|
|
button: {
|
|
backgroundColor: colors.primary,
|
|
height: 56,
|
|
borderRadius: 12,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
width: '100%',
|
|
},
|
|
disabled: {
|
|
opacity: 0.6,
|
|
},
|
|
text: {
|
|
color: colors.white,
|
|
fontSize: typography.fontSize.md,
|
|
fontWeight: typography.fontWeight.bold,
|
|
},
|
|
});
|