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