Getting StartedInstallation and setup guides 5
LayoutWorkflow and structural layout components 7
OverlayModal and floating layer surfaces 3
FeedbackStatus, empty, progress, and loading placeholder patterns 5
FormInput and selection components 17
UtilityGeneral-purpose interface utilities 7
NavigationMenu surfaces and hierarchical actions 7

Examples

Use the wrapper for compact snippets or richer review surfaces with focused lines, captions, and copy actions.

Compact snippet

Use the compact or ghost variants when you want a smaller shell around short code references.

Compact snippet

status.ts

ts
export const status = 'ready';

Focused review

Highlight a narrow range and dim the rest when the code block is guiding someone through a review step.

Focused review

review.ts

ts
const draft = await loadDraft();

if (draft.status !== 'approved') {
  return 'needs-review';
}

return draft.summary;

Focused review shell