import React from 'react'; import { Platform, StyleSheet, Text } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../../lib/Icons'; import { useTheme } from '../../theme'; import { themes } from '../../lib/constants'; import sharedStyles from '../../views/Styles'; interface IHeaderButtonItem { title?: string; iconName?: string; onPress?: (arg: T) => void; testID?: string; badge?(): void; } export const BUTTON_HIT_SLOP = { top: 5, right: 5, bottom: 5, left: 5 }; const styles = StyleSheet.create({ container: { marginHorizontal: 6 }, title: { ...Platform.select({ android: { fontSize: 14 }, default: { fontSize: 17 } }), ...sharedStyles.textRegular } }); const Item = ({ title, iconName, onPress, testID, badge }: IHeaderButtonItem): React.ReactElement => { const { theme } = useTheme(); return ( <> {iconName ? ( ) : ( {title} )} {badge ? badge() : null} ); }; Item.displayName = 'HeaderButton.Item'; export default Item;