18 lines
721 B
TypeScript
18 lines
721 B
TypeScript
import { View } from "react-native"
|
|
import { router } from "expo-router"
|
|
import Feather from '@expo/vector-icons/Feather';
|
|
import { ButtonHeader } from "../buttonHeader";
|
|
|
|
export function HeaderRightHome() {
|
|
return (
|
|
<View style={{
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
width: 140,
|
|
}}>
|
|
<ButtonHeader item={<Feather name="search" size={20} color="white" />} onPress={() => { router.push('/') }} />
|
|
<ButtonHeader item={<Feather name="bell" size={20} color="white" />} onPress={() => { router.push('/') }} />
|
|
<ButtonHeader item={<Feather name="user" size={20} color="white" />} onPress={() => { router.push('/') }} />
|
|
</View>
|
|
)
|
|
} |