import React from "react" import { Camera } from "lucide-react" import { cn } from "@/lib/utils" interface ScreenshotPlaceholderProps { description: string filename?: string className?: string } export const ScreenshotPlaceholder: React.FC = ({ description, filename, className, }) => { return (
) }