type imagesType = { url: string; width?: number; height?: number; }; type VisualizeImagesGridProps = { images: imagesType[]; layout?: 'justify-between' | 'justify-center' | 'justify-start' | 'justify-end'; }; export function VisualizeImagesGrid({ images, layout }: VisualizeImagesGridProps) { return (