diff options
Diffstat (limited to 'packages/ui/shadcn/command.tsx')
| -rw-r--r-- | packages/ui/shadcn/command.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/ui/shadcn/command.tsx b/packages/ui/shadcn/command.tsx index ed929aa2..9b95f4c7 100644 --- a/packages/ui/shadcn/command.tsx +++ b/packages/ui/shadcn/command.tsx @@ -37,9 +37,8 @@ const CommandDialog = ({ children, ...props }: CommandDialogProps) => { const CommandInput = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Input>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input> ->(({ className, ...props }, ref) => ( - <div className="flex items-center px-3" cmdk-input-wrapper=""> - <Search className="mr-2 h-4 w-4 shrink-0 opacity-50" /> +>(({ className , ...props }, ref) => ( + <div className="" cmdk-input-wrapper=""> <CommandPrimitive.Input ref={ref} className={cn( |