{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "section-heading", "title": "Section Heading", "description": "Editorial hierarchy for meaningful sections.", "registryDependencies": [ "@manner/utils", "@manner/manner-theme" ], "files": [ { "path": "registry/manner/editorial/section-heading.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/cn\"\n\ntype SectionHeadingProps = Omit, \"title\"> & {\n eyebrow?: string\n title: React.ReactNode\n description?: React.ReactNode\n action?: React.ReactNode\n}\n\nfunction SectionHeading({ eyebrow, title, description, action, className, ...props }: SectionHeadingProps) {\n return (\n
\n
\n {eyebrow &&

{eyebrow}

}\n

{title}

\n {description &&

{description}

}\n
\n {action &&
{action}
}\n
\n )\n}\n\nexport { SectionHeading, type SectionHeadingProps }\n", "type": "registry:ui" } ], "type": "registry:ui" }