mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 04:35:46 +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
43 lines
811 B
TypeScript
43 lines
811 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { Toggle } from "@/examples/base/ui-rtl/toggle"
|
|
import { BookmarkIcon } from "lucide-react"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
label: "Bookmark",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
label: "إشارة مرجعية",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
label: "סימנייה",
|
|
},
|
|
},
|
|
}
|
|
|
|
export function ToggleRtl() {
|
|
const { dir, t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<Toggle aria-label="Toggle bookmark" size="sm" variant="outline" dir={dir}>
|
|
<BookmarkIcon className="group-aria-pressed/toggle:fill-foreground" />
|
|
{t.label}
|
|
</Toggle>
|
|
)
|
|
}
|