Files
shadcn-ui/apps/v4/examples/base/label-rtl.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

45 lines
869 B
TypeScript

"use client"
import * as React from "react"
import {
useTranslation,
type Translations,
} from "@/components/language-selector"
import { Checkbox } from "@/styles/base-nova/ui-rtl/checkbox"
import { Label } from "@/styles/base-nova/ui-rtl/label"
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>
)
}