import React, { PureComponent } from "react"; import { StyleSheet, View } from "react-native"; const RADIUS = 20; export const Finger = ({ position }: { position: any[] }) => { const x = position[0] - RADIUS / 2; const y = position[1] - RADIUS / 2; return ( ) }; const styles = StyleSheet.create({ finger: { borderColor: "#CCC", borderWidth: 4, borderRadius: RADIUS * 2, width: RADIUS * 2, height: RADIUS * 2, backgroundColor: "pink", position: "absolute" } }); export default Finger;