import React from 'react'; import CheckMark from '../svg/CheckMark'; import { Listbox } from '@headlessui/react'; import { cn } from '~/utils/'; function Dropdown({ value, onChange, options, className, containerClassName }) { return (
{value} {options.map((item, i) => ( {item} {value === item && ( )} ))}
); } export default Dropdown;