SurfSense/surfsense_web/components/ui/fixed-toolbar.tsx

25 lines
460 B
TypeScript

"use client";
import type * as React from "react";
import { cn } from "@/lib/utils";
import { Toolbar } from "./toolbar";
export function FixedToolbar({
children,
className,
...props
}: React.ComponentProps<typeof Toolbar>) {
return (
<Toolbar
className={cn(
"scrollbar-hide absolute top-0 left-0 z-[60] w-full justify-between overflow-x-auto border-b bg-background p-1",
className
)}
{...props}
>
{children}
</Toolbar>
);
}