type LiveBadgeProps = { text?: string; }; export default function LiveBadge({ text }: LiveBadgeProps) { return (
{!!text && (
{text}
)}
); }