# mzj-npm-component

> Simple react component progress bar.

Latest version **1.1.7** (published 2017-07-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install mzj-npm-component
pnpm add mzj-npm-component
yarn add mzj-npm-component
bun add mzj-npm-component
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.7 |
| Published | 2017-07-05 |
| First published | 2017-07-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| Author | Matthew Jimenez |
| Maintainers | mattzjimenez |
| Keywords | react-component, react, progress bar, percent, progress |

## Links

- npm: https://www.npmjs.com/package/mzj-npm-component
- npm.io page: https://npm.io/package/mzj-npm-component

## Dependencies (3)

- [bootstrap](https://npm.io/package/bootstrap.md) ^3.3.7
- [prop-types](https://npm.io/package/prop-types.md) ^15.5.10
- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.6.1

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.1.7 (latest) — 2017-07-05
- 1.1.6 — 2017-07-05
- 1.1.5 — 2017-07-05
- 1.1.4 — 2017-07-03
- 1.1.3 — 2017-07-03
- 1.1.2 — 2017-07-03
- 1.1.1 — 2017-07-03
- 1.1.0 — 2017-07-03
- 1.0.9 — 2017-07-03
- 1.0.8 — 2017-07-03
- 1.0.7 — 2017-07-03
- 1.0.6 — 2017-07-03
- 1.0.5 — 2017-07-03
- 1.0.4 — 2017-07-03
- 1.0.3 — 2017-07-03
- … 2 more at https://npm.io/package/mzj-npm-component/versions

## README

# MZJ-NPM-COMPONENT

This package includes a react component that acts as a progress bar.  
The progress bar takes one argument of type _number_ which serves  
as the percentage you wish to display.

```jsx harmony
import React from 'react'

//import component
import ReactPBar from 'mzj-npm-component'
// import styles for progress bar 
import 'mzj-npm-component/dist/styles/style.css'

class App extends React.Component {
    
    render () {
        const my_percentage = 100;
        return (
            <div>
            
                {/* Pass argument to percentage parameter */}
                <ReactPBar percentage={my_percentage}/>
            </div>
        )
    }
};

export default App;
```

---
_Source: https://npm.io/package/mzj-npm-component · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
