import { Field, Label, Listbox, ListboxButton, ListboxOption, ListboxOptions, ListboxSelectedOption, } from '@headlessui/react'; import { CheckIcon, ChevronDownIcon } from '@heroicons/react/20/solid'; import { ExclamationCircleIcon } from '@heroicons/react/24/outline'; import clsx from 'clsx'; import React from 'react'; type ListItem = { id: number; value: string; label?: string; }; type SelectDropdownProps = { items: ListItem[]; selected: ListItem | null; title: string; onChange: (item: ListItem) => void; placeholder?: string; requiredAlert?: boolean; requiredField?: boolean; disabled?: boolean; }; const SelectDropdown: React.FC = ({ items, title, selected, onChange, placeholder, requiredAlert = false, requiredField = false, disabled = false, }) => { return (
(
{item.label ? item.label : item.value}
))} placeholder={placeholder} />
{items.map(item => (
{item.label ? item.label : item.value}
))}
{requiredAlert && (!selected?.id || !selected.value) ? ( ) : null}
); }; export default SelectDropdown;