Component
MetaRow
Render small inline metadata groups with mono text and separators.
Interactive preview
Usage
Import the component entry and start with its smallest complete example.
Import
import { MetaRow } from "@chitrank2050/monoline-ui/meta-row"Basic usage
<MetaRow strong>
<span>June 17, 2026</span>
<MetaRow.Sep />
<span>12 comments</span>
<MetaRow.Sep />
<span>4 mins</span>
</MetaRow>Usage guidance
Choose the component for its interaction model and semantics before customizing its appearance.
MetaRow keeps a byline, date, category, or reading time together on one responsive line.
The content is key-value data that needs explicit term and description relationships.
MetaRow adds no semantics beyond a div and hides its separators. Each child must carry the appropriate link, time, or text semantics.
This component can render without adding a Monoline client boundary when its children and props are serializable.
API reference
Props, slots, and callbacks available on this component.
Implementation
The source used by the example above, including any state it needs.
import { MetaRow } from "@chitrank2050/monoline-ui/meta-row"
export function PostMeta() {
return (
<MetaRow>
<span>June 17, 2026</span>
<MetaRow.Sep />
<span>By Chitrank</span>
<MetaRow.Sep />
<span>React 19 Reference</span>
</MetaRow>
)
}Related documentation
Compare related components or review the package and theme setup.