"use client" import * as React from "react" import { Separator } from "@/examples/base/ui-rtl/separator" import { useTranslation, type Translations, } from "@/components/language-selector" const translations: Translations = { en: { dir: "ltr", values: { title: "shadcn/ui", subtitle: "The Foundation for your Design System", description: "A set of beautifully designed components that you can customize, extend, and build on.", }, }, ar: { dir: "rtl", values: { title: "shadcn/ui", subtitle: "الأساس لنظام التصميم الخاص بك", description: "مجموعة من المكونات المصممة بشكل جميل يمكنك تخصيصها وتوسيعها والبناء عليها.", }, }, he: { dir: "rtl", values: { title: "shadcn/ui", subtitle: "הבסיס למערכת העיצוב שלך", description: "סט של רכיבים מעוצבים בצורה יפה שאתה יכול להתאים אישית, להרחיב ולבנות עליהם.", }, }, } export function SeparatorRtl() { const { dir, t } = useTranslation(translations, "ar") return (