Progress
Progress displays the current progress of an operation.
Examples
import React from 'react';
import ReactDOM from 'react-dom';
import { Progress } from 'furl-components';
ReactDOM.render(
<Progress value={65} max={100} color='success' />,
document.getElementById('root')
);API
| Property | Description | Type | Default | ||
|---|---|---|---|---|---|
| color | progres color | string | 'plain' | ||
| size | progres size | string | 'normal' | ||
| value | progres value | int | 0 | ||
| max | progres maximum value | int | 100 | ||
Notes
colorcan be any of the predefined color palettes ('plain','primary','secondary','success','warning'or'danger').sizecan be either'normal'or'large'.
