| 1 | import { HTMLProps } from 'react' |
| 2 | |
| 3 | interface BackgroundGridProps { |
| 4 | color: string |
| 5 | cellSize: string | number |
| 6 | strokeWidth: number | string |
| 7 | className?: string |
| 8 | fade?: boolean |
| 9 | } |
| 10 | |
| 11 | const BackgroundGrid = ({ |
| 12 | color = '#fb3a5d', |
nothing calls this directly
no outgoing calls
no test coverage detected