mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import Image from "next/image"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
import { AspectRatio } from "@/styles/base-nova/ui-rtl/aspect-ratio"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
caption: "Beautiful landscape",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
caption: "منظر طبيعي جميل",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
caption: "נוף יפה",
|
|
},
|
|
},
|
|
}
|
|
|
|
export function AspectRatioRtl() {
|
|
const { dir, t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<figure className="w-full max-w-sm" dir={dir}>
|
|
<AspectRatio ratio={16 / 9} className="rounded-lg bg-muted">
|
|
<Image
|
|
src="https://avatar.vercel.sh/shadcn1"
|
|
alt="Photo"
|
|
fill
|
|
className="rounded-lg object-cover grayscale dark:brightness-20"
|
|
/>
|
|
</AspectRatio>
|
|
<figcaption className="mt-2 text-center text-sm text-muted-foreground">
|
|
{t.caption}
|
|
</figcaption>
|
|
</figure>
|
|
)
|
|
}
|