import {StyleSheet} from 'react-native';

export default StyleSheet.create({
  wrapper: {
    marginVertical: 10,
  },
  field: {
    flexDirection: 'row',
    alignItems: 'center',
    gap: 5,
    marginVertical: 3,
    marginHorizontal: 5,
  },
  icon: {
    marginRight: 5,
    width: 24,
    height: 24,
  },
  label: {
    flexShrink: 1,
  },
});
