import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'; import { Label } from '@/components/ui/label'; import { Switch } from '@/components/ui/switch'; import { GitBranch, Settings2 } from 'lucide-react'; interface PlanSettingsPopoverProps { planUseSelectedWorktreeBranch: boolean; onPlanUseSelectedWorktreeBranchChange: (value: boolean) => void; } export function PlanSettingsPopover({ planUseSelectedWorktreeBranch, onPlanUseSelectedWorktreeBranchChange, }: PlanSettingsPopoverProps) { return (

Plan Settings

Configure how Plan creates and organizes features.

Planned features will automatically use isolated worktrees, keeping changes separate from your main branch until you're ready to merge.

); }