{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "quote", "title": "Quote", "description": "A quotation with strong reading rhythm and attribution.", "registryDependencies": [ "@manner/utils", "@manner/manner-theme" ], "files": [ { "path": "registry/manner/editorial/quote.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/cn\"\n\ntype QuoteProps = React.ComponentProps<\"figure\"> & { cite: React.ReactNode }\n\nfunction Quote({ children, cite, className, ...props }: QuoteProps) {\n return (\n
\n
“{children}”
\n
— {cite}
\n
\n )\n}\n\nexport { Quote, type QuoteProps }\n", "type": "registry:ui" } ], "type": "registry:ui" }