@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
19 lines (18 loc) • 437 B
JavaScript
import { StyleSheet } from 'react-native';
import { WINDOW_WIDTH } from '../../constants';
export const styles = StyleSheet.create({
container: {
padding: 10,
// @ts-ignore supported on web
cursor: 'grab'
},
indicator: {
alignSelf: 'center',
width: 7.5 * WINDOW_WIDTH / 100,
height: 4,
borderRadius: 4,
backgroundColor: 'rgba(0, 0, 0, 0.75)'
}
});
//# sourceMappingURL=styles.js.map
;