mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +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
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { Badge } from "@/examples/base/ui-rtl/badge"
|
|
import { BadgeCheck, BookmarkIcon } from "lucide-react"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
badge: "Badge",
|
|
secondary: "Secondary",
|
|
destructive: "Destructive",
|
|
outline: "Outline",
|
|
verified: "Verified",
|
|
bookmark: "Bookmark",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
badge: "شارة",
|
|
secondary: "ثانوي",
|
|
destructive: "مدمر",
|
|
outline: "مخطط",
|
|
verified: "متحقق",
|
|
bookmark: "إشارة مرجعية",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
badge: "תג",
|
|
secondary: "משני",
|
|
destructive: "הרסני",
|
|
outline: "קווי מתאר",
|
|
verified: "מאומת",
|
|
bookmark: "סימנייה",
|
|
},
|
|
},
|
|
}
|
|
|
|
export function BadgeRtl() {
|
|
const { dir, t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<div className="flex w-full flex-wrap justify-center gap-2" dir={dir}>
|
|
<Badge>{t.badge}</Badge>
|
|
<Badge variant="secondary">{t.secondary}</Badge>
|
|
<Badge variant="destructive">{t.destructive}</Badge>
|
|
<Badge variant="outline">{t.outline}</Badge>
|
|
<Badge variant="secondary">
|
|
<BadgeCheck data-icon="inline-start" />
|
|
{t.verified}
|
|
</Badge>
|
|
<Badge variant="outline">
|
|
{t.bookmark}
|
|
<BookmarkIcon data-icon="inline-end" />
|
|
</Badge>
|
|
</div>
|
|
)
|
|
}
|