import RoundImageBorder from "@components/atoms/RoundImageBorder"; import imagePath from "@constants/imagePath"; import { useNavigation } from "@react-navigation/native"; import { moderateScale } from "@utils/scaling"; import type { PropsWithChildren } from "react"; import React from "react"; import { ImageSourcePropType, Pressable, View } from "react-native"; import { createStyleSheet, useStyles } from "react-native-unistyles"; const stylesheet = createStyleSheet(() => ({ headerStyle: { flexDirection: "row", alignItems: "center", justifyContent: "space-between", height: moderateScale(60), }, })); type SectionProps = PropsWithChildren<{ style?: object; leftImage?: ImageSourcePropType; rightImage?: ImageSourcePropType; onPressLeft?: () => void; onPressRight?: () => void; }>; const HeaderComp = ({ style, leftImage = imagePath.icBack, rightImage = imagePath.icShare, onPressLeft, onPressRight, }: SectionProps): React.JSX.Element => { const navigation = useNavigation(); const { styles } = useStyles(stylesheet); return ( navigation.goBack())}> ); }; export default React.memo(HeaderComp);