"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) { return ( {children} ); }