Files
TERES_web_frontend/ragflow_web/src/components/shared-badge.tsx

13 lines
397 B
TypeScript
Raw Normal View History

import { useFetchUserInfo } from '@/hooks/user-setting-hooks';
import { PropsWithChildren } from 'react';
export function SharedBadge({ children }: PropsWithChildren) {
const { data: userInfo } = useFetchUserInfo();
if (typeof children === 'string' && userInfo.nickname === children) {
return null;
}
return <span className="bg-bg-card rounded-sm px-1 text-xs">{children}</span>;
}