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