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