UNPKG

react-svg-cursor

Version:

Use any SVG or Image as your custom cursor

14 lines (11 loc) 271 B
import React from 'react'; interface ButtonProps { component: any; width?: number; height?: number; transform?: string; zIndex?: number; isDisabled?: boolean; } declare const CustomCursor: React.FC<ButtonProps>; export { CustomCursor };