about summary refs log tree commit diff
path: root/src/components/Menu/index.web.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Menu/index.web.tsx')
-rw-r--r--src/components/Menu/index.web.tsx17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx
index 314769934..2004ee7c6 100644
--- a/src/components/Menu/index.web.tsx
+++ b/src/components/Menu/index.web.tsx
@@ -1,23 +1,24 @@
 /* eslint-disable react/prop-types */
 
-import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
 import React from 'react'
-import {Pressable, StyleProp, View, ViewStyle} from 'react-native'
+import {View, Pressable, ViewStyle, StyleProp} from 'react-native'
+import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
 
-import {atoms as a, flatten, useTheme, web} from '#/alf'
 import * as Dialog from '#/components/Dialog'
 import {useInteractionState} from '#/components/hooks/useInteractionState'
-import {Context} from '#/components/Menu/context'
+import {atoms as a, useTheme, flatten, web} from '#/alf'
+import {Text} from '#/components/Typography'
+
 import {
   ContextType,
-  GroupProps,
-  ItemIconProps,
+  TriggerProps,
   ItemProps,
+  GroupProps,
   ItemTextProps,
+  ItemIconProps,
   RadixPassThroughTriggerProps,
-  TriggerProps,
 } from '#/components/Menu/types'
-import {Text} from '#/components/Typography'
+import {Context} from '#/components/Menu/context'
 
 export function useMenuControl(): Dialog.DialogControlProps {
   const id = React.useId()