| 3 | import {StyleSheet, View} from 'react-native'; |
| 4 | |
| 5 | class CustomCallout extends React.Component<any, any> { |
| 6 | render() { |
| 7 | return ( |
| 8 | <View style={[styles.container, this.props.style]}> |
| 9 | <View style={styles.bubble}> |
| 10 | <View style={styles.amount}>{this.props.children}</View> |
| 11 | </View> |
| 12 | <View style={styles.arrowBorder} /> |
| 13 | <View style={styles.arrow} /> |
| 14 | </View> |
| 15 | ); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | const styles = StyleSheet.create({ |
| 20 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…