| 1 | import React from 'react' |
| 2 | |
| 3 | interface PlusPatternBackgroundProps { |
| 4 | plusSize?: number |
| 5 | plusColor?: string |
| 6 | backgroundColor?: string |
| 7 | className?: string |
| 8 | style?: React.CSSProperties |
| 9 | fade?: boolean |
| 10 | [key: string]: any |
| 11 | } |
| 12 | |
| 13 | export const BackgroundXO: React.FC<PlusPatternBackgroundProps> = ({ |
| 14 | plusColor = '#fb3a5d', |
nothing calls this directly
no outgoing calls
no test coverage detected