import {StyleSheet} from 'react-native';

const styles = StyleSheet.create({
  mainContainer: {
    flexDirection: 'column',
    width: '100%',
    height: 40,
  },
  numberContainer: {
    alignSelf: 'center',
    position: 'absolute',
    top: 15,
  },
  textStyle: {
    textAlign: 'center',
    alignSelf: 'center',
    width: '100%',
  },
});

export default styles;
