import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
  mainViewStyle: {
    borderRadius: 20,
  },
  customRatingBarStyle: {
    flexDirection: "row",
    // justifyContent: 'center',
    gap: 8,
    paddingVertical: 4,
  },
  ratingTextStyle: {
    fontSize: 12,
    fontStyle: "normal",
    fontWeight: "400",
    lineHeight: 16,
    color: "#939393",
    textAlign: "center",
  },
  textViewStyle: {
    marginTop: 8,
  },
  ImageViewStyle: {},
});
