import { User } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; export interface PlaceholderImageProps { width?: string | number; height?: string | number; size?: string | number; className?: string; } export const PlaceholderImage = ({ width, height, size, className }: PlaceholderImageProps) => { const dimension = size || '100%'; return ( ); };