import React from 'react' import { HelpCircle } from 'lucide-react' import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover' import { getNodeHelp } from '@/lib/graph/nodeRegistry' import { cn } from '@/lib/utils' type Props = { nodeType: string className?: string } export function NodeHelpPopover({ nodeType, className }: Props) { const { title, content } = getNodeHelp(nodeType) return (

{title}

{content}
) }