2.1.1 • Published 3 years ago

@pxblue/react-progress-icons v2.1.1

Weekly downloads
49
License
BSD-3-Clause
Repository
github
Last release
3 years ago

PX Blue Progress Icons

npm.io npm.io

This is a library of icons with dynamic fill capabilities that can be used to show progress (similar to a traditional progress spinner or bar). These can be used to show health, battery life, etc.

Currently, we have icons available for:

  • battery
  • heart
  • pie
  • ups

Installation

To install the PX Blue progress icons from NPM as a dependency for your project, you can run the following command in your project root:

yarn add @pxblue/react-progress-icons

Using the progress icons in your application

The progress icon components can be imported and used like you would use any other component. You can manually set the desired color for the icon, otherwise it will inherit the text color of its parent container;

import {Battery, Heart, Pie} from '@pxblue/react-progress-icons';
...
<Battery percent={100} size={36} color={'green'} charging={true} outlined={true}/>
<Heart percent={50} size={18} color={'pink'} outlined={true}/>
<Pie percent={50} size={48} color={'blue'} ring={4} outlined={true}/>

API

Shared Properties

These props are available on all of the progress icons in this package.

Prop NameDescriptionTypeRequiredDefault
backgroundColorBackground color for the unfilled areastringno
colorThe color used for the icon fillstringno'inherit'
labelColorLabel text colorstringno
labelPositionWhere to display the text label'top' | 'bottom' | 'center' | 'right' | 'left'nocenter
labelSizeSize of the label in pxnumbernosize/4
outlinedWhether to use the outlined stylebooleannofalse
percentThe amount to fill the icon (0-100)numberno100
showPercentLabelOption to show percentage overlaybooleannofalse
sizeThe size of the icon (in px)numberno24

Any other props supplied will be provided to the root element (svg).

Battery Properties

The battery supports all of the shared properties above and the following additional properties:

Prop NameDescriptionTypeRequiredDefault
chargingWhether to show the charging indicatorbooleannofalse

Pie Properties

The pie supports all of the shared properties above and the following additional properties:

Prop NameDescriptionTypeRequiredDefault
ringThe thickness of the outer ring (1 = thin ring, 10 = full circle )numberno10

Building & Packaging

These progress icons are currently created manually by modifying the svg files from the design folder with various clip paths and fill algorithms. They are then packaged up for distribution via npm.

The react icons are created as stateless functional components in individual files for each icon.

To create the /dist version of the icons:

cd /react
yarn build

And then to publish:

npm version patch
npm publish
2.1.1

3 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago