mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
69 lines
1.3 KiB
Plaintext
69 lines
1.3 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"
|
|
title="Aspect Ratio"
|
|
description="A component that displays an image with a 16:9 aspect ratio."
|
|
/>
|
|
|
|
## Installation
|
|
|
|
<Tabs defaultValue="cli">
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn@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>
|
|
```
|