import { useTheme } from '@/components/theme-provider'; import classNames from 'classnames'; import { Handle, NodeProps, Position } from 'reactflow'; import { NodeData } from '../../interface'; import { LeftHandleStyle, RightHandleStyle } from './handle-icon'; import styles from './index.less'; import NodeHeader from './node-header'; export function LogicNode({ id, data, isConnectable = true, selected, }: NodeProps) { const { theme } = useTheme(); return (
); }