import React from 'react'; import { StyleSheet, View, Text } from 'react-native'; import { Marker } from '../marker'; import type { ClusterProps } from './types'; export function Cluster(props: ClusterProps) { return ( {props.pointCountAbbreviated} ); } export const styles = StyleSheet.create({ container: { width: 30, height: 30, borderRadius: 9999, backgroundColor: '#1380FF', alignItems: 'center', justifyContent: 'center', }, text: { textAlign: 'center', fontWeight: '500', }, });