CommandRtl() — ui Function Reference
Architecture documentation for the CommandRtl() function in command-rtl.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD fad75d04_44f7_500f_8ef3_6040f7c3a414["CommandRtl()"] 651cdd91_a66d_9111_5982_aa8ea6ad4dad["command-rtl.tsx"] fad75d04_44f7_500f_8ef3_6040f7c3a414 -->|defined in| 651cdd91_a66d_9111_5982_aa8ea6ad4dad style fad75d04_44f7_500f_8ef3_6040f7c3a414 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/radix/command-rtl.tsx lines 73–116
export function CommandRtl() {
const { dir, t } = useTranslation(translations, "ar")
return (
<Command className="max-w-sm rounded-lg border" dir={dir}>
<CommandInput placeholder={t.placeholder} dir={dir} />
<CommandList>
<CommandEmpty>{t.empty}</CommandEmpty>
<CommandGroup heading={t.suggestions}>
<CommandItem>
<Calendar />
<span>{t.calendar}</span>
</CommandItem>
<CommandItem>
<Smile />
<span>{t.searchEmoji}</span>
</CommandItem>
<CommandItem disabled>
<Calculator />
<span>{t.calculator}</span>
</CommandItem>
</CommandGroup>
<CommandSeparator />
<CommandGroup heading={t.settings}>
<CommandItem>
<User />
<span>{t.profile}</span>
<CommandShortcut>⌘P</CommandShortcut>
</CommandItem>
<CommandItem>
<CreditCard />
<span>{t.billing}</span>
<CommandShortcut>⌘B</CommandShortcut>
</CommandItem>
<CommandItem>
<Settings />
<span>{t.settings}</span>
<CommandShortcut>⌘S</CommandShortcut>
</CommandItem>
</CommandGroup>
</CommandList>
</Command>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does CommandRtl() do?
CommandRtl() is a function in the ui codebase, defined in apps/v4/examples/radix/command-rtl.tsx.
Where is CommandRtl() defined?
CommandRtl() is defined in apps/v4/examples/radix/command-rtl.tsx at line 73.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free