mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 22:54:18 +00:00
* feat: rtl * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add sidebar * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
39 lines
734 B
TypeScript
39 lines
734 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { Skeleton } from "@/examples/base/ui-rtl/skeleton"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {},
|
|
},
|
|
}
|
|
|
|
export function SkeletonRtl() {
|
|
const { dir } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<div className="flex items-center gap-4" dir={dir}>
|
|
<Skeleton className="h-12 w-12 rounded-full" />
|
|
<div className="space-y-2">
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|