/* Copyright 2026 Marimo. All rights reserved. */ import { MenuIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet"; import { SidebarSlot } from "./sidebar-slot"; interface SheetMenuProps { /** * The maximum width of the sidebar when it is open. */ openWidth: string; } export const SheetMenu = ({ openWidth }: SheetMenuProps) => { return ( ); };