We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e0473 commit e5c077bCopy full SHA for e5c077b
src/components/bottomSheetHandle/styles.ts
@@ -1,11 +1,16 @@
1
-import { StyleSheet } from 'react-native';
+import { Platform, StyleSheet } from 'react-native';
2
import { WINDOW_WIDTH } from '../../constants';
3
4
+
5
export const styles = StyleSheet.create({
6
container: {
7
padding: 10,
- // @ts-ignore supported on web
8
- cursor: 'grab',
+ ...Platform.select({
9
+ web: {
10
+ cursor: 'pointer' as const
11
+ },
12
+ default: {}
13
+ }),
14
},
15
16
indicator: {
0 commit comments