Copy to clipboard

<AspectRatio ratio={16 / 9} class="bg-muted">
<img src="/images/readme/bearnie.png" alt="Landscape" class="rounded-md object-cover size-full" />
</AspectRatio>
<AspectRatio ratio={16 / 9} class="bg-muted">
<img src="/images/readme/bearnie.png" alt="Landscape" class="rounded-md object-cover size-full" />
</AspectRatio><AspectRatio ratio={16 / 9} class="bg-muted">
<img src="/images/readme/bearnie.png" alt="Landscape" class="rounded-md object-cover size-full" />
</AspectRatio>
Installation
Copy to clipboard
npx bearnie add aspect-ratio
npx bearnie add aspect-rationpx bearnie add aspect-ratio
bunx bearnie add aspect-ratio
bunx bearnie add aspect-ratiobunx bearnie add aspect-ratio
pnpm dlx bearnie add aspect-ratio
pnpm dlx bearnie add aspect-ratiopnpm dlx bearnie add aspect-ratio
yarn dlx bearnie add aspect-ratio
yarn dlx bearnie add aspect-ratioyarn dlx bearnie add aspect-ratio
Usage
import { AspectRatio } from "@/components/bearnie/aspect-ratio"<AspectRatio ratio={16 / 9}>
<img src="..." alt="..." class="object-cover w-full h-full" />
</AspectRatio>Examples
16:9 (Video)
Copy to clipboard
16:9 Video
<AspectRatio ratio={16 / 9} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
16:9 Video
</div>
</AspectRatio>
<AspectRatio ratio={16 / 9} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
16:9 Video
</div>
</AspectRatio><AspectRatio ratio={16 / 9} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
16:9 Video
</div>
</AspectRatio>
4:3 (Standard)
Copy to clipboard
4:3 Standard
<AspectRatio ratio={4 / 3} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
4:3 Standard
</div>
</AspectRatio>
<AspectRatio ratio={4 / 3} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
4:3 Standard
</div>
</AspectRatio><AspectRatio ratio={4 / 3} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
4:3 Standard
</div>
</AspectRatio>
1:1 (Square)
Copy to clipboard
1:1 Square
<AspectRatio ratio={1} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
1:1 Square
</div>
</AspectRatio>
<AspectRatio ratio={1} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
1:1 Square
</div>
</AspectRatio><AspectRatio ratio={1} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
1:1 Square
</div>
</AspectRatio>
21:9 (Ultrawide)
Copy to clipboard
21:9 Ultrawide
<AspectRatio ratio={21 / 9} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
21:9 Ultrawide
</div>
</AspectRatio>
<AspectRatio ratio={21 / 9} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
21:9 Ultrawide
</div>
</AspectRatio><AspectRatio ratio={21 / 9} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
21:9 Ultrawide
</div>
</AspectRatio>
Portrait (2:3)
Copy to clipboard
2:3 Portrait
<AspectRatio ratio={2 / 3} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
2:3 Portrait
</div>
</AspectRatio>
<AspectRatio ratio={2 / 3} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
2:3 Portrait
</div>
</AspectRatio><AspectRatio ratio={2 / 3} class="bg-muted rounded-md">
<div class="flex items-center justify-center h-full text-muted-foreground">
2:3 Portrait
</div>
</AspectRatio>
Anatomy
AspectRatio- A single container that maintains proportions
Props
AspectRatio
| Prop | Type | Default | Description |
|---|---|---|---|
| ratio | number | 16/9 | Width-to-height ratio |
| class | string | - | Additional CSS classes |
Common ratios: 16/9 (video), 4/3 (standard), 1 (square), 21/9 (ultrawide), 2/3 (portrait)