Because this library is being currently built for Electron and NW.js, the examples and demos on this site will only work properly in Chrome.

Progress Circle

Properties

Property Type Description
color string Sets the color of the progress circle.
hidden bool Sets the visibility of a component.
size number Sets the size of the progress circle.

Examples

import React, { Component } from 'react';
import { ProgressCircle } from 'react-desktop/windows';

export default class extends Component {
  static defaultProps = {
    color: '#cc7f29'
  };

  render() {
    return (
      <ProgressCircle
        color={this.props.color}
        size={100}
      />
    );
  }
}