26 lines
508 B
TypeScript
26 lines
508 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
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,
|
|
},
|
|
});
|
|
|
|
export default styles;
|