styles.tsx 466 B

123456789101112131415161718192021
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../../../theme';
  3. export const styles = StyleSheet.create({
  4. clusterContainer: {
  5. height: 28,
  6. width: 28,
  7. backgroundColor: Colors.TEXT_GRAY,
  8. borderRadius: 14,
  9. borderWidth: 2,
  10. borderColor: Colors.WHITE,
  11. alignItems: 'center',
  12. justifyContent: 'center',
  13. },
  14. text: {
  15. color: Colors.WHITE,
  16. textAlign: 'center',
  17. fontSize: 14,
  18. fontWeight: '600',
  19. },
  20. });