upd: ui halaman list fitur

Deskripsi:
- ui list fitur page

No Issues
This commit is contained in:
amel
2025-02-26 14:28:32 +08:00
parent 633b18e92d
commit a25a0515c4
4 changed files with 59 additions and 1 deletions

View 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}
/>
</>
)
}