1.0.1 • Published 3 years ago

tiny-circular-progressbar v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

tiny-circular-progressbar

The tiniest circular progress bar

npm npm bundle size

Creates a tiny circular progress bar.

Install

$ npm install tiny-circular-progressbar

Usage

import React from "react";
import { useEffect } from "react";
import * as CircleProgress from "tiny-circular-progressbar";

useEffect(() => {
  new CircleProgress("progressbar_class_name", {
    max: 100,
    value: 60,
    textFormat: "percent",
  });
}, []);