MCPcopy
hub / github.com/colinhacks/zod / ThemedImageProps

Interface ThemedImageProps

packages/docs/components/themed-image.tsx:5–10  ·  packages/docs/components/themed-image.tsx::ThemedImageProps

Source from the content-addressed store, hash-verified

3import Image from "next/image";
4
5interface ThemedImageProps {
6 lightSrc: string;
7 darkSrc: string;
8 alt: string;
9 className?: string;
10}
11
12export function ThemedImage({ lightSrc, darkSrc, alt, className }: ThemedImageProps) {
13 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected