{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "timeline", "title": "Timeline", "description": "A compact semantic history for decisions and releases.", "registryDependencies": [ "@manner/utils", "@manner/manner-theme" ], "files": [ { "path": "registry/manner/editorial/timeline.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/cn\"\n\ntype TimelineEntry = { date: React.ReactNode; title: React.ReactNode; description?: React.ReactNode }\ntype TimelineProps = React.ComponentProps<\"ol\"> & { items: TimelineEntry[] }\n\nfunction Timeline({ items, className, ...props }: TimelineProps) {\n return (\n
{item.description}
}