import { Transition } from "@headlessui/react"; import clsx from "clsx"; import type { ReactNode } from "react"; import { Fragment } from "react"; import { FaBars } from "react-icons/fa"; export type DisplayProps = { show: boolean; setShow: (boolean: boolean) => void; }; export type SidebarProps = DisplayProps & { children: ReactNode; side: "left" | "right"; className?: string; }; const Sidebar = ({ show, children, side, className }: SidebarProps) => { return ( ); }; type SidebarTransitionProps = { side: "left" | "right"; children: ReactNode; show: boolean; className?: string; }; export const SidebarTransition = ({ children, show, side, className }: SidebarTransitionProps) => { return (
{children}
); }; export const SidebarControlButton = ({ show, setShow, side, }: DisplayProps & { side: "left" | "right" }) => { return ( ); }; export default Sidebar;