UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

14 lines (13 loc) 395 B
import React from "react"; interface NavEffectProps { children: React.ReactNode; effectType?: "underline" | "overline" | "box" | "slide" | "grow"; underlineColor?: string; underlineHeight?: string; duration?: number; fontSize?: string; className?: string; boxBgColor?: string; } export declare const NavEffect: React.FC<NavEffectProps>; export default NavEffect;