"use client" import * as React from "react" import { Item, ItemContent, ItemMedia, ItemTitle, } from "@/examples/base/ui-rtl/item" import { Spinner } from "@/examples/base/ui-rtl/spinner" import { useTranslation, type Translations, } from "@/components/language-selector" const translations: Translations = { en: { dir: "ltr", values: { title: "Processing payment...", amount: "$100.00", }, }, ar: { dir: "rtl", values: { title: "جاري معالجة الدفع...", amount: "١٠٠.٠٠ دولار", }, }, he: { dir: "rtl", values: { title: "מעבד תשלום...", amount: "$100.00", }, }, } export function SpinnerRtl() { const { dir, t } = useTranslation(translations, "ar") return (
{t.title} {t.amount}
) }