diff --git a/docs/components.json b/docs/components.json
index 0c62a262..b75434a4 100644
--- a/docs/components.json
+++ b/docs/components.json
@@ -2094,6 +2094,42 @@
}
}
},
+ "components/icons/icon-arrow-left.jsx": {
+ "description": "",
+ "displayName": "IconArrowLeft",
+ "methods": [],
+ "props": {
+ "color": {
+ "type": {
+ "name": "string"
+ },
+ "required": false,
+ "description": "",
+ "defaultValue": {
+ "value": "colors.icons",
+ "computed": true
+ }
+ }
+ }
+ },
+ "components/icons/icon-arrow-right.jsx": {
+ "description": "",
+ "displayName": "IconArrowRight",
+ "methods": [],
+ "props": {
+ "color": {
+ "type": {
+ "name": "string"
+ },
+ "required": false,
+ "description": "",
+ "defaultValue": {
+ "value": "colors.icons",
+ "computed": true
+ }
+ }
+ }
+ },
"components/icons/icon-block.jsx": {
"description": "",
"displayName": "IconBlock",
diff --git a/src/icons/icon-arrow-left.jsx b/src/icons/icon-arrow-left.jsx
new file mode 100644
index 00000000..00f94d32
--- /dev/null
+++ b/src/icons/icon-arrow-left.jsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import colors from '../settings/colors';
+
+const IconArrowLeft = ({ color, ...custom }) => (
+
+);
+
+IconArrowLeft.propTypes = {
+ color: PropTypes.string
+};
+
+IconArrowLeft.defaultProps = {
+ color: colors.icons
+};
+
+IconArrowLeft.displayName = 'IconArrowLeft';
+
+export default IconArrowLeft;
diff --git a/src/icons/icon-arrow-right.jsx b/src/icons/icon-arrow-right.jsx
new file mode 100644
index 00000000..e6deaaff
--- /dev/null
+++ b/src/icons/icon-arrow-right.jsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import colors from '../settings/colors';
+
+const IconArrowRight = ({ color, ...custom }) => (
+
+);
+
+IconArrowRight.propTypes = {
+ color: PropTypes.string
+};
+
+IconArrowRight.defaultProps = {
+ color: colors.icons
+};
+
+IconArrowRight.displayName = 'IconArrowRight';
+
+export default IconArrowRight;
diff --git a/src/icons/index.js b/src/icons/index.js
index fa8a3453..9afe158f 100644
--- a/src/icons/index.js
+++ b/src/icons/index.js
@@ -68,3 +68,5 @@ export IconBroadcast from './icon-broadcast';
export IconCart from './icon-cart';
export IconCoins from './icon-coins';
export IconShop from './icon-shop';
+export IconArrowLeft from './icon-arrow-left';
+export IconArrowRight from './icon-arrow-right';