UNPKG
@izhann/react-cursor-fx
Version:
latest (1.2.1)
1.2.1
1.2.0
1.0.2
1.0.1
1.0.0
Interactive cursor effects for React and Next.js applications
@izhann/react-cursor-fx
/
dist
/
components
/
CursorTarget.d.ts
11 lines
(10 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
type
React
from
"react"
;
import
type
{
ReactNode
}
from
"react"
;
interface
CursorTargetProps
{
children
:
ReactNode
;
variant
:
string
;
onEnter
?:
() =>
void
;
onLeave
?:
() =>
void
; }
export
declare
const
CursorTarget
:
React
.
FC
<
CursorTargetProps
>;
export
{};