mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 18:30:15 +01:00
16 lines
412 B
TypeScript
16 lines
412 B
TypeScript
|
|
import { cn } from '~/utils';
|
||
|
|
export const QuestionMark = ({ className = '' }) => {
|
||
|
|
return (
|
||
|
|
<span>
|
||
|
|
<div
|
||
|
|
className={cn(
|
||
|
|
'border-token-border-medium text-token-text-tertiary ml-2 flex h-3.5 w-3.5 cursor-default items-center justify-center rounded-full border text-[0.5rem] font-medium leading-none',
|
||
|
|
className,
|
||
|
|
)}
|
||
|
|
>
|
||
|
|
?
|
||
|
|
</div>
|
||
|
|
</span>
|
||
|
|
);
|
||
|
|
};
|