import React, { Fragment } from "react"; // headless ui import { Popover, Transition } from "@headlessui/react"; // icons import { ChevronUp } from "lucide-react"; type Props = { children: React.ReactNode; title?: string; }; export const FiltersDropdown: React.FC = (props) => { const { children, title = "Dropdown" } = props; return ( {({ open }) => { if (open) { } return ( <>
{title}
{children}
); }}
); };