Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/app/src/components/commands/AppCommandShortcutHint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface AppCommandShortcutPillProps {
className?: string;
}

const APP_COMMAND_SHORTCUT_HINT_CLASS =
export const APP_COMMAND_ACCESSORY_PILL_CLASS =
"pointer-events-none inline-flex shrink-0 items-center justify-center whitespace-nowrap rounded-sm bg-state-hover px-1.5 py-1 font-sans text-xs font-normal leading-none tabular-nums text-subtle-foreground opacity-60";

export function AppCommandShortcutPill({
Expand All @@ -24,7 +24,7 @@ export function AppCommandShortcutPill({
return (
<kbd
aria-hidden={ariaHidden}
className={cn(APP_COMMAND_SHORTCUT_HINT_CLASS, className)}
className={cn(APP_COMMAND_ACCESSORY_PILL_CLASS, className)}
>
{shortcut.label}
</kbd>
Expand Down
Loading
Loading