Product top header with breadcrumb, title, search, actions, notifications, and user-menu slots.
TopBar replaces ad-hoc header rows in product apps. Compose with SearchCommand, UserMenu, and NotificationCenter to assemble a full app shell header.
Pass sticky to pin to the top of the surrounding scroll container.
<TopBar
actions={<Button size="sm">Invite</Button>}
search={<SearchCommand />}
sticky
title="Workspace"
/>import { TopBar } from "@froggdesign/enter-ui-react";TopBar renders as a <header> so the bar is announced as a banner landmark. Place exactly one TopBar per route to avoid landmark duplication.
title, breadcrumb: lead slots.search: middle slot, typically a SearchCommand.actions, notifications, user: trailing slots.sticky: pin to the top with data-sticky="true".Every exported component accepts className. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.