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
/
Cursor.d.ts
10 lines
(9 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
React
from
"react"
;
interface
CursorProps
{
size
?:
number
;
zIndex
?:
number
;
showOnTouch
?:
boolean
;
trailLength
?:
number
; }
export
declare
const
Cursor
:
React
.
FC
<
CursorProps
>;
export
{};