import { Button } from "@/components/ui/button"; import { Label } from "@/components/ui/label"; import { LayoutGrid, Minimize2, Square, Maximize2 } from "lucide-react"; import type { KanbanDetailLevel } from "../shared/types"; interface KanbanDisplaySectionProps { detailLevel: KanbanDetailLevel; onChange: (level: KanbanDetailLevel) => void; } export function KanbanDisplaySection({ detailLevel, onChange, }: KanbanDisplaySectionProps) { return (

Kanban Card Display

Control how much information is displayed on Kanban cards.

Minimal: Shows only title and category
Standard: Adds steps preview and progress bar
Detailed: Shows all info including model, tool calls, task list, and summaries

); }