CountBadge.tsx 307 B

1234567891011121314151617
  1. import React, { FC } from 'react';
  2. type CountProps = {
  3. count: number
  4. }
  5. const CountBadge: FC<CountProps> = (props:CountProps) => {
  6. return (
  7. <>
  8. <span className="grw-count-badge px-2 badge badge-pill badge-light">
  9. {props.count}
  10. </span>
  11. </>
  12. );
  13. };
  14. export default CountBadge;