import clsx from 'clsx' import { toggleSidebar, useSidebarStore } from 'contexts/sidebar' import type { ReactNode } from 'react' import { FaChevronLeft } from 'react-icons/fa' export interface SidebarLayoutProps { children: ReactNode } export const SidebarLayout = ({ children }: SidebarLayoutProps) => { const { isOpen } = useSidebarStore() return (