www/apps/ui/app/components/command-bar/page.mdx
import { ComponentExample } from "@/components/ComponentExample" import { ComponentReference } from "@/components/ComponentReference"
export const metadata = {
title: Command Bar,
}
A component that displays a command bar with a list of commands to perform on a bulk selection of items.
In this guide, you'll learn how to use the Command Bar component.
<ComponentExample name="command-bar-demo" />import { CommandBar } from "@medusajs/ui"
<CommandBar open={open}>
<CommandBar.Bar>
<CommandBar.Value>{count} selected</CommandBar.Value>
<CommandBar.Seperator />
<CommandBar.Command
action={onDelete}
label="Delete"
shortcut="d"
/>
<CommandBar.Seperator />
<CommandBar.Command
action={onEdit}
label="Edit"
shortcut="e"
/>
</CommandBar.Bar>
</CommandBar>
<ComponentReference mainComponent="CommandBar" componentsToShow={[ "CommandBar", "CommandBar.Bar", "CommandBar.Value", "CommandBar.Seperator", "CommandBar.Command" ]} hideFeedback />