mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
17 lines
529 B
JavaScript
17 lines
529 B
JavaScript
import { cn } from "../../lib/cn";
|
|
|
|
export const CAD_WORKSPACE_TOOLBAR_DESKTOP_WIDTH_CLASS = "w-[min(15rem,calc(100vw-2rem))]";
|
|
export const CAD_WORKSPACE_TOOLBAR_MOBILE_WIDTH_CLASS = "w-full";
|
|
|
|
export default function ToolbarShell({ className, children }) {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"cad-glass-surface pointer-events-auto flex min-h-0 flex-col overflow-hidden rounded-md border border-sidebar-border text-sidebar-foreground shadow-sm",
|
|
className
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|