Files
shadcn-ui/apps/v4/examples/base/label-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

45 lines
863 B
TypeScript

"use client"
import * as React from "react"
import { Checkbox } from "@/examples/base/ui-rtl/checkbox"
import { Label } from "@/examples/base/ui-rtl/label"
import {
useTranslation,
type Translations,
} from "@/components/language-selector"
const translations: Translations = {
en: {
dir: "ltr",
values: {
label: "Accept terms and conditions",
},
},
ar: {
dir: "rtl",
values: {
label: "قبول الشروط والأحكام",
},
},
he: {
dir: "rtl",
values: {
label: "קבל תנאים והגבלות",
},
},
}
export function LabelRtl() {
const { dir, t } = useTranslation(translations, "ar")
return (
<div className="flex gap-2" dir={dir}>
<Checkbox id="terms-rtl" dir={dir} />
<Label htmlFor="terms-rtl" dir={dir}>
{t.label}
</Label>
</div>
)
}