import { StyleSheet, TextStyle, ViewStyle } from "react-native"; import { Colors } from "../../../Utils/index"; interface IStyles { container: ViewStyle; text: TextStyle; } export const styles = (containerBackgroundColor?: string) => StyleSheet.create({ container: { backgroundColor: containerBackgroundColor ? containerBackgroundColor : Colors.alabaster, flex: 1, flexDirection: "row", width: "100%", }, text: { fontSize: 17, }, });