import { Image } from '@components/common/Image.js'; import { TableCell } from '@components/common/ui/Table.js'; import React from 'react'; export interface ThumbnailProps { src?: string; name?: string; } export function Thumbnail({ src, name }: ThumbnailProps) { return (
{src && ( {name )} {!src && ( )}
); }