import { Select, SelectItem, Button } from "@heroui/react"; import { ReactNode } from "react"; export interface DropdownOption { key: string; label: string; } interface DropdownProps { options: DropdownOption[]; value?: string; onChange: (value: string) => void; className?: string; placeholder?: string; } export function Dropdown({ options, value, onChange, className = "w-60", placeholder }: DropdownProps) { return ( ); }