---
title: Embed Tweets
description: Embed Tweets in your documentation.
---

# Tweets

To imbed a tweet into the documentation, use the `<Tweet>` component and provide the ID of the tweet.

```jsx
<Tweet id="1513662173796605958" />
```

<Tweet id="1513662173796605958" />

## Cards

To display tweet preview cards alongside the tweet, provide the `cards` prop.

```jsx
<Tweet id="1513662173796605958" cards />
```

<Tweet id="1513662173796605958" cards />

## Conversation

To display conversation information about the tweet, provide the `conversation` prop.

```jsx
<Tweet id="1513662173796605958" conversation />
```

<Tweet id="1513662173796605958" conversation />

## Cards & Conversation

Both card and conversational data can be displayed simultaneously.

```jsx
<Tweet id="1513662173796605958" cards conversation />
```

<Tweet id="1513662173796605958" cards conversation />
