diff --git a/components/common/Command/index.tsx b/components/common/Command/index.tsx index 17fdc643..b6d4449c 100644 --- a/components/common/Command/index.tsx +++ b/components/common/Command/index.tsx @@ -20,7 +20,7 @@ interface CommandDialogProps extends DialogProps {} const CommandDialog = ({ children, ...props }: CommandDialogProps) => { return ( - + {children} @@ -34,7 +34,10 @@ const CommandInput = forwardRef<
styles[c]) + )} {...props} />
@@ -48,7 +51,10 @@ const CommandList = forwardRef< >(({ className, ...props }, ref) => ( styles[c]) + )} {...props} /> )) @@ -59,7 +65,7 @@ const CommandEmpty = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >((props, ref) => ( - + )) CommandEmpty.displayName = CommandPrimitive.Empty.displayName @@ -70,7 +76,10 @@ const CommandGroup = forwardRef< >(({ className, ...props }, ref) => ( styles[c]) + )} {...props} /> )) @@ -83,7 +92,10 @@ const CommandSeparator = forwardRef< >(({ className, ...props }, ref) => ( styles[c]) + )} {...props} /> )) @@ -95,7 +107,10 @@ const CommandItem = forwardRef< >(({ className, ...props }, ref) => ( styles[c]) + )} {...props} /> )) @@ -108,7 +123,10 @@ const CommandShortcut = ({ }: React.HTMLAttributes) => { return ( styles[c]) + )} {...props} /> )