123456789101112131415161718192021 |
- import { StyleSheet } from 'react-native';
- import { Colors } from '../../../../theme';
- export const styles = StyleSheet.create({
- clusterContainer: {
- height: 28,
- width: 28,
- backgroundColor: Colors.TEXT_GRAY,
- borderRadius: 14,
- borderWidth: 2,
- borderColor: Colors.WHITE,
- alignItems: 'center',
- justifyContent: 'center',
- },
- text: {
- color: Colors.WHITE,
- textAlign: 'center',
- fontSize: 14,
- fontWeight: '600',
- },
- });
|