diff options
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/shadcn/command.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/ui/shadcn/command.tsx b/packages/ui/shadcn/command.tsx index ed929aa2..e91973be 100644 --- a/packages/ui/shadcn/command.tsx +++ b/packages/ui/shadcn/command.tsx @@ -3,7 +3,6 @@ import * as React from "react"; import { type DialogProps } from "@radix-ui/react-dialog"; import { Command as CommandPrimitive } from "cmdk"; -import { Search } from "lucide-react"; import { cn } from "@repo/ui/lib/utils"; import { Dialog, DialogContent } from "@repo/ui/shadcn/dialog"; @@ -39,7 +38,6 @@ const CommandInput = React.forwardRef< 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" /> <CommandPrimitive.Input ref={ref} className={cn( |