@@ -20,15 +20,15 @@ export const DropdownMenu = DropdownMenuPrimitive.Root;
20
20
21
21
export const DropdownMenuTrigger = DropdownMenuPrimitive . Trigger ;
22
22
23
- export const DropdownMenuGroup = DropdownMenuPrimitive . Group ;
23
+ const DropdownMenuGroup = DropdownMenuPrimitive . Group ;
24
24
25
- export const DropdownMenuPortal = DropdownMenuPrimitive . Portal ;
25
+ const DropdownMenuPortal = DropdownMenuPrimitive . Portal ;
26
26
27
- export const DropdownMenuSub = DropdownMenuPrimitive . Sub ;
27
+ const DropdownMenuSub = DropdownMenuPrimitive . Sub ;
28
28
29
- export const DropdownMenuRadioGroup = DropdownMenuPrimitive . RadioGroup ;
29
+ const DropdownMenuRadioGroup = DropdownMenuPrimitive . RadioGroup ;
30
30
31
- export const DropdownMenuSubTrigger = forwardRef <
31
+ const DropdownMenuSubTrigger = forwardRef <
32
32
ElementRef < typeof DropdownMenuPrimitive . SubTrigger > ,
33
33
ComponentPropsWithoutRef < typeof DropdownMenuPrimitive . SubTrigger > & {
34
34
inset ?: boolean ;
@@ -53,7 +53,7 @@ export const DropdownMenuSubTrigger = forwardRef<
53
53
DropdownMenuSubTrigger . displayName =
54
54
DropdownMenuPrimitive . SubTrigger . displayName ;
55
55
56
- export const DropdownMenuSubContent = forwardRef <
56
+ const DropdownMenuSubContent = forwardRef <
57
57
ElementRef < typeof DropdownMenuPrimitive . SubContent > ,
58
58
ComponentPropsWithoutRef < typeof DropdownMenuPrimitive . SubContent >
59
59
> ( ( { className, ...props } , ref ) => (
@@ -121,7 +121,7 @@ export const DropdownMenuItem = forwardRef<
121
121
) ) ;
122
122
DropdownMenuItem . displayName = DropdownMenuPrimitive . Item . displayName ;
123
123
124
- export const DropdownMenuCheckboxItem = forwardRef <
124
+ const DropdownMenuCheckboxItem = forwardRef <
125
125
ElementRef < typeof DropdownMenuPrimitive . CheckboxItem > ,
126
126
ComponentPropsWithoutRef < typeof DropdownMenuPrimitive . CheckboxItem >
127
127
> ( ( { className, children, checked, ...props } , ref ) => (
@@ -148,7 +148,7 @@ export const DropdownMenuCheckboxItem = forwardRef<
148
148
DropdownMenuCheckboxItem . displayName =
149
149
DropdownMenuPrimitive . CheckboxItem . displayName ;
150
150
151
- export const DropdownMenuRadioItem = forwardRef <
151
+ const DropdownMenuRadioItem = forwardRef <
152
152
ElementRef < typeof DropdownMenuPrimitive . RadioItem > ,
153
153
ComponentPropsWithoutRef < typeof DropdownMenuPrimitive . RadioItem >
154
154
> ( ( { className, children, ...props } , ref ) => (
@@ -173,7 +173,7 @@ export const DropdownMenuRadioItem = forwardRef<
173
173
) ) ;
174
174
DropdownMenuRadioItem . displayName = DropdownMenuPrimitive . RadioItem . displayName ;
175
175
176
- export const DropdownMenuLabel = forwardRef <
176
+ const DropdownMenuLabel = forwardRef <
177
177
ElementRef < typeof DropdownMenuPrimitive . Label > ,
178
178
ComponentPropsWithoutRef < typeof DropdownMenuPrimitive . Label > & {
179
179
inset ?: boolean ;
@@ -202,7 +202,7 @@ export const DropdownMenuSeparator = forwardRef<
202
202
) ) ;
203
203
DropdownMenuSeparator . displayName = DropdownMenuPrimitive . Separator . displayName ;
204
204
205
- export const DropdownMenuShortcut = ( {
205
+ const DropdownMenuShortcut = ( {
206
206
className,
207
207
...props
208
208
} : HTMLAttributes < HTMLSpanElement > ) => {
0 commit comments