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.

24 lines 849 B
import React from "react"; interface SparkleNavbarProps { /** * An array of strings representing the navigation menu items. * Each string will be the text for a button. * @example ['Home', 'About', 'Contact'] */ items: string[]; /** * The color for the active state text shadow, box shadow, and other effects. * @example '#1E90FF' (a shade of blue) */ color?: string; } /** * A reusable navigation menu component with a dynamic, animated active state indicator. * All CSS and animation logic are self-contained within this single TSX file. * * @param {SparkleNavbarProps} props - The component props. * @returns {JSX.Element} The rendered navigation menu. */ declare const SparkleNavbar: React.FC<SparkleNavbarProps>; export default SparkleNavbar; //# sourceMappingURL=sparkle-navbar.d.ts.map