| 4 | import { CheckCircle2Icon, Loader2Icon, XCircleIcon } from "lucide-react"; |
| 5 | |
| 6 | interface BaseNodeProps extends HTMLAttributes<HTMLDivElement> { |
| 7 | status?: NodeStatus; |
| 8 | }; |
| 9 | |
| 10 | export const BaseNode = forwardRef< |
| 11 | HTMLDivElement, |
nothing calls this directly
no outgoing calls
no test coverage detected