mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-04 03:25:30 +08:00
### What problem does this PR solve? Feat: Modify the background color of the canvas #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
import { Background } from '@xyflow/react';
|
|
|
|
export function AgentBackground() {
|
|
return (
|
|
<Background
|
|
color="var(--text-primary)"
|
|
bgColor="rgb(var(--bg-canvas))"
|
|
className="rounded-lg"
|
|
/>
|
|
);
|
|
}
|