Aspect Ratio
agileflow-projectquestorg/aspect-ratio-exampleFreeExample
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/aspect-ratio-example.jsonSource
1import Image from "next/image"23import {4 Example,5 ExampleWrapper,6} from "@/registry/bases/radix/components/example"7import { AspectRatio } from "@/registry/bases/radix/ui/aspect-ratio"89export default function AspectRatioExample() {10 return (11 <ExampleWrapper className="max-w-4xl 2xl:max-w-4xl">12 <AspectRatio16x9 />13 <AspectRatio21x9 />14 <AspectRatio1x1 />15 <AspectRatio9x16 />16 </ExampleWrapper>17 )18}1920function AspectRatio16x9() {21 return (22 <Example title="16:9" className="items-center justify-center">23 <AspectRatio ratio={16 / 9} className="bg-muted rounded-lg">24 <Image25 src="https://avatar.vercel.sh/shadcn1"26 alt="Photo"27 fill28 className="h-full w-full rounded-lg object-cover grayscale dark:brightness-20"29 />30 </AspectRatio>31 </Example>32 )33}3435function AspectRatio1x1() {36 return (37 <Example title="1:1" className="items-start">38 <AspectRatio ratio={1 / 1} className="bg-muted rounded-lg">39 <Image40 src="https://avatar.vercel.sh/shadcn1"41 alt="Photo"42 fill43 className="h-full w-full rounded-lg object-cover grayscale dark:brightness-20"44 />45 </AspectRatio>46 </Example>47 )48}4950function AspectRatio9x16() {51 return (52 <Example title="9:16" className="items-center justify-center">53 <AspectRatio ratio={9 / 16} className="bg-muted rounded-lg">54 <Image55 src="https://avatar.vercel.sh/shadcn1"56 alt="Photo"57 fill58 className="h-full w-full rounded-lg object-cover grayscale dark:brightness-20"59 />60 </AspectRatio>61 </Example>62 )63}6465function AspectRatio21x9() {66 return (67 <Example title="21:9" className="items-center justify-center">68 <AspectRatio ratio={21 / 9} className="bg-muted rounded-lg">69 <Image70 src="https://avatar.vercel.sh/shadcn1"71 alt="Photo"72 fill73 className="h-full w-full rounded-lg object-cover grayscale dark:brightness-20"74 />75 </AspectRatio>76 </Example>77 )78}
What it pulls in
Other registry items
Files it writes
More from shadcn/ui
All 133 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion-example | shadcn/ui | Examples | Free | no deps | |
| Alert Dialogalert-dialog-example | shadcn/ui | Examples | Free | no deps | |
| Alertalert-example | shadcn/ui | Examples | Free | no deps | |
| Avataravatar-example | shadcn/ui | Examples | Free | no deps | |
| Badgebadge-example | shadcn/ui | Examples | Free | no deps | |
| Breadcrumbbreadcrumb-example | shadcn/ui | Examples | Free | no deps | |
| Buttonbutton-example | shadcn/ui | Examples | Free | no deps | |
| Button Groupbutton-group-example | shadcn/ui | Examples | Free | no deps |
