Skip to content

Commit a164e86

Browse files
authored
UI: improved back icon for command palette (#1991)
1 parent 12153e8 commit a164e86

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

apps/mail/components/context/command-palette-context.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {
2+
ArrowLeft,
23
ArrowRight,
34
Calendar as CalendarIcon,
45
Clock,
@@ -1098,7 +1099,7 @@ export function CommandPalette({ children }: { children: React.ReactNode }) {
10981099
<>
10991100
<div className="flex items-center border-b px-3">
11001101
<button
1101-
className="text-muted-foreground hover:text-foreground mr-2"
1102+
className="text-muted-foreground hover:text-foreground ml-2"
11021103
onClick={() => {
11031104
if (selectedDateFilter) {
11041105
setSelectedDateFilter(null);
@@ -1109,7 +1110,7 @@ export function CommandPalette({ children }: { children: React.ReactNode }) {
11091110
}
11101111
}}
11111112
>
1112-
1113+
<ArrowLeft className="h-4 w-4"/>
11131114
</button>
11141115
<CommandInput
11151116
autoFocus
@@ -1405,10 +1406,10 @@ export function CommandPalette({ children }: { children: React.ReactNode }) {
14051406
<>
14061407
<div className="flex items-center border-b px-3">
14071408
<button
1408-
className="text-muted-foreground hover:text-foreground mr-2"
1409+
className="text-muted-foreground hover:text-foreground ml-2"
14091410
onClick={() => setCurrentView('filter')}
14101411
>
1411-
1412+
<ArrowLeft className="h-4 w-4"/>
14121413
</button>
14131414
<CommandInput
14141415
autoFocus

0 commit comments

Comments
 (0)