import { Bot, ChevronDown, Cpu } from 'lucide-react' import { useState } from 'react' interface ModelSlotCardProps { slotLabel: string options: string[] value: string onChange: (v: string) => void } function ModelSlotCard({ slotLabel, options, value, onChange }: ModelSlotCardProps) { const [open, setOpen] = useState(false) return (
{slotLabel}
{open && (
{options.map(opt => ( ))}
)}
) } export default ModelSlotCard