{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "link-node",
  "title": "Link Element",
  "description": "A component for rendering hyperlinks with hover states.",
  "dependencies": [
    "@platejs/link"
  ],
  "registryDependencies": [
    "https://platejs.org/r/suggestion.json"
  ],
  "files": [
    {
      "path": "src/registry/ui/link-node.tsx",
      "content": "'use client';\n\nimport * as React from 'react';\n\nimport type { TLinkElement } from 'platejs';\nimport type { PlateElementProps } from 'platejs/react';\n\nimport { getLinkAttributes } from '@platejs/link';\nimport { PlateElement } from 'platejs/react';\n\nimport { cn } from '@/lib/utils';\nimport { inlineSuggestionVariants } from '@/registry/lib/suggestion';\n\nexport function LinkElement(props: PlateElementProps<TLinkElement>) {\n  return (\n    <PlateElement\n      {...props}\n      as=\"a\"\n      className={cn(\n        'font-medium text-primary underline decoration-primary underline-offset-4',\n        inlineSuggestionVariants()\n      )}\n      attributes={{\n        ...props.attributes,\n        ...getLinkAttributes(props.editor, props.element),\n        onMouseOver: (e) => {\n          e.stopPropagation();\n        },\n      }}\n    >\n      {props.children}\n    </PlateElement>\n  );\n}\n",
      "type": "registry:ui"
    },
    {
      "path": "src/registry/ui/link-node-static.tsx",
      "content": "import * as React from 'react';\n\nimport type { TLinkElement } from 'platejs';\nimport type { SlateElementProps } from 'platejs/static';\n\nimport { getLinkAttributes } from '@platejs/link';\nimport { SlateElement } from 'platejs/static';\nimport { cn } from '@/lib/utils';\nimport { inlineSuggestionVariants } from '@/registry/lib/suggestion';\n\nexport function LinkElementStatic(props: SlateElementProps<TLinkElement>) {\n  return (\n    <SlateElement\n      {...props}\n      as=\"a\"\n      className={cn(\n        'font-medium text-primary underline decoration-primary underline-offset-4',\n        inlineSuggestionVariants()\n      )}\n      attributes={{\n        ...props.attributes,\n        ...getLinkAttributes(props.editor, props.element),\n      }}\n    >\n      {props.children}\n    </SlateElement>\n  );\n}\n",
      "type": "registry:ui"
    }
  ],
  "meta": {
    "docs": [
      {
        "route": "/docs/link"
      },
      {
        "route": "https://pro.platejs.org/docs/components/link-node"
      }
    ],
    "examples": [
      "link-demo"
    ]
  },
  "type": "registry:ui"
}