import { Image } from '@shared/image'; export function ImagePreview({ urls, truncate }: { urls: string[]; truncate?: boolean }) { return (
{urls.map((url) => (
image
))}
); }