import { CopyPlus, ScanEye } from 'lucide-react'; import { cn } from '@/lib/utils'; import { Switch } from '@headlessui/react'; export const Attach = () => { return ( ); }; export const Focus = () => { return ( ); }; export const CopilotToggle = ({ copilotEnabled, setCopilotEnabled, }: { copilotEnabled: boolean; setCopilotEnabled: (enabled: boolean) => void; }) => { return (
Copilot

setCopilotEnabled(!copilotEnabled)} className={cn( 'text-xs font-medium transition-colors duration-150 ease-in-out', copilotEnabled ? 'text-[#24A0ED]' : 'text-white/50 group-hover:text-white', )} > Copilot

); };