| 1 | interface DotPatternBackgroundProps { |
| 2 | dotSize?: number |
| 3 | dotColor?: string |
| 4 | backgroundColor?: string |
| 5 | gap?: number |
| 6 | maskColor?: string |
| 7 | className?: string |
| 8 | style?: React.CSSProperties |
| 9 | fade?: boolean |
| 10 | [key: string]: any |
| 11 | } |
| 12 | |
| 13 | export const BackgroundDots: React.FC<DotPatternBackgroundProps> = ({ |
| 14 | dotSize = 1.2, |
nothing calls this directly
no outgoing calls
no test coverage detected