import type { ComponentProps } from "react"; import { cn } from "@/shared/utils/ui"; type DotPatternProps = ComponentProps<"svg"> & { width?: number; height?: number; x?: number; y?: number; cx?: number; cy?: number; cr?: number; }; export function DotPattern({ className, width = 18, height = 18, x = 0, y = 0, cx = 1.5, cy = 1.5, cr = 1.5, ...props }: DotPatternProps) { const patternId = `dot-pattern-${width}-${height}-${x}-${y}-${cx}-${cy}-${cr}`; return ( Dot pattern background ); }