upd: ui halaman list fitur
Deskripsi: - ui list fitur page No Issues
This commit is contained in:
17
components/buttonBackHeader.tsx
Normal file
17
components/buttonBackHeader.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Feather } from "@expo/vector-icons"
|
||||
import { ButtonHeader } from "./buttonHeader"
|
||||
|
||||
type Props = {
|
||||
onPress?: () => void
|
||||
}
|
||||
|
||||
export default function ButtonBackHeader({ onPress }: Props) {
|
||||
return (
|
||||
<>
|
||||
<ButtonHeader
|
||||
item={<Feather name="chevron-left" size={20} color="white" />}
|
||||
onPress={onPress}
|
||||
/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user