useHover (Web only)Handles pointer hover interactions for an element. Normalizes behavior across browsers and platforms, and ignores emulated mouse events on touch devices.Install#Yarnnpmyarn add @react-native-aria/interactionsCopynpm install @react-native-aria/interactionsCopyImport#import { useHover } from '@react-native-aria/interactions'CopyAPI#useHover(props: HoverProps, ref: RefObject): HoverResultCopyHoverProps#props for hoverHoverResult#{ /** Props to spread on the target element. */ hoverProps: HTMLAttributes<HTMLElement>, isHovered: boolean}CopyExample#