Top Bar
Workspace header bar for titles, leading controls, centered navigation, and trailing actions. Install Top Bar from the VLLNT UI registry with the shadcn CLI.
Workspace header bar for titles, leading controls, centered navigation, and trailing actions. Part of the navigation family in VLLNT UI, it ships as a machine-readable registry entry — copy the source directly into your app with the shadcn CLI and own it, no runtime dependency on a component library.
Preview
Switch between light and dark to inspect the embedded Storybook preview.
Installation
Add Top Bar to your project with the shadcn CLI. The source lands in your codebase, ready to adapt:
pnpm dlx shadcn@latest add https://ui.vllnt.ai/r/top-bar.jsonSource
import type { ReactNode } from "react";
import { cn } from "../../lib/utils";
export type TopBarProps = React.ComponentPropsWithoutRef<"header"> & {
leading?: ReactNode;
subtitle?: ReactNode;
title?: ReactNode;
trailing?: ReactNode;
};
const TopBar = ({
children,
className,
leading,
ref,
subtitle,
title,
trailing,
...props
}: TopBarProps & { ref?: React.Ref<HTMLElement> }) => (
<header
className={cn(
"flex min-h-14 items-center justify-between gap-3 border-b border-border bg-background px-4 font-mono",
className,
)}
ref={ref}
{...props}
>
<div className="flex min-w-0 flex-1 items-center gap-3">
{leading ? (
<div className="flex shrink-0 items-center gap-2">{leading}</div>
) : null}
{title || subtitle ? (
<div className="min-w-0">
{title ? (
<div className="truncate text-sm font-medium uppercase tracking-[0.18em] text-foreground">
{title}
</div>
) : null}
{subtitle ? (
<div className="truncate text-[11px] uppercase tracking-[0.18em] text-muted-foreground">
{subtitle}
</div>
) : null}
</div>
) : null}
</div>
{children ? (
<div className="flex flex-1 items-center justify-center">{children}</div>
) : null}
<div className="flex min-w-0 flex-1 items-center justify-end gap-2">
{trailing}
</div>
</header>
);
TopBar.displayName = "TopBar";
export { TopBar };
Stories
Explore every variant and state in the interactive Storybook:
Preview
Switch between light and dark to inspect the embedded Storybook preview.