import React from 'react'; import { ImageIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; interface PlaceholderImageProps { className?: string; } const PlaceholderImage: React.FC = ({ className }) => { return (
); }; export default PlaceholderImage;