import { StyleSheet, ViewStyle } from 'react-native'; import { Theme } from '../../style'; export interface PopoverStyle { content: ViewStyle; arrow: ViewStyle; background: ViewStyle; } export default (theme: Theme) => StyleSheet.create({ content: { backgroundColor: theme.fill_base, borderRadius: theme.radius_sm, padding: 0, elevation: 3, }, arrow: { borderTopColor: 'transparent', }, background: { backgroundColor: 'transparent', }, });