import type { FC } from "react"; type Props = { isEpic?: boolean; }; export function TimelineDependencyPaths(props: Props) { const { isEpic = false } = props; return <>; }