import { StyleSheet } from "react-native";

export default StyleSheet.create({
  container: {
    flex: 1,
    height: 40,
    borderWidth: 1,
    borderRadius: 8,
    alignItems: "center",
    justifyContent: "center",
    borderColor: "#839AB1",
  },
  textStyle: {
    fontSize: 15,
    color: "#839AB1",
    fontWeight: "600",
  },
});
