import { Feather } from '@expo/vector-icons' import React from 'react' import { Pressable, StyleSheet, Text } from 'react-native' import { useTheme } from '@utils/styles/ThemeManager' import { StyleConstants } from '@utils/styles/constants' type PropsBase = { disabled?: boolean onPress: () => void } export interface PropsText extends PropsBase { text: string icon?: any } export interface PropsIcon extends PropsBase { text?: string icon: any } const HeaderRight: React.FC = ({ disabled, onPress, text, icon }) => { const { theme } = useTheme() return ( {text && ( {text} )} {icon && ( )} ) } const styles = StyleSheet.create({ base: { paddingLeft: StyleConstants.Spacing.S }, text: { fontSize: StyleConstants.Font.Size.M } }) export default HeaderRight