import type { SelectInputProps } from "$/types/InputTypes"; import { Listbox, ListboxButton, ListboxOptions } from "@headlessui/react"; import clsx from "clsx"; import { BsChevronDown } from "react-icons/bs"; export default function SelectInput({ placeholder, value, onChange, disabled, children }: Readonly){ return ( {placeholder} {children} ); }