UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

8 lines (7 loc) 446 B
'use client'; import { jsx as _jsx } from "react/jsx-runtime"; import { renderWorkflowIcon } from '../internal/trigger-icons.js'; import { BaseWorkflowNode } from './base-node.js'; export function DelayNode({ data, selected }) { return (_jsx(BaseWorkflowNode, { kind: "delay", selected: selected, icon: renderWorkflowIcon('delay', data.iconName), label: data.label || 'Delay', description: data.description ?? 'Wait before continuing' })); }