import { Handle, Position } from 'reactflow'; function CustomNode({ data }) { const icon = data.icon || 'https://s3.dvirlabs.com/lab-icons/default.svg'; return (
{/* Handles - חובה */} {/* Icon and label */} {data.label} { e.target.src = 'https://s3.dvirlabs.com/lab-icons/default.svg'; }} style={{ width: 40, height: 40, marginBottom: 6 }} />
{data.label}
); } export default CustomNode;