import { faEye } from '@fortawesome/free-solid-svg-icons' import React from 'react' import Badge from './Badge' const FollowingBadge:React.FC<{ following: number|null}> = ({ following }) => { return ( ) } export default FollowingBadge