---
title: Videos
description: Learn how to add videos to your documentation.
---

Use the `<Video />` component to display videos in your documentation. This components props extends the HTML `<video>` element.

## Example

<Video muted autoPlay src="https://file-examples.com/wp-content/storage/2017/04/file_example_MP4_480_1_5MG.mp4" type="video/mp4" />

```jsx
<Video muted autoPlay src="https://your-video-source.com/video.mp4" type="video/mp4" />
```

