upd: division

Deskripsi:
- tambah divisi

nb: blm selesai

No Issues
This commit is contained in:
amel
2025-05-27 17:44:05 +08:00
parent 42f6257d03
commit 51f8cb78f5
7 changed files with 402 additions and 35 deletions

View File

@@ -0,0 +1,20 @@
import { Feather } from "@expo/vector-icons"
import { ButtonHeader } from "./buttonHeader"
type Props = {
onPress?: () => void
disable?: boolean
}
export default function ButtonNextHeader({ onPress, disable }: Props) {
return (
<>
<ButtonHeader
item={<Feather name="chevron-right" size={20} color={disable ? "grey" : "white"} />}
onPress={() => {
!disable && onPress && onPress()
}}
/>
</>
)
}