mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 07:34:11 +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
45 lines
863 B
TypeScript
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>
|
|
)
|
|
}
|