Skip to main content
Clever Ops

Ledger List Features

Features as a ruled ledger, mono index, name, and one-line value statement per row with a right-aligned shipped/beta status. Dense, scannable, no grid.

Preview & code

Loading Ledger List Features preview

Installation

pnpm dlx shadcn@latest add @cleverui/feature-ledger-list

Requires the @cleverui registry in your components.json, a one-off, two-line setup.

Usage

tsx
import { FeatureLedgerList } from '@/components/blocks/feature-ledger-list'
Exampletsx
import { FeatureLedgerList } from '@/components/blocks/feature-ledger-list'

export default function FeatureLedgerListDemo() {
  return (
    <FeatureLedgerList
      eyebrow="Platform index"
      heading="What ships in the runtime."
      description="Every capability below is a named module with a published surface. Status tracks the public API, not the internal ticket board."
      items={[
        {
          name: 'Policy engine',
          line: 'Declarative rules evaluated at every write path',
          status: 'shipped',
          href: '#policy-engine',
        },
        {
          name: 'Replay store',
          line: 'Point-in-time restore for any workflow run',
          status: 'shipped',
          href: '#replay-store',
        },
        {
          name: 'Webhook fabric',
          line: 'Signed delivery with automatic retry budgets',
          status: 'shipped',
        },
        {
          name: 'Schema registry',
          line: 'Versioned contracts across services and SDKs',
          status: 'shipped',
          href: '#schema-registry',
        },
        {
          name: 'Edge cache',
          line: 'Region-aware reads with stale-while-revalidate',
          status: 'beta',
        },
        {
          name: 'Audit ledger',
          line: 'Immutable event log exportable as CSV or S3',
          status: 'shipped',
        },
        {
          name: 'Agent sandbox',
          line: 'Isolated tool execution with spend caps',
          status: 'beta',
          href: '#agent-sandbox',
        },
      ]}
    />
  )
}

API reference

FeatureLedgerList accepts the following props.

PropTypeDefaultDescription
eyebrowstring
heading*string
descriptionstring
items*FeatureLedgerListItem[]5–9 rows; index auto-numbers 01.. in order

…plus everything from React.HTMLAttributes<HTMLElement>: className, event handlers, aria attributes and the rest pass straight through.

Referenced types

Typestsx
export interface FeatureLedgerListItem {
  name: string
  line: string
  status?: 'shipped' | 'beta'
  href?: string
}

Frequently asked questions

How do I install the Ledger List Features component?

Register the @cleverui registry in your components.json ("@cleverui": "https://cleverops.com.au/r/{name}.json"), then run `npx shadcn@latest add @cleverui/feature-ledger-list`. The shadcn CLI copies the source into your project, you own the code from that point. You can also copy the source directly from this page.

What dependencies does Ledger List Features require?

Ledger List Features uses motion on top of React and Tailwind CSS. You don't need to install it manually, the shadcn CLI resolves and installs npm dependencies automatically when you add the component.

Can I theme Ledger List Features to match my brand?

Yes. The component is styled entirely with Tailwind utilities over standard design tokens (primary, background, muted, border), so it inherits your existing shadcn/ui theme automatically. Change your CSS variables and the component follows, no source edits needed for palette, radius, or fonts.

Want this built for you?

CleverUI is built by the Clever Ops web team. If you'd rather ship a hand-coded, fast, custom website than assemble one, we build them for Australian businesses every week.

Explore web development services