| 3 | import { cn } from '@/utils/tailwind' |
| 4 | |
| 5 | interface DotPatternProps { |
| 6 | width?: any |
| 7 | height?: any |
| 8 | x?: any |
| 9 | y?: any |
| 10 | cx?: any |
| 11 | cy?: any |
| 12 | cr?: any |
| 13 | className?: string |
| 14 | [key: string]: any |
| 15 | } |
| 16 | function DotPattern({ |
| 17 | width = 50, |
| 18 | height = 50, |
nothing calls this directly
no outgoing calls
no test coverage detected