{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "artifact", "title": "Artifact", "description": "A focused output surface connected to a conversation.", "registryDependencies": [ "@manner/utils", "@manner/manner-theme" ], "files": [ { "path": "registry/manner/ai/artifact.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/cn\"\n\ntype ArtifactProps = React.ComponentProps<\"section\"> & { title: React.ReactNode; type: React.ReactNode; actions?: React.ReactNode }\n\nfunction Artifact({ title, type, actions, children, className, ...props }: ArtifactProps) {\n return (\n
\n
{title}{type}
{actions}
\n
{children}
\n
\n )\n}\n\nexport { Artifact, type ArtifactProps }\n", "type": "registry:ui" } ], "type": "registry:ui" }