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

Use the `<Tweet />` component to embed tweets in your documentation, using the Tweet ID.

## Example

<Tweet id="1513662173796605958" />

```jsx
<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 />

## Props

<Property name="id" type="string" required>
  The ID of the tweet to display.
</Property>

---

<Property name="cards" type="boolean" optional>
  Whether or not to display tweet preview cards. Defaults to `false`.
</Property>

---

<Property name="conversation" type="boolean" optional>
  Whether or not to display conversation information. Defaults to `false`.
</Property>
