import { cn } from "@/shared/lib/utils" type AedSymbolProps = { className?: string /** Accessible label for screen readers. Defaults to "Dirham" (do not show "AED" alongside the symbol per CBUAE guidelines). */ title?: string } /** * Official UAE Dirham symbol (CBUAE, 2025). * Glyph source: Central Bank of the UAE, released under CC0. * Per CBUAE guidelines: place immediately before the amount, match numeral size/style, * preserve aspect ratio (no distortion), and do not pair with the visible text "AED". */ export function AedSymbol({ className, title = "Dirham" }: AedSymbolProps) { return ( {title} ) }