Files
shadcn-ui/apps/v4/examples/base/separator-rtl.tsx
shadcn 38de7fddc2 feat: rtl (#9498)
* 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
2026-01-30 21:08:39 +04:00

55 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client"
import * as React from "react"
import { Separator } from "@/examples/base/ui-rtl/separator"
import {
useTranslation,
type Translations,
} from "@/components/language-selector"
const translations: Translations = {
en: {
dir: "ltr",
values: {
title: "shadcn/ui",
subtitle: "The Foundation for your Design System",
description:
"A set of beautifully designed components that you can customize, extend, and build on.",
},
},
ar: {
dir: "rtl",
values: {
title: "shadcn/ui",
subtitle: "الأساس لنظام التصميم الخاص بك",
description:
"مجموعة من المكونات المصممة بشكل جميل يمكنك تخصيصها وتوسيعها والبناء عليها.",
},
},
he: {
dir: "rtl",
values: {
title: "shadcn/ui",
subtitle: "הבסיס למערכת העיצוב שלך",
description:
"סט של רכיבים מעוצבים בצורה יפה שאתה יכול להתאים אישית, להרחיב ולבנות עליהם.",
},
},
}
export function SeparatorRtl() {
const { dir, t } = useTranslation(translations, "ar")
return (
<div className="flex max-w-sm flex-col gap-4 text-sm" dir={dir}>
<div className="flex flex-col gap-1.5">
<div className="leading-none font-medium">{t.title}</div>
<div className="text-muted-foreground">{t.subtitle}</div>
</div>
<Separator />
<div>{t.description}</div>
</div>
)
}