import {formatAbbreviatedNumber} from 'sentry/utils/formatters'; type Props = { value: string | number; className?: string; }; function Count({value, className}: Props) { return ( {formatAbbreviatedNumber(value)} ); } export default Count;