{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "eyebrow",
  "title": "Eyebrow",
  "description": "The tracked-out line above a heading, with an optional block caret.",
  "registryDependencies": [
    "@afterglow/caret"
  ],
  "files": [
    {
      "path": "registry/terminal/components/eyebrow.tsx",
      "content": "import type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\nimport { Caret } from \"@/registry/terminal/components/caret\";\n\nfunction Eyebrow({\n  className,\n  caret = false,\n  children,\n  ...props\n}: React.ComponentProps<\"p\"> & { caret?: boolean }) {\n  return (\n    <p\n      className={cn(\n        \"m-0 font-bold font-mono text-2xs text-phosphor uppercase leading-tight tracking-terminal-3xl\",\n        className\n      )}\n      data-slot=\"eyebrow\"\n      {...props}\n    >\n      {children}\n      {caret ? <Caret className=\"ml-1\" data-slot=\"eyebrow-caret\" /> : null}\n    </p>\n  );\n}\n\nexport { Eyebrow };\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}