mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Add ParsedPageCard component #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
21 lines
540 B
TypeScript
21 lines
540 B
TypeScript
import { Button } from '@/components/ui/button';
|
|
import { Copy } from 'lucide-react';
|
|
|
|
export function ChunkToolbar() {
|
|
return (
|
|
<div className="flex justify-between px-9">
|
|
<span className="text-colors-text-neutral-strong text-3xl font-bold">
|
|
Parsed results
|
|
</span>
|
|
<div className="flex items-center gap-3">
|
|
<Button variant={'icon'} size={'icon'}>
|
|
<Copy />
|
|
</Button>
|
|
<Button variant={'outline'} size={'sm'}>
|
|
Export
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|