UNPKG

nextstepjs

Version:

Lightweight onboarding library for Next.js

15 lines (14 loc) 337 B
import React from 'react'; interface SmoothSpotlightProps { x: number; y: number; width: number; height: number; padding: number; radius: number; shadowOpacity: string; shadowRgb: string; zIndex: number; } declare const SmoothSpotlight: React.FC<SmoothSpotlightProps>; export default SmoothSpotlight;