import { View } from "react-native" import { router } from "expo-router" import Feather from '@expo/vector-icons/Feather'; import { ButtonHeader } from "../buttonHeader"; import Styles from "@/constants/Styles"; export function HeaderRightHome() { return ( } onPress={() => { router.push('/search') }} /> } onPress={() => { router.push('/notification') }} /> } onPress={() => { router.push('/profile') }} /> ) }