import styles from './Indicator.module.scss'; type Props = { value: number; }; const Indicator = ({ value }: Props) => {value > 99 ? '99+' : value}; export { Indicator };