import { Image, Pressable, View } from "react-native"; import { Motion } from "@legendapp/motion"; import { icons } from "../assets"; import { Fonts, gutters, Palette, Style } from "../styles"; import { goBack } from "../navigation/NavigationService"; import { FONT_FAMILY } from "../styles/Fonts"; export default ({ title = "", rightComponent = null, onBackPressed = null, containerStyle = {}, headerTitleStyle = {}, hideBackButton = false, }) => { return ( {!hideBackButton && ( onBackPressed?.() || goBack()}> )} {title} {rightComponent?.() || null} ); };