"use client"; import { IconButton } from "@prototype/components/platform-ui/icon-button"; import { cn } from "@prototype/lib/utils"; import type { ComponentProps, ReactNode } from "react"; type ToolbarIconButtonProps = ComponentProps & { children: ReactNode; wrapperClassName?: string; }; /** Sidebar / panel icon control — shadcn ghost button. */ export function ToolbarIconButton({ className, wrapperClassName, children, ...props }: ToolbarIconButtonProps) { return (
{children}
); }