import { StyleSheet } from 'react-native';

export const Style = StyleSheet.create({
  row: {
    flexDirection: "row",
    alignItems: "center",
  },
  center: {
    alignItems: "center",
    justifyContent: "center",
  },
  iconStyle: {
    height: 24,
    width: 24,
    margin: 8,
  },
  buttonStyle: {
    padding: 16,
    margin: 8,
    borderRadius: 8,
    alignItems: "center"
  }
});
