| 1 | interface CrossPatternBackgroundProps { |
| 2 | crossSize?: number |
| 3 | crossColor?: 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 BackgroundCross: React.FC<CrossPatternBackgroundProps> = ({ |
| 14 | crossColor = '#fb3a5d', |
nothing calls this directly
no outgoing calls
no test coverage detected