"use client"
import { cn } from "@/lib/utils"
import { InteractiveGridPattern } from "@/registry/magicui/interactive-grid-pattern"
export default function InteractiveGridPatternDemo() {
return (
<div className="bg-background relative flex h-[500px] w-full flex-col items-center justify-center overflow-hidden rounded-lg border">
<InteractiveGridPattern
className={cn(
"[mask-image:radial-gradient(400px_circle_at_center,white,transparent)]"
)}
width={20}
height={20}
squares={[80, 80]}
squaresClassName="hover:fill-blue-500"
/>
</div>
)
}