* DotPattern Component Props * * @param {number} [width=16] - The horizontal spacing between dots * @param {number} [height=16] - The vertical spacing between dots * @param {number} [x=0] - The x-offset of the entire pattern * @param {number} [y=0] - The y-offset of the entire pattern * @para
| 18 | * @param {boolean} [glow=false] - Whether dots should have a glowing animation effect |
| 19 | */ |
| 20 | interface DotPatternProps extends React.SVGProps<SVGSVGElement> { |
| 21 | width?: number; |
| 22 | height?: number; |
| 23 | x?: number; |
| 24 | y?: number; |
| 25 | cx?: number; |
| 26 | cy?: number; |
| 27 | cr?: number; |
| 28 | className?: string; |
| 29 | glow?: boolean; |
| 30 | [key: string]: unknown; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * DotPattern Component |
nothing calls this directly
no outgoing calls
no test coverage detected