feat: init @librechat/client

This commit is contained in:
Marco Beretta 2025-07-05 22:49:28 +02:00
parent 545a909953
commit dcaa5af598
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
207 changed files with 21329 additions and 239 deletions

View file

@ -1,15 +0,0 @@
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>
);
};