Files
super-app/App/common/styles/BaseBottomSheetComponentStyles.ts
2024-03-27 15:06:03 +00:00

30 lines
479 B
TypeScript

import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
modal: {
justifyContent: "flex-end",
margin: 0,
},
modalContent: {
backgroundColor: "white",
borderTopRightRadius: 8,
borderTopLeftRadius: 8,
overflow: "hidden",
},
barContainer: {
alignItems: "center",
paddingVertical: 10,
},
barIcon: {
width: 60,
height: 5,
backgroundColor: "#bbb",
borderRadius: 3,
},
});
export default styles;