PreviewCodeRetro Grid Installation CLIManualnpx nyxb@latest add retro-gridCopyAdd 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 PropTypeDescriptionDefaultclassNamestringThe class name for the component""