mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
19 lines
445 B
TypeScript
19 lines
445 B
TypeScript
import Image from "next/image"
|
|
import { AspectRatio } from "@/examples/base/ui/aspect-ratio"
|
|
|
|
export function AspectRatioSquare() {
|
|
return (
|
|
<AspectRatio
|
|
ratio={1 / 1}
|
|
className="w-full max-w-[12rem] rounded-lg bg-muted"
|
|
>
|
|
<Image
|
|
src="https://avatar.vercel.sh/shadcn1"
|
|
alt="Photo"
|
|
fill
|
|
className="rounded-lg object-cover grayscale dark:brightness-20"
|
|
/>
|
|
</AspectRatio>
|
|
)
|
|
}
|