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.
 
 
 
 

12 lines
325 B

  1. import './progress-bar.scss';
  2. import {createElement} from "../../_global/scripts/helpers";
  3. export const createProgressBar = ({
  4. progress = 50,
  5. }) => {
  6. const div = createElement('div', ['progress']);
  7. const span = createElement('span', ['bar'], null, div);
  8. span.style.width = progress.toString() + '%';
  9. return div;
  10. }