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