Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
---
title: Aspect Ratio
description: Used to embed responsive videos and maps, etc
links:
source: components/aspect-ratio
storybook: layout-aspectratio--responsive
---
<ExampleTabs name="aspect-ratio-basic" />
## Usage
```jsx
import { AspectRatio } from "@chakra-ui/react"
```
```jsx
<AspectRatio>
<iframe
title="naruto"
src="https://www.youtube.com/embed/QhBnZ6NPOY0"
allowFullScreen
/>
</AspectRatio>
```
## Examples
### Image
Here's how to embed an image that has a 4 by 3 aspect ratio.
<ExampleTabs name="aspect-ratio-with-image" />
### Video
To embed a video with a specific aspect ratio, use an iframe with `src` pointing
to the link of the video.
<ExampleTabs name="aspect-ratio-with-video" />
### Google Map
Here's how to embed a responsive Google map using `AspectRatio`.
<ExampleTabs name="aspect-ratio-with-map" />
### Responsive
Here's an example of applying a responsive aspect ratio to a box.
<ExampleTabs name="aspect-ratio-responsive" />
## Props
These props can be passed to the `AspectRatio` component.
<PropTable component="AspectRatio" part="AspectRatio" />