import { StyleSheet } from 'react-native'; import { Radius, Colors } from '../Consts'; export default StyleSheet.create({ large: { width: 48, height: 48, borderRadius: Radius.XL, justifyContent: 'center', alignItems: 'center', }, small: { width: 40, height: 40, borderRadius: Radius.XL, justifyContent: 'center', alignItems: 'center', }, debugBaseLine: { borderWidth: 1, borderColor: Colors.green_06 }, });