1- import * as React from " react"
2- import * as DropdownMenuPrimitive from " @radix-ui/react-dropdown-menu"
3- import { CheckIcon , ChevronRightIcon , CircleIcon } from " lucide-react"
1+ import * as React from ' react'
2+ import * as DropdownMenuPrimitive from ' @radix-ui/react-dropdown-menu'
3+ import { CheckIcon , ChevronRightIcon , CircleIcon } from ' lucide-react'
44
5- import { cn } from " @repo/ui/lib/utils"
5+ import { cn } from ' @repo/ui/lib/utils'
66
77function DropdownMenu ( {
88 ...props
@@ -40,7 +40,7 @@ function DropdownMenuContent({
4040 data-slot = "dropdown-menu-content"
4141 sideOffset = { sideOffset }
4242 className = { cn (
43- " bg-popover text-popover-foreground 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 z-50 max-h-(--radix-dropdown-menu-content-available-height) min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md" ,
43+ ' bg-popover text-popover-foreground 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 z-50 max-h-(--radix-dropdown-menu-content-available-height) min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md' ,
4444 className
4545 ) }
4646 { ...props }
@@ -60,11 +60,11 @@ function DropdownMenuGroup({
6060function DropdownMenuItem ( {
6161 className,
6262 inset,
63- variant = " default" ,
63+ variant = ' default' ,
6464 ...props
6565} : React . ComponentProps < typeof DropdownMenuPrimitive . Item > & {
6666 inset ?: boolean
67- variant ?: " default" | " destructive"
67+ variant ?: ' default' | ' destructive'
6868} ) {
6969 return (
7070 < DropdownMenuPrimitive . Item
@@ -153,7 +153,7 @@ function DropdownMenuLabel({
153153 data-slot = "dropdown-menu-label"
154154 data-inset = { inset }
155155 className = { cn (
156- " px-2 py-1.5 text-sm font-medium data-[inset]:pl-8" ,
156+ ' px-2 py-1.5 text-sm font-medium data-[inset]:pl-8' ,
157157 className
158158 ) }
159159 { ...props }
@@ -168,7 +168,7 @@ function DropdownMenuSeparator({
168168 return (
169169 < DropdownMenuPrimitive . Separator
170170 data-slot = "dropdown-menu-separator"
171- className = { cn ( " bg-border -mx-1 my-1 h-px" , className ) }
171+ className = { cn ( ' bg-border -mx-1 my-1 h-px' , className ) }
172172 { ...props }
173173 />
174174 )
@@ -177,12 +177,12 @@ function DropdownMenuSeparator({
177177function DropdownMenuShortcut ( {
178178 className,
179179 ...props
180- } : React . ComponentProps < " span" > ) {
180+ } : React . ComponentProps < ' span' > ) {
181181 return (
182182 < span
183183 data-slot = "dropdown-menu-shortcut"
184184 className = { cn (
185- " text-muted-foreground ml-auto text-xs tracking-widest" ,
185+ ' text-muted-foreground ml-auto text-xs tracking-widest' ,
186186 className
187187 ) }
188188 { ...props }
@@ -209,7 +209,7 @@ function DropdownMenuSubTrigger({
209209 data-slot = "dropdown-menu-sub-trigger"
210210 data-inset = { inset }
211211 className = { cn (
212- " focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8" ,
212+ ' focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8' ,
213213 className
214214 ) }
215215 { ...props }
@@ -228,7 +228,7 @@ function DropdownMenuSubContent({
228228 < DropdownMenuPrimitive . SubContent
229229 data-slot = "dropdown-menu-sub-content"
230230 className = { cn (
231- " bg-popover text-popover-foreground 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 z-50 min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-lg" ,
231+ ' bg-popover text-popover-foreground 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 z-50 min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-lg' ,
232232 className
233233 ) }
234234 { ...props }
0 commit comments