import { ViewStyle, StyleSheet, Dimensions, ImageStyle, TextStyle, } from "react-native"; const { width: ScreenWidth } = Dimensions.get("screen"); interface Style { container: ViewStyle; iconImageStyle: ImageStyle; textContainer: ViewStyle; textStyle: TextStyle; } export default StyleSheet.create