import { StyleSheet } from 'react-native'; import { Colors } from '../Consts'; export default StyleSheet.create({ container: { width: 38, height: 24, borderRadius: 20, justifyContent: 'center', paddingHorizontal: 4, }, circle: { width: 14, height: 14, borderRadius: 8, alignItems: 'center', justifyContent: 'center', }, circleSmall: { width: 6, height: 6, borderRadius: 4, }, debugBaseLine: { borderWidth: 1, borderColor: Colors.green_06 }, });