tambahan
This commit is contained in:
18
components/home/headerRightHome.tsx
Normal file
18
components/home/headerRightHome.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user