diff --git a/docs/styleguide.config.js b/docs/styleguide.config.js
index a6b94c38e6..ce1a595518 100644
--- a/docs/styleguide.config.js
+++ b/docs/styleguide.config.js
@@ -19,7 +19,8 @@ module.exports = {
'../react/Chip/index.jsx',
'../react/Icon/index.jsx',
'../react/Spinner/index.jsx',
- '../react/Counter/index.jsx'
+ '../react/Counter/index.jsx',
+ '../react/PercentageLine/index.jsx'
]
},
{
diff --git a/react/PercentageLine/PercentageLine.styl b/react/PercentageLine/PercentageLine.styl
new file mode 100644
index 0000000000..7fe979da27
--- /dev/null
+++ b/react/PercentageLine/PercentageLine.styl
@@ -0,0 +1,4 @@
+.PercentageLine
+ transition transform 0.3s ease
+ transform-origin 0 0
+ height 5px
diff --git a/react/PercentageLine/Readme.md b/react/PercentageLine/Readme.md
new file mode 100644
index 0000000000..d91c2b8ffe
--- /dev/null
+++ b/react/PercentageLine/Readme.md
@@ -0,0 +1,8 @@
+```
+initialState = { percentage: Math.random() * 100 };
+
+<>
+
+
+>
+```
diff --git a/react/PercentageLine/index.jsx b/react/PercentageLine/index.jsx
new file mode 100644
index 0000000000..59251b9e78
--- /dev/null
+++ b/react/PercentageLine/index.jsx
@@ -0,0 +1,28 @@
+import React from 'react'
+import cx from 'classnames'
+import styles from './PercentageLine.styl'
+import PropTypes from 'prop-types'
+
+const PercentageLine = ({ value, color, className, style }) => (
+
+)
+
+PercentageLine.propTypes = {
+ /** @type Value in percent */
+ value: PropTypes.number.isRequired,
+ /** @type CSS color or CSS variable */
+ color: PropTypes.string.isRequired,
+ /** @type Additional className */
+ className: PropTypes.string,
+ /** @type Custom style */
+ style: PropTypes.object
+}
+
+export default PercentageLine
diff --git a/react/index.js b/react/index.js
index 838b0742e4..46ee479b41 100644
--- a/react/index.js
+++ b/react/index.js
@@ -75,3 +75,4 @@ export { default as Viewer } from './Viewer/ViewerExposer'
export { default as FileInput } from './FileInput'
export { default as Card } from './Card'
export { default as InlineCard } from './InlineCard'
+export { default as PercentageLine } from './PercentageLine'