import type { SelectInputProps } from "$/types/Input"; import { Listbox, ListboxButton, ListboxOptions } from "@headlessui/react"; import clsx from "clsx"; import { BsChevronDown } from "react-icons/bs"; export default function SelectInput(props: SelectInputProps){ const { label, value, onChange, children } = props; return (
{label} {children}
); }