{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "sources", "title": "Sources", "description": "Evidence links with origin context.", "registryDependencies": [ "@manner/utils", "@manner/manner-theme" ], "files": [ { "path": "registry/manner/ai/sources.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/cn\"\n\ntype SourceItem = { title: string; domain: string; href: string }\ntype SourcesProps = React.ComponentProps<\"ol\"> & { items: SourceItem[] }\n\nfunction Sources({ items, className, ...props }: SourcesProps) {\n return (\n
    \n {items.map((item, index) =>
  1. {String(index + 1).padStart(2, \"0\")}{item.title}{item.domain}
  2. )}\n
\n )\n}\n\nexport { Sources, type SourceItem, type SourcesProps }\n", "type": "registry:ui" } ], "type": "registry:ui" }