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

22 lines
365 B
TypeScript

import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
button: {
paddingVertical: 4,
},
row: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
text: {
color: '#9e9e9e',
fontSize: 14,
},
highlight: {
color: '#cd9355',
fontWeight: '600',
fontSize: 14,
},
});