diff options
Diffstat (limited to 'src/view/com/util/PressableWithHover.tsx')
-rw-r--r-- | src/view/com/util/PressableWithHover.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/view/com/util/PressableWithHover.tsx b/src/view/com/util/PressableWithHover.tsx index 19a1968cc..f4006a526 100644 --- a/src/view/com/util/PressableWithHover.tsx +++ b/src/view/com/util/PressableWithHover.tsx @@ -1,6 +1,11 @@ -import {forwardRef, PropsWithChildren} from 'react' -import {Pressable, PressableProps, StyleProp, ViewStyle} from 'react-native' -import {View} from 'react-native' +import {forwardRef, type PropsWithChildren} from 'react' +import { + Pressable, + type PressableProps, + type StyleProp, + type ViewStyle, +} from 'react-native' +import {type View} from 'react-native' import {addStyle} from '#/lib/styles' import {useInteractionState} from '#/components/hooks/useInteractionState' |