import { ViewStyle, StyleSheet } from "react-native"; interface Style { container: ViewStyle; } export const _innerStyle = ( isActive: boolean, innerBackgroundColor: string, ): ViewStyle => ({ width: 30, height: 30, borderRadius: 25, backgroundColor: isActive ? innerBackgroundColor : "transparent", }); export default StyleSheet.create