<Timeline.Body>Background used when pull requests are merged</Timeline.Body>
</Timeline.Item>
</Timeline>
Condensed items
Timeline has a condensed prop that will reduce the vertical padding and remove the background from the badge item. These are most commonly used in commits. To condense a single item, remove the top or bottom padding with the pt={0} or pb={0} prop.
<Timeline>
<Timeline.Itemcondensed>
<Timeline.Badge>
<StyledOcticonicon={GitCommitIcon}/>
</Timeline.Badge>
<Timeline.Body>This is the message of a condensed TimelineItem</Timeline.Body>
</Timeline.Item>
<Timeline.Itemcondensed>
<Timeline.Badge>
<StyledOcticonicon={GitCommitIcon}/>
</Timeline.Badge>
<Timeline.Body>This is the message of a condensed TimelineItem</Timeline.Body>
</Timeline.Item>
</Timeline>
Timeline Break
To create a visual break in the timeline, use Timeline.Break. This adds a horizontal bar across the timeline to show that something has disrupted it. Usually this happens when a close or merged event occurs.