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

58 lines
1.4 KiB
TypeScript

"use client"
import * as React from "react"
import {
useTranslation,
type Translations,
} from "@/components/language-selector"
import {
Field,
FieldContent,
FieldDescription,
FieldLabel,
} from "@/styles/base-nova/ui-rtl/field"
import { Switch } from "@/styles/base-nova/ui-rtl/switch"
const translations: Translations = {
en: {
dir: "ltr",
values: {
label: "Share across devices",
description:
"Focus is shared across devices, and turns off when you leave the app.",
},
},
ar: {
dir: "rtl",
values: {
label: "المشاركة عبر الأجهزة",
description:
"يتم مشاركة التركيز عبر الأجهزة، ويتم إيقاف تشغيله عند مغادرة التطبيق.",
},
},
he: {
dir: "rtl",
values: {
label: "שיתוף בין מכשירים",
description: "המיקוד משותף בין מכשירים, וכבה כשאתה עוזב את האפליקציה.",
},
},
}
export function SwitchRtl() {
const { dir, t } = useTranslation(translations, "ar")
return (
<Field orientation="horizontal" className="max-w-sm" dir={dir}>
<FieldContent>
<FieldLabel htmlFor="switch-focus-mode-rtl" dir={dir}>
{t.label}
</FieldLabel>
<FieldDescription dir={dir}>{t.description}</FieldDescription>
</FieldContent>
<Switch id="switch-focus-mode-rtl" dir={dir} />
</Field>
)
}