Files
ragflow/web/src/components/skeleton-card.tsx
chanx e997bf6507 Fix: Optimized the style and functionality of multiple components #3221 (#9824)
### What problem does this PR solve?

Fix: Optimized the style and functionality of multiple components #3221

- Modified the SkeletonCard component, adding a className attribute and
adjusting the style
- Updated the RAGFlowSelect component, adding a disabled attribute
- Adjusted the style of the Tooltip component
- Optimized the layout of the RetrievalTesting and TestingResult pages
- Updated the style and loading status display of NextSearch-related
pages
- Removed unnecessary logs from the Spotlight component

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
2025-08-29 16:54:01 +08:00

17 lines
464 B
TypeScript

import { Skeleton } from '@/components/ui/skeleton';
import { cn } from '@/lib/utils';
type SkeletonCardProps = {
className?: string;
};
export function SkeletonCard(props: SkeletonCardProps) {
const { className } = props;
return (
<div className={cn('space-y-2', className)}>
<Skeleton className="h-4 w-full bg-bg-card" />
<Skeleton className="h-4 w-full bg-bg-card" />
<Skeleton className="h-4 w-2/3 bg-bg-card" />
</div>
);
}