"use client"; import { cn } from "@/lib/utils"; export function DotPattern({ width = 24, height = 24, cx = 1, cy = 1, cr = 1, className, }: { width?: number; height?: number; cx?: number; cy?: number; cr?: number; className?: string; }) { const id = "dot-pattern"; return ( ); }