diff options
Diffstat (limited to 'FrontEnd/src/pages/timeline/TimelineEmptyItem.tsx')
-rw-r--r-- | FrontEnd/src/pages/timeline/TimelineEmptyItem.tsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/FrontEnd/src/pages/timeline/TimelineEmptyItem.tsx b/FrontEnd/src/pages/timeline/TimelineEmptyItem.tsx new file mode 100644 index 00000000..5e0728d4 --- /dev/null +++ b/FrontEnd/src/pages/timeline/TimelineEmptyItem.tsx @@ -0,0 +1,25 @@ +import * as React from "react"; +import classnames from "classnames"; + +import TimelineLine, { TimelineLineProps } from "./TimelineLine"; + +export interface TimelineEmptyItemProps extends Partial<TimelineLineProps> { + height?: number | string; + className?: string; + style?: React.CSSProperties; +} + +const TimelineEmptyItem: React.FC<TimelineEmptyItemProps> = (props) => { + const { height, style, className, center, ...lineProps } = props; + + return ( + <div + style={{ ...style, height: height }} + className={classnames("timeline-item", className)} + > + <TimelineLine center={center ?? "none"} {...lineProps} /> + </div> + ); +}; + +export default TimelineEmptyItem; |