aspect-ratio
9ui/aspect-ratioFreeComponent
9ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by 9ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://9ui.dev/r/aspect-ratio.jsonSource
1import * as React from "react"23import { cn } from "@/lib/utils"45function AspectRatio({6 children,7 className,8 ratio = 1,9 style,10 ...props11}: React.HTMLAttributes<HTMLDivElement> & {12 ratio?: number13}) {14 return (15 <div16 data-slot="aspect-ratio"17 style={{18 ...style,19 paddingBottom: `${(1 / ratio) * 100}%`,20 }}21 className={cn("relative w-full", className)}22 {...props}23 >24 <div className="absolute inset-0 size-full">{children}</div>25 </div>26 )27}2829export { AspectRatio }
Files it writes
More from 9ui
All 56 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| accordionaccordion | 9ui | Components | Free | no deps | |
| alertalert | 9ui | Components | Free | no deps | |
| alert-dialogalert-dialog | 9ui | Components | Free | no deps | |
| autocompleteautocomplete | 9ui | Components | Free | no deps | |
| avataravatar | 9ui | Components | Free | no deps | |
| badgebadge | 9ui | Components | Free | no deps | |
| breadcrumbsbreadcrumbs | 9ui | Components | Free | no deps | |
| buttonbutton | 9ui | Components | Free | no deps |
