import './Combobox.sass' import { Combobox } from '@kobalte/core/combobox' import { FaSolidAngleDown } from 'solid-icons/fa' import { AiOutlineCheck } from 'solid-icons/ai' interface Props { options: any[] placeholder: string value: string onChange: (value: string | null) => void } export default (props: Props) => { return ( <> ( {props.item.textValue} )} > ) }