mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
---
|
|
title: Aspect Ratio
|
|
description: Displays content within a desired ratio.
|
|
component: true
|
|
links:
|
|
doc: https://www.radix-ui.com/docs/primitives/components/aspect-ratio
|
|
api: https://www.radix-ui.com/docs/primitives/components/aspect-ratio#api-reference
|
|
---
|
|
|
|
<ComponentPreview name="aspect-ratio-demo" />
|
|
|
|
## Installation
|
|
|
|
<Tabs defaultValue="cli">
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn-ui@latest add aspect-ratio
|
|
```
|
|
|
|
</TabsContent>
|
|
|
|
<TabsContent value="manual">
|
|
|
|
<Steps>
|
|
|
|
<Step>Install the following dependencies:</Step>
|
|
|
|
```bash
|
|
npm install @radix-ui/react-aspect-ratio
|
|
```
|
|
|
|
<Step>Copy and paste the following code into your project.</Step>
|
|
|
|
<ComponentSource name="aspect-ratio" />
|
|
|
|
<Step>Update the import paths to match your project setup.</Step>
|
|
|
|
</Steps>
|
|
|
|
</TabsContent>
|
|
|
|
</Tabs>
|
|
|
|
## Usage
|
|
|
|
```tsx
|
|
import Image from "next/image"
|
|
|
|
import { AspectRatio } from "@/components/ui/aspect-ratio"
|
|
```
|
|
|
|
```tsx
|
|
<div className="w-[450px]">
|
|
<AspectRatio ratio={16 / 9}>
|
|
<Image src="..." alt="Image" className="rounded-md object-cover" />
|
|
</AspectRatio>
|
|
</div>
|
|
```
|