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 • 428 B
TypeScript
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;
}
declare const NavEffect: React.FC<NavEffectProps>;
export default NavEffect;
//# sourceMappingURL=nav-effect.d.ts.map