This repository was archived by the owner on Nov 20, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
packages/section-blog-theme/components/Command Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 11import * as React from "react"
2- import { File , SearchIcon } from 'lucide-react' ;
2+ import { File , CommandIcon } from 'lucide-react' ;
33import {
44 CommandDialog ,
55 CommandEmpty ,
@@ -45,7 +45,7 @@ export function SearchCommandDialog() {
4545 size = { "icon" }
4646 onClick = { ( ) => setOpen ( ! open ) }
4747 >
48- < SearchIcon className = "h-5 w-5" />
48+ < CommandIcon className = "h-5 w-5" />
4949 </ Button >
5050 </ TooltipTrigger >
5151
@@ -56,11 +56,12 @@ export function SearchCommandDialog() {
5656 </ TooltipProvider >
5757
5858 < CommandDialog open = { open } onOpenChange = { setOpen } >
59- < CommandInput placeholder = "Type a command or search..." />
60-
61-
59+
60+ < CommandInput placeholder = { "Type a command or search..." } />
61+
6262 < CommandList >
63- < CommandEmpty > No results found.</ CommandEmpty >
63+
64+ < CommandEmpty > No results found.</ CommandEmpty >
6465
6566 {
6667 data && Object . entries ( data ) . map ( ( [ key , value ] ) => {
@@ -77,7 +78,9 @@ export function SearchCommandDialog() {
7778 }
7879
7980 < CommandSeparator />
81+
8082 </ CommandList >
83+
8184 </ CommandDialog >
8285 </ >
8386 )
You can’t perform that action at this time.
0 commit comments