import React from 'react'; import { Box } from './primitives/Box'; import { Icon } from './Icon'; import { User } from 'lucide-react'; 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 ( ); };