| 8 | export type ImageDiffMode = (typeof IMAGE_DIFF_MODES)[number]; |
| 9 | |
| 10 | export interface Props { |
| 11 | filePair: FilePair; |
| 12 | imageDiffMode: ImageDiffMode; |
| 13 | changeImageDiffMode: (imageDiffMode: ImageDiffMode) => void; |
| 14 | } |
| 15 | |
| 16 | /** A widget to toggle between image diff modes (blink or side-by-side). */ |
| 17 | export function ImageDiffModeSelector(props: Props) { |
nothing calls this directly
no outgoing calls
no test coverage detected