import clsx from "clsx"; import { Fragment } from "react"; import { Dialog, Combobox, Transition } from "@headlessui/react"; import { CommandProps } from "../interfaces/commandInterface"; const Command = ({ open, afterLeave, onClose, overlayClassName, commandFunction, className, children }: CommandProps) => { return ( {children} ); }; export default Command;