import React from "react"; import classnames from "classnames"; import TimelineLine, { TimelineLineProps } from "./TimelineLine"; export interface TimelineTopProps { height?: number | string; lineProps?: TimelineLineProps; className?: string; style?: React.CSSProperties; } const TimelineTop: React.FC = (props) => { const { height, style, className } = props; const lineProps = props.lineProps ?? { center: "none" }; return (
); }; export default TimelineTop;