import React from 'react'; import {View, Text, StyleSheet, ViewProps} from 'react-native'; interface FollowCountProps extends ViewProps { mode: 'followers' | 'following'; count: number; } const FollowCount: React.FC = ({style, mode, count}) => { const displayed: string = count < 5e3 ? `${count}` : count < 1e5 ? `${(count / 1e3).toFixed(1)}k` : count < 1e6 ? `${(count / 1e3).toFixed(0)}k` : `${count / 1e6}m`; return ( {displayed} {mode === 'followers' ? 'Followers' : 'Following'} ); }; const styles = StyleSheet.create({ container: { alignItems: 'center', }, count: { fontWeight: '700', fontSize: 18, }, label: { fontWeight: '400', fontSize: 16, }, }); export default FollowCount;