import type { FlowStep } from '../../data/types'; import { Icon } from '../shared/Icon'; import { ACTOR_ICONS } from '../../utils/iconMap'; interface TriggerEventCardProps { step: FlowStep; } export function TriggerEventCard({ step }: TriggerEventCardProps) { const actorIcon = ACTOR_ICONS[step.actor] || 'person'; return (