import { useId } from "react"; import { cn } from "@/lib/utils"; interface DotPatternProps { width?: any; height?: any; x?: any; y?: any; cx?: any; cy?: any; cr?: any; className?: string; [key: string]: any; } export function DotPattern({ width = 16, height = 16, x = 0, y = 0, cx = 1, cy = 1, cr = 1, className, ...props }: DotPatternProps) { const id = useId(); return ( ); }