MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / ImgProps

Interface ImgProps

apps/baseai.dev/src/components/Img.tsx:4–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { Dialog, DialogContent, DialogTrigger } from '@/components/ui/dialog';
3
4interface 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
15export default function Img({
16 width,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected