Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
chore: Add missing proptypes for Meter
Browse files Browse the repository at this point in the history
  • Loading branch information
diondiondion committed Sep 2, 2019
1 parent f599217 commit a6c32a9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Meter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ const Meter = ({...props}) => {
};

Meter.propTypes = {
value: PropTypes.number,
max: PropTypes.number,
color: PropTypes.string,
high: PropTypes.number,
low: PropTypes.number,
max: PropTypes.number,
min: PropTypes.number,
optimum: PropTypes.number,
value: PropTypes.number,
visualMin: PropTypes.number,
};

Expand Down

0 comments on commit a6c32a9

Please sign in to comment.