import React from 'react'; import { View, Text, TouchableOpacity } from 'react-native'; import { HeaderProps } from './header.props'; import { getStyles } from './header.styles'; import { useAppTheme } from '@theme'; export const Header: React.FC = ({ title, onBack, rightComponent }) => { const { colors } = useAppTheme(); const styles = getStyles(colors); return ( {onBack && ( {'<'} )} {title} {rightComponent} ); };