2024-06-03 12:42:30 +05:30
|
|
|
import { StyleSheet } from "react-native";
|
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
2024-11-14 17:52:00 +05:30
|
|
|
container: {
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
},
|
|
|
|
|
box: {
|
|
|
|
|
position: "relative",
|
|
|
|
|
},
|
|
|
|
|
tooltipBorder: {
|
|
|
|
|
borderLeftColor: "transparent",
|
|
|
|
|
borderRightColor: "transparent",
|
|
|
|
|
borderStyle: "solid",
|
|
|
|
|
},
|
|
|
|
|
tooltipInner: {
|
|
|
|
|
position: "absolute",
|
|
|
|
|
borderLeftColor: "transparent",
|
|
|
|
|
borderRightColor: "transparent",
|
|
|
|
|
borderStyle: "solid",
|
|
|
|
|
zIndex: 2,
|
|
|
|
|
},
|
2024-06-03 12:42:30 +05:30
|
|
|
});
|
2024-11-14 17:52:00 +05:30
|
|
|
|
|
|
|
|
export default styles;
|