import { AnimatePresence, motion } from "motion/react"; import clsx from "clsx"; interface ActionsSidebarWrapperProps { children: React.ReactNode; className?: string; show?: boolean; } function ActionsSidebarWrapper({ children, className, show = true, }: ActionsSidebarWrapperProps) { return ( {show && ( {children} )} ); } export default ActionsSidebarWrapper;