| 3 | import Image from "next/image"; |
| 4 | |
| 5 | interface ThemedImageProps { |
| 6 | lightSrc: string; |
| 7 | darkSrc: string; |
| 8 | alt: string; |
| 9 | className?: string; |
| 10 | } |
| 11 | |
| 12 | export function ThemedImage({ lightSrc, darkSrc, alt, className }: ThemedImageProps) { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected