API Reference

MetaBar

A thin inline strip of page metadata — status, updated date, owner — under a heading.

MetaBar renders a thin, bordered strip of page metadata — a row of icon · label: value items. It serializes to the knowledge face as a keyfacts node, the same typed-field shape as KeyFacts, so the metadata is queryable.

When to use it

Reach for a MetaBar to carry a page's housekeeping inline — status, last-updated, owner — without the weight of a card grid. For the headline facts of a reference, use a KeyFacts block.

Props

PropTypeDefaultDescription
items{ icon?: string; label: ReactNode; value: ReactNode }[]The metadata items

Live example

Status:Stable
Updated:2026-06
Owner:Core

What the agent sees

Each item becomes a typed field under a keyfacts node:

{
  "kind": "keyfacts",
  "id": "meta",
  "fields": [
    { "key": "Status", "value": "Stable" },
    { "key": "Updated", "value": "2026-06" },
    { "key": "Owner", "value": "Core" }
  ]
}

On this page

Built withsuperlore