'use client' import { Handle, Position, type NodeProps } from '@xyflow/react' export default function SinkNode({ data }: NodeProps) { const fillLevel = (data as any).fillLevel ?? 0 return (
{(data as any).label || 'Sink'}
{/* Fill level indicator */}
) }