| 137 | ); |
| 138 | |
| 139 | interface DualModeImageProps { |
| 140 | darkSrc: string; |
| 141 | lightSrc: string; |
| 142 | alt: string; |
| 143 | width: number; |
| 144 | height: number; |
| 145 | className?: string; |
| 146 | } |
| 147 | |
| 148 | const DualModeImage = ({ |
| 149 | darkSrc, |
nothing calls this directly
no outgoing calls
no test coverage detected