Catalyst / admin/Synapse-Cortex 14.8 GB / 57.8 GB 40.0 GB free
Help Sign in

admin / Synapse-Cortex

public

Self Hosted ITSM Tool with RBAC/Tenanting and MFA

Code Issues Pull requests Pipelines Packages Security Insights Wiki Settings
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>
  )
}