@livechat/design-system-icons 1.0.0-alpha.19 → 1.0.0-alpha.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgChevronDoubleLeft = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ fill="none"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M18.41 7.41 17 6l-6 6 6 6 1.41-1.41L13.83 12l4.58-4.59m-6 0L11 6l-6 6 6 6 1.41-1.41L7.83 12l4.58-4.59Z"
13
+ fill="currentcolor"
14
+ />
15
+ </svg>
16
+ );
17
+
18
+ export default SvgChevronDoubleLeft;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgChevronDoubleRight = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ fill="none"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M5.59 7.41 7 6l6 6-6 6-1.41-1.41L10.17 12 5.59 7.41m6 0L13 6l6 6-6 6-1.41-1.41L16.17 12l-4.58-4.59Z"
13
+ fill="currentcolor"
14
+ />
15
+ </svg>
16
+ );
17
+
18
+ export default SvgChevronDoubleRight;
@@ -36,6 +36,8 @@ export { default as Chats } from './Chats';
36
36
  export { default as Check } from './Check';
37
37
  export { default as CheckBox } from './CheckBox';
38
38
  export { default as CheckCircleSolid } from './CheckCircleSolid';
39
+ export { default as ChevronDoubleLeft } from './ChevronDoubleLeft';
40
+ export { default as ChevronDoubleRight } from './ChevronDoubleRight';
39
41
  export { default as ChevronDown } from './ChevronDown';
40
42
  export { default as ChevronLeft } from './ChevronLeft';
41
43
  export { default as ChevronRight } from './ChevronRight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livechat/design-system-icons",
3
- "version": "1.0.0-alpha.19",
3
+ "version": "1.0.0-alpha.21",
4
4
  "description": "",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,5 +36,5 @@
36
36
  "peerDependencies": {
37
37
  "react": ">= 16"
38
38
  },
39
- "gitHead": "272ccf054c1ae242b1ff8c743b3aa1436fbf50dc"
39
+ "gitHead": "eef1c6784f3094195462f80c8a2018c3e3d312c0"
40
40
  }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var React = _interopRequireWildcard(require("react"));
9
+
10
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
11
+
12
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
13
+
14
+ const SvgChevronDoubleLeft = props => /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ fill: "none",
17
+ viewBox: "0 0 24 24",
18
+ ...props
19
+ }, /*#__PURE__*/React.createElement("path", {
20
+ d: "M18.41 7.41 17 6l-6 6 6 6 1.41-1.41L13.83 12l4.58-4.59m-6 0L11 6l-6 6 6 6 1.41-1.41L7.83 12l4.58-4.59Z",
21
+ fill: "currentcolor"
22
+ }));
23
+
24
+ var _default = SvgChevronDoubleLeft;
25
+ exports.default = _default;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var React = _interopRequireWildcard(require("react"));
9
+
10
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
11
+
12
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
13
+
14
+ const SvgChevronDoubleRight = props => /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ fill: "none",
17
+ viewBox: "0 0 24 24",
18
+ ...props
19
+ }, /*#__PURE__*/React.createElement("path", {
20
+ d: "M5.59 7.41 7 6l6 6-6 6-1.41-1.41L10.17 12 5.59 7.41m6 0L13 6l6 6-6 6-1.41-1.41L16.17 12l-4.58-4.59Z",
21
+ fill: "currentcolor"
22
+ }));
23
+
24
+ var _default = SvgChevronDoubleRight;
25
+ exports.default = _default;
@@ -231,6 +231,18 @@ Object.defineProperty(exports, "CheckCircleSolid", {
231
231
  return _CheckCircleSolid.default;
232
232
  }
233
233
  });
234
+ Object.defineProperty(exports, "ChevronDoubleLeft", {
235
+ enumerable: true,
236
+ get: function () {
237
+ return _ChevronDoubleLeft.default;
238
+ }
239
+ });
240
+ Object.defineProperty(exports, "ChevronDoubleRight", {
241
+ enumerable: true,
242
+ get: function () {
243
+ return _ChevronDoubleRight.default;
244
+ }
245
+ });
234
246
  Object.defineProperty(exports, "ChevronDown", {
235
247
  enumerable: true,
236
248
  get: function () {
@@ -944,6 +956,10 @@ var _CheckBox = _interopRequireDefault(require("./CheckBox"));
944
956
 
945
957
  var _CheckCircleSolid = _interopRequireDefault(require("./CheckCircleSolid"));
946
958
 
959
+ var _ChevronDoubleLeft = _interopRequireDefault(require("./ChevronDoubleLeft"));
960
+
961
+ var _ChevronDoubleRight = _interopRequireDefault(require("./ChevronDoubleRight"));
962
+
947
963
  var _ChevronDown = _interopRequireDefault(require("./ChevronDown"));
948
964
 
949
965
  var _ChevronLeft = _interopRequireDefault(require("./ChevronLeft"));
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M18.41,7.41L17,6L11,12L17,18L18.41,16.59L13.83,12L18.41,7.41M12.41,7.41L11,6L5,12L11,18L12.41,16.59L7.83,12L12.41,7.41Z" fill="#424D57" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M5.59,7.41L7,6L13,12L7,18L5.59,16.59L10.17,12L5.59,7.41M11.59,7.41L13,6L19,12L13,18L11.59,16.59L16.17,12L11.59,7.41Z" fill="#424D57" />
3
+ </svg>