UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

8 lines (7 loc) 244 B
import React from 'react'; type UseHoverParams = { ref: React.MutableRefObject<HTMLElement>; setHover: (value: boolean) => void; }; declare const useMouseHover: ({ ref, setHover }: UseHoverParams) => void; export default useMouseHover;