loader_bar
v0.0.3
Published
This package provides amazing functionalities for a fully customized loader bar in react.
Downloads
2
Readme
What is loader_bar ?
This package provides amazing functionalities for a fully customized loader bar in react.
Installation
You can install this package via npm using the following command:
npm install loader_bar
- use:
import React from 'react'
import ProgressBar from 'loader_bar'
function App() {
return (
<ProgressBar/>
)
}
export default App
Parameter
you can pass some argument in parameter for example:
- height = '10px'
- width = '350px'
- color = "limegreen"
- text = "Completed"
- Percentage = [0, 10, 40, 60, 70, 90, 100]
but all are optional
import React from 'react'
import ProgressBar from './CustomButton'
function App() {
return (
<>
<ProgressBar
text_size = '25px'
height = '10px'
width = '350px'
color = "limegreen"
text = "Completed"
Percentage = {[0, 10, 40, 60, 70, 90, 100]}
/>
</>
)
}
export default App