import React from 'react'; import { Box } from './primitives/Box'; import { Icon } from './Icon'; import { Image as ImageIcon } from 'lucide-react'; export interface ImagePlaceholderProps { width?: string | number; height?: string | number; animate?: 'pulse' | 'none' | 'spin'; aspectRatio?: string; } export const ImagePlaceholder = ({ width = '100%', height = '100%', animate = 'pulse', aspectRatio }: ImagePlaceholderProps) => { return ( ); };