Feat: Add ChunkedResultPanel #3221 (#5085)

### What problem does this PR solve?

Feat: Add ChunkedResultPanel #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-02-18 17:53:51 +08:00
committed by GitHub
parent 3356de55ed
commit 18e43831bc
7 changed files with 69 additions and 10 deletions

View File

@ -1,11 +1,15 @@
import { Button } from '@/components/ui/button';
import { Copy } from 'lucide-react';
export function ChunkToolbar() {
interface ChunkToolbarProps {
text: string;
}
export function ChunkToolbar({ text }: ChunkToolbarProps) {
return (
<div className="flex justify-between px-9">
<span className="text-colors-text-neutral-strong text-3xl font-bold">
Parsed results
{text}
</span>
<div className="flex items-center gap-3">
<Button variant={'icon'} size={'icon'}>