import type { UiStatusItem } from "../types"; export interface FooterCellProps { item: UiStatusItem; } export function FooterCell({ item }: FooterCellProps) { const target = item.link?.external ? "_blank" : undefined; const rel = item.link?.external ? "noreferrer" : undefined; const content = ( <> {item.label} {item.value} ); if (item.link) { return ( {content} ); } return (
{content}
); }