import { Card } from "@/src/components/ui/card"; export const NotFoundCard = ({ itemType, singleLine = false, }: { itemType: "trace" | "observation"; singleLine?: boolean; }) => { if (singleLine) { return (

The {itemType} is either still being processed or has been deleted.

); } return (

Not found

The {itemType} is either still being processed or has been deleted.

); };