You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 lines
198 B

  1. import './badge.scss';
  2. import {createElement} from "../../_global/scripts/helpers";
  3. export const createBadge = ({
  4. count = 8,
  5. }) => {
  6. return createElement('span', ['badge'], count.toString());
  7. }