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