import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; type ConfigVersionToolbarMetaProps = { children: ReactNode; className?: string; /** Highlights read-only or draft-only hints. */ emphasis?: boolean; }; /** Single-line meta row under the version toolbar (live version, read-only hints). */ export function ConfigVersionToolbarMeta({ children, className, emphasis = false, }: ConfigVersionToolbarMetaProps) { return (
{children}
); } export function ConfigVersionToolbarMetaEmphasis({ children, className, }: { children: ReactNode; className?: string; }) { return {children}; }