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