{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "border-beam", "type": "registry:ui", "dependencies": [], "files": [ { "path": "components/ui/border-beam.tsx", "content": "\"use client\";\r\n\r\nimport { cn } from \"@/lib/utils\";\r\n\r\ninterface BorderBeamProps {\r\n className?: string;\r\n size?: number;\r\n duration?: number;\r\n borderWidth?: number;\r\n anchor?: number;\r\n colorFrom?: string;\r\n colorTo?: string;\r\n delay?: number;\r\n}\r\n\r\nexport const BorderBeam = ({\r\n className,\r\n size = 200,\r\n duration = 15,\r\n anchor = 90,\r\n borderWidth = 1.5,\r\n colorFrom = \"#ffaa40\",\r\n colorTo = \"#9c40ff\",\r\n delay = 0,\r\n}: BorderBeamProps) => {\r\n return (\r\n <>\r\n \r\n \r\n \r\n );\r\n};\r\n", "type": "registry:ui", "target": "components/ui/border-beam.tsx" } ] }