import { Pressable, type PressableProps } from "react-native"; import { useBranchPickerNext } from "@assistant-ui/core/react"; export type BranchPickerNextProps = Omit< PressableProps, "onPress" | "children" > & { children: PressableProps["children"]; }; export const BranchPickerNext = ({ children, disabled: disabledProp, ...pressableProps }: BranchPickerNextProps) => { const { next, disabled } = useBranchPickerNext(); return ( {children} ); };