feat: init @librechat/client

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

View file

@ -0,0 +1,15 @@
import { cn } from '~/utils';
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn(
'animate-pulse rounded-md bg-surface-tertiary opacity-50 dark:opacity-25',
className,
)}
{...props}
/>
);
}
export { Skeleton };