admin / Synapse-Cortex
publicSelf Hosted ITSM Tool with RBAC/Tenanting and MFA
Synapse-Cortex / Synapse-Cortexv2 / frontend / src / playbook / nodes / StartNode.tsx
449 B · main
1 2 3 4 5 6 7 8 9 10 | import { Handle, Position } from '@xyflow/react' export function StartNode() { return ( <div className="px-4 py-2 rounded-full border border-accent-blue bg-cortex-panel2 glow-blue text-center"> <div className="text-[10px] font-display font-bold uppercase tracking-widest text-accent-blue">Start</div> <Handle type="source" position={Position.Bottom} className="!bg-accent-blue !w-2.5 !h-2.5 !border-cortex-bg" /> </div> ) } |