| 2 | import { Dialog, DialogContent, DialogTrigger } from '@/components/ui/dialog'; |
| 3 | |
| 4 | interface ImgProps { |
| 5 | width: number; |
| 6 | height: number; |
| 7 | src?: string; |
| 8 | alt: string; |
| 9 | caption?: string; |
| 10 | light: string; |
| 11 | dark: string; |
| 12 | [propName: string]: any; // This line allows additional props to be passed |
| 13 | } |
| 14 | |
| 15 | export default function Img({ |
| 16 | width, |
nothing calls this directly
no outgoing calls
no test coverage detected