❤️ Support our project - Your donation helps us continue developing awesome tools!


Docs
Retro Grid

Retro Grid

An animated scrolling retro grid effect

Retro Grid

Installation

npx nyxbui@latest add retro-grid

Add the following animations to your tailwind.config.ts file:

// tailwind.config.ts
module.exports = {
  theme: {
    extend: {
      animation: {
        grid: "grid 15s linear infinite",
      },
      keyframes: {
        grid: {
          "0%": { transform: "translateY(-50%)" },
          "100%": { transform: "translateY(0)" },
        },
      },
    },
  },
};

Props

PropTypeDescriptionDefault
classNamestringThe class name for the component""