@@ -23,7 +23,7 @@ const DropdownMenuSubTrigger = React.forwardRef<
2323 className = { cn (
2424 "flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent" ,
2525 inset && "pl-8" ,
26- className
26+ className ,
2727 ) }
2828 { ...props }
2929 >
@@ -42,7 +42,7 @@ const DropdownMenuSubContent = React.forwardRef<
4242 ref = { ref }
4343 className = { cn (
4444 "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2" ,
45- className
45+ className ,
4646 ) }
4747 { ...props }
4848 />
@@ -60,7 +60,7 @@ const DropdownMenuContent = React.forwardRef<
6060 sideOffset = { sideOffset }
6161 className = { cn (
6262 "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2" ,
63- className
63+ className ,
6464 ) }
6565 { ...props }
6666 />
@@ -79,7 +79,7 @@ const DropdownMenuItem = React.forwardRef<
7979 className = { cn (
8080 "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50" ,
8181 inset && "pl-8" ,
82- className
82+ className ,
8383 ) }
8484 { ...props }
8585 />
@@ -94,7 +94,7 @@ const DropdownMenuCheckboxItem = React.forwardRef<
9494 ref = { ref }
9595 className = { cn (
9696 "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50" ,
97- className
97+ className ,
9898 ) }
9999 checked = { checked }
100100 { ...props }
@@ -118,7 +118,7 @@ const DropdownMenuRadioItem = React.forwardRef<
118118 ref = { ref }
119119 className = { cn (
120120 "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50" ,
121- className
121+ className ,
122122 ) }
123123 { ...props }
124124 >
@@ -143,7 +143,7 @@ const DropdownMenuLabel = React.forwardRef<
143143 className = { cn (
144144 "px-2 py-1.5 text-sm font-semibold" ,
145145 inset && "pl-8" ,
146- className
146+ className ,
147147 ) }
148148 { ...props }
149149 />
0 commit comments