@semcore/icon 4.53.1 → 4.55.0-prerelease.0

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/ChatGPT/l/index.d.ts +6 -0
  3. package/ChatGPT/l/index.js +36 -0
  4. package/ChatGPT/l/index.mjs +24 -0
  5. package/ChatGPT/m/index.d.ts +6 -0
  6. package/ChatGPT/m/index.js +36 -0
  7. package/ChatGPT/m/index.mjs +24 -0
  8. package/VideoList/l/index.d.ts +6 -0
  9. package/VideoList/l/index.js +41 -0
  10. package/VideoList/l/index.mjs +29 -0
  11. package/VideoList/m/index.d.ts +6 -0
  12. package/VideoList/m/index.js +41 -0
  13. package/VideoList/m/index.mjs +29 -0
  14. package/VideoStreaming/l/index.d.ts +6 -0
  15. package/VideoStreaming/l/index.js +41 -0
  16. package/VideoStreaming/l/index.mjs +29 -0
  17. package/VideoStreaming/m/index.d.ts +6 -0
  18. package/VideoStreaming/m/index.js +41 -0
  19. package/VideoStreaming/m/index.mjs +29 -0
  20. package/color/Confluence/l/index.js +4 -4
  21. package/color/Confluence/l/index.mjs +4 -4
  22. package/color/Confluence/m/index.js +4 -4
  23. package/color/Confluence/m/index.mjs +4 -4
  24. package/color/MetaColored/l/index.js +4 -4
  25. package/color/MetaColored/l/index.mjs +4 -4
  26. package/color/MetaColored/m/index.js +4 -4
  27. package/color/MetaColored/m/index.mjs +4 -4
  28. package/color/MicrosoftOffice/l/index.js +10 -10
  29. package/color/MicrosoftOffice/l/index.mjs +10 -10
  30. package/color/MicrosoftOffice/m/index.js +10 -10
  31. package/color/MicrosoftOffice/m/index.mjs +10 -10
  32. package/lib/cjs/Icon.js +5 -5
  33. package/lib/es6/Icon.js +5 -5
  34. package/package.json +2 -2
  35. package/pay/Discover/l/index.js +1 -1
  36. package/pay/Discover/l/index.mjs +1 -1
  37. package/pay/Discover/m/index.js +1 -1
  38. package/pay/Discover/m/index.mjs +1 -1
  39. package/pay/JCB/l/index.js +10 -10
  40. package/pay/JCB/l/index.mjs +10 -10
  41. package/pay/JCB/m/index.js +10 -10
  42. package/pay/JCB/m/index.mjs +10 -10
  43. package/pay/Visa/l/index.js +2 -2
  44. package/pay/Visa/l/index.mjs +2 -2
  45. package/pay/Visa/m/index.js +2 -2
  46. package/pay/Visa/m/index.mjs +2 -2
  47. package/svg/icon/ChatGPT/l.svg +3 -0
  48. package/svg/icon/ChatGPT/m.svg +3 -0
  49. package/svg/icon/VideoList/l.svg +4 -0
  50. package/svg/icon/VideoList/m.svg +4 -0
  51. package/svg/icon/VideoStreaming/l.svg +4 -0
  52. package/svg/icon/VideoStreaming/m.svg +4 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
+ ## [4.55.0] - 2025-01-20
6
+
7
+ ### Added
8
+
9
+ - New `ChatGPT` icon.
10
+
11
+ ## [4.54.0] - 2025-01-17
12
+
13
+ ### Added
14
+
15
+ - New `VideoList`, `VideoStreaming` icons.
16
+
5
17
  ## [4.53.1] - 2024-12-30
6
18
 
7
19
  ### Changed
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/utils/lib/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function ChatGPT(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '24' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '24' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "ChatGPT",
25
+ "data-group": "l",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "M21.55 10.008a5.417 5.417 0 0 0-.478-4.501c-1.216-2.09-3.662-3.166-6.05-2.66a5.59 5.59 0 0 0-4.19-1.843C8.39.999 6.224 2.55 5.473 4.842A5.553 5.553 0 0 0 1.76 7.5 5.488 5.488 0 0 0 2.45 14a5.416 5.416 0 0 0 .477 4.502c1.217 2.09 3.662 3.165 6.05 2.66a5.586 5.586 0 0 0 4.19 1.842c2.443.006 4.61-1.546 5.361-3.84a5.553 5.553 0 0 0 3.715-2.66 5.488 5.488 0 0 0-.693-6.497v.001Zm-8.381 11.558a4.198 4.198 0 0 1-2.675-.954c.034-.018.093-.05.132-.074l4.44-2.53a.71.71 0 0 0 .364-.623v-6.176l1.877 1.069c.02.01.033.029.036.05v5.115c-.003 2.274-1.87 4.118-4.174 4.123Zm-8.977-3.783a4.059 4.059 0 0 1-.498-2.763c.032.02.09.055.131.078l4.44 2.53c.225.13.504.13.73 0l5.42-3.088v2.138a.068.068 0 0 1-.027.057L9.9 19.292c-1.999 1.136-4.552.46-5.707-1.51h-.001ZM3.023 8.22a4.15 4.15 0 0 1 2.175-1.807l-.002.15v5.062a.711.711 0 0 0 .364.623l5.42 3.087-1.876 1.07a.067.067 0 0 1-.063.005l-4.489-2.56c-1.995-1.139-2.679-3.657-1.53-5.63h.001Zm15.417 3.54-5.42-3.088 1.876-1.069a.067.067 0 0 1 .063-.005l4.489 2.557c1.998 1.139 2.683 3.662 1.529 5.633a4.163 4.163 0 0 1-2.174 1.807v-5.212a.71.71 0 0 0-.363-.623Zm1.867-2.773a6.202 6.202 0 0 0-.132-.078l-4.44-2.53a.731.731 0 0 0-.729 0l-5.42 3.088V7.33a.068.068 0 0 1 .027-.057L14.1 4.717c2-1.138 4.555-.46 5.707 1.513.487.833.664 1.809.499 2.757h.001Zm-11.741 3.81L6.689 11.73a.065.065 0 0 1-.036-.051V6.563c.001-2.277 1.873-4.122 4.181-4.12.976 0 1.92.338 2.671.954-.034.017-.092.05-.131.073L8.934 6a.71.71 0 0 0-.365.623l-.003 6.173v.002Zm1.02-2.168L12 9.254l2.414 1.375v2.75L12 14.754 9.585 13.38v-2.75Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }));
33
+ }
34
+ ChatGPT.displayName = 'ChatGPT';
35
+ var _default = (0, _core.createBaseComponent)(ChatGPT);
36
+ exports["default"] = _default;
@@ -0,0 +1,24 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '@semcore/icon';
5
+ function ChatGPT({
6
+ width = '24',
7
+ height = '24',
8
+ viewBox = '0 0 24 24',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "ChatGPT",
14
+ "data-group": "l",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "M21.55 10.008a5.417 5.417 0 0 0-.478-4.501c-1.216-2.09-3.662-3.166-6.05-2.66a5.59 5.59 0 0 0-4.19-1.843C8.39.999 6.224 2.55 5.473 4.842A5.553 5.553 0 0 0 1.76 7.5 5.488 5.488 0 0 0 2.45 14a5.416 5.416 0 0 0 .477 4.502c1.217 2.09 3.662 3.165 6.05 2.66a5.586 5.586 0 0 0 4.19 1.842c2.443.006 4.61-1.546 5.361-3.84a5.553 5.553 0 0 0 3.715-2.66 5.488 5.488 0 0 0-.693-6.497v.001Zm-8.381 11.558a4.198 4.198 0 0 1-2.675-.954c.034-.018.093-.05.132-.074l4.44-2.53a.71.71 0 0 0 .364-.623v-6.176l1.877 1.069c.02.01.033.029.036.05v5.115c-.003 2.274-1.87 4.118-4.174 4.123Zm-8.977-3.783a4.059 4.059 0 0 1-.498-2.763c.032.02.09.055.131.078l4.44 2.53c.225.13.504.13.73 0l5.42-3.088v2.138a.068.068 0 0 1-.027.057L9.9 19.292c-1.999 1.136-4.552.46-5.707-1.51h-.001ZM3.023 8.22a4.15 4.15 0 0 1 2.175-1.807l-.002.15v5.062a.711.711 0 0 0 .364.623l5.42 3.087-1.876 1.07a.067.067 0 0 1-.063.005l-4.489-2.56c-1.995-1.139-2.679-3.657-1.53-5.63h.001Zm15.417 3.54-5.42-3.088 1.876-1.069a.067.067 0 0 1 .063-.005l4.489 2.557c1.998 1.139 2.683 3.662 1.529 5.633a4.163 4.163 0 0 1-2.174 1.807v-5.212a.71.71 0 0 0-.363-.623Zm1.867-2.773a6.202 6.202 0 0 0-.132-.078l-4.44-2.53a.731.731 0 0 0-.729 0l-5.42 3.088V7.33a.068.068 0 0 1 .027-.057L14.1 4.717c2-1.138 4.555-.46 5.707 1.513.487.833.664 1.809.499 2.757h.001Zm-11.741 3.81L6.689 11.73a.065.065 0 0 1-.036-.051V6.563c.001-2.277 1.873-4.122 4.181-4.12.976 0 1.92.338 2.671.954-.034.017-.092.05-.131.073L8.934 6a.71.71 0 0 0-.365.623l-.003 6.173v.002Zm1.02-2.168L12 9.254l2.414 1.375v2.75L12 14.754 9.585 13.38v-2.75Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }));
22
+ }
23
+ ChatGPT.displayName = 'ChatGPT';
24
+ export default createBaseComponent(ChatGPT);
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/utils/lib/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function ChatGPT(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '16' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '16' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "ChatGPT",
25
+ "data-group": "m",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "M14.945 6.553a3.94 3.94 0 0 0-.347-3.274 4.106 4.106 0 0 0-4.4-1.934A4.065 4.065 0 0 0 7.15.004C5.375 0 3.8 1.128 3.253 2.795A4.038 4.038 0 0 0 .552 4.729a3.991 3.991 0 0 0 .503 4.727 3.94 3.94 0 0 0 .347 3.274 4.106 4.106 0 0 0 4.4 1.934 4.062 4.062 0 0 0 3.047 1.34c1.777.004 3.352-1.125 3.899-2.793a4.038 4.038 0 0 0 2.701-1.934 3.991 3.991 0 0 0-.504-4.725ZM8.85 14.958c-.71.001-1.4-.244-1.945-.694.025-.013.068-.036.095-.053l3.23-1.84a.517.517 0 0 0 .265-.454V7.426l1.365.777a.047.047 0 0 1 .026.037v3.72c-.002 1.654-1.36 2.995-3.036 2.998Zm-6.529-2.751a2.952 2.952 0 0 1-.362-2.01l.096.057 3.229 1.84a.532.532 0 0 0 .53 0l3.942-2.246v1.555a.05.05 0 0 1-.02.042l-3.263 1.86c-1.454.825-3.31.334-4.151-1.098Zm-.85-6.955a3.019 3.019 0 0 1 1.582-1.314l-.001.11v3.68c-.001.187.1.36.265.453l3.941 2.246-1.364.777a.049.049 0 0 1-.046.004l-3.265-1.86a2.98 2.98 0 0 1-1.112-4.095Zm11.212 2.575L8.742 5.58l1.364-.777a.049.049 0 0 1 .046-.004l3.265 1.86a2.978 2.978 0 0 1 1.111 4.096 3.027 3.027 0 0 1-1.58 1.314V8.28a.516.516 0 0 0-.264-.453Zm1.358-2.017a4.333 4.333 0 0 0-.095-.057l-3.23-1.84a.532.532 0 0 0-.53 0L6.244 6.16V4.604a.05.05 0 0 1 .02-.041l3.264-1.858c1.453-.828 3.312-.335 4.15 1.1.354.606.482 1.315.362 2.005h.001ZM5.503 8.58l-1.366-.777a.047.047 0 0 1-.026-.037v-3.72C4.112 2.391 5.474 1.05 7.152 1.05c.71 0 1.397.246 1.943.694a2.276 2.276 0 0 0-.096.054L5.77 3.638a.516.516 0 0 0-.265.453l-.002 4.49Zm.74-1.577 1.757-1 1.756 1v2l-1.756 1-1.756-1v-2Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }));
33
+ }
34
+ ChatGPT.displayName = 'ChatGPT';
35
+ var _default = (0, _core.createBaseComponent)(ChatGPT);
36
+ exports["default"] = _default;
@@ -0,0 +1,24 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '@semcore/icon';
5
+ function ChatGPT({
6
+ width = '16',
7
+ height = '16',
8
+ viewBox = '0 0 16 16',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "ChatGPT",
14
+ "data-group": "m",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "M14.945 6.553a3.94 3.94 0 0 0-.347-3.274 4.106 4.106 0 0 0-4.4-1.934A4.065 4.065 0 0 0 7.15.004C5.375 0 3.8 1.128 3.253 2.795A4.038 4.038 0 0 0 .552 4.729a3.991 3.991 0 0 0 .503 4.727 3.94 3.94 0 0 0 .347 3.274 4.106 4.106 0 0 0 4.4 1.934 4.062 4.062 0 0 0 3.047 1.34c1.777.004 3.352-1.125 3.899-2.793a4.038 4.038 0 0 0 2.701-1.934 3.991 3.991 0 0 0-.504-4.725ZM8.85 14.958c-.71.001-1.4-.244-1.945-.694.025-.013.068-.036.095-.053l3.23-1.84a.517.517 0 0 0 .265-.454V7.426l1.365.777a.047.047 0 0 1 .026.037v3.72c-.002 1.654-1.36 2.995-3.036 2.998Zm-6.529-2.751a2.952 2.952 0 0 1-.362-2.01l.096.057 3.229 1.84a.532.532 0 0 0 .53 0l3.942-2.246v1.555a.05.05 0 0 1-.02.042l-3.263 1.86c-1.454.825-3.31.334-4.151-1.098Zm-.85-6.955a3.019 3.019 0 0 1 1.582-1.314l-.001.11v3.68c-.001.187.1.36.265.453l3.941 2.246-1.364.777a.049.049 0 0 1-.046.004l-3.265-1.86a2.98 2.98 0 0 1-1.112-4.095Zm11.212 2.575L8.742 5.58l1.364-.777a.049.049 0 0 1 .046-.004l3.265 1.86a2.978 2.978 0 0 1 1.111 4.096 3.027 3.027 0 0 1-1.58 1.314V8.28a.516.516 0 0 0-.264-.453Zm1.358-2.017a4.333 4.333 0 0 0-.095-.057l-3.23-1.84a.532.532 0 0 0-.53 0L6.244 6.16V4.604a.05.05 0 0 1 .02-.041l3.264-1.858c1.453-.828 3.312-.335 4.15 1.1.354.606.482 1.315.362 2.005h.001ZM5.503 8.58l-1.366-.777a.047.047 0 0 1-.026-.037v-3.72C4.112 2.391 5.474 1.05 7.152 1.05c.71 0 1.397.246 1.943.694a2.276 2.276 0 0 0-.096.054L5.77 3.638a.516.516 0 0 0-.265.453l-.002 4.49Zm.74-1.577 1.757-1 1.756 1v2l-1.756 1-1.756-1v-2Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }));
22
+ }
23
+ ChatGPT.displayName = 'ChatGPT';
24
+ export default createBaseComponent(ChatGPT);
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/utils/lib/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function VideoList(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '24' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '24' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "VideoList",
25
+ "data-group": "l",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "M2 2a1 1 0 0 0 0 2h14a1 1 0 1 0 0-2H2ZM2 6a1 1 0 0 0 0 2h5a1 1 0 0 0 0-2H2ZM1 11a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1ZM17.721 14.536l-4.085 2.289a.5.5 0 0 1-.744-.436V11.81a.5.5 0 0 1 .744-.436l4.085 2.289a.5.5 0 0 1 0 .872Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }), /*#__PURE__*/_react["default"].createElement("path", {
33
+ fillRule: "evenodd",
34
+ d: "M7 14.1a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z",
35
+ clipRule: "evenodd",
36
+ shapeRendering: "geometricPrecision"
37
+ }));
38
+ }
39
+ VideoList.displayName = 'VideoList';
40
+ var _default = (0, _core.createBaseComponent)(VideoList);
41
+ exports["default"] = _default;
@@ -0,0 +1,29 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '@semcore/icon';
5
+ function VideoList({
6
+ width = '24',
7
+ height = '24',
8
+ viewBox = '0 0 24 24',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "VideoList",
14
+ "data-group": "l",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "M2 2a1 1 0 0 0 0 2h14a1 1 0 1 0 0-2H2ZM2 6a1 1 0 0 0 0 2h5a1 1 0 0 0 0-2H2ZM1 11a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1ZM17.721 14.536l-4.085 2.289a.5.5 0 0 1-.744-.436V11.81a.5.5 0 0 1 .744-.436l4.085 2.289a.5.5 0 0 1 0 .872Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fillRule: "evenodd",
23
+ d: "M7 14.1a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z",
24
+ clipRule: "evenodd",
25
+ shapeRendering: "geometricPrecision"
26
+ }));
27
+ }
28
+ VideoList.displayName = 'VideoList';
29
+ export default createBaseComponent(VideoList);
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/utils/lib/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function VideoList(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '16' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '16' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "VideoList",
25
+ "data-group": "m",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "M1 1a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2H1ZM1 5a1 1 0 0 0 0 2h3a1 1 0 0 0 0-2H1ZM0 10a1 1 0 0 1 1-1h1a1 1 0 0 1 0 2H1a1 1 0 0 1-1-1ZM12.448 9.884l-2.407 1.35a.4.4 0 0 1-.596-.35V8.187a.4.4 0 0 1 .596-.35l2.407 1.35a.4.4 0 0 1 0 .697Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }), /*#__PURE__*/_react["default"].createElement("path", {
33
+ fillRule: "evenodd",
34
+ d: "M5 9.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0ZM10.5 6a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z",
35
+ clipRule: "evenodd",
36
+ shapeRendering: "geometricPrecision"
37
+ }));
38
+ }
39
+ VideoList.displayName = 'VideoList';
40
+ var _default = (0, _core.createBaseComponent)(VideoList);
41
+ exports["default"] = _default;
@@ -0,0 +1,29 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '@semcore/icon';
5
+ function VideoList({
6
+ width = '16',
7
+ height = '16',
8
+ viewBox = '0 0 16 16',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "VideoList",
14
+ "data-group": "m",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "M1 1a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2H1ZM1 5a1 1 0 0 0 0 2h3a1 1 0 0 0 0-2H1ZM0 10a1 1 0 0 1 1-1h1a1 1 0 0 1 0 2H1a1 1 0 0 1-1-1ZM12.448 9.884l-2.407 1.35a.4.4 0 0 1-.596-.35V8.187a.4.4 0 0 1 .596-.35l2.407 1.35a.4.4 0 0 1 0 .697Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fillRule: "evenodd",
23
+ d: "M5 9.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0ZM10.5 6a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z",
24
+ clipRule: "evenodd",
25
+ shapeRendering: "geometricPrecision"
26
+ }));
27
+ }
28
+ VideoList.displayName = 'VideoList';
29
+ export default createBaseComponent(VideoList);
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/utils/lib/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function VideoStreaming(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '24' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '24' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "VideoStreaming",
25
+ "data-group": "l",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "M15.221 14.959 10.4 17.66a.5.5 0 0 1-.744-.436v-5.402a.5.5 0 0 1 .745-.437l4.821 2.702a.5.5 0 0 1 0 .872Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }), /*#__PURE__*/_react["default"].createElement("path", {
33
+ fillRule: "evenodd",
34
+ d: "M18.022 2.286a1 1 0 0 1-.034 1.414l-3.489 3.324H21a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-13a1 1 0 0 1 1-1h6.5L6.013 3.7a1 1 0 1 1 1.38-1.448L12 6.642l4.608-4.39a1 1 0 0 1 1.414.034ZM4 9.024v11h16v-11H4Z",
35
+ clipRule: "evenodd",
36
+ shapeRendering: "geometricPrecision"
37
+ }));
38
+ }
39
+ VideoStreaming.displayName = 'VideoStreaming';
40
+ var _default = (0, _core.createBaseComponent)(VideoStreaming);
41
+ exports["default"] = _default;
@@ -0,0 +1,29 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '@semcore/icon';
5
+ function VideoStreaming({
6
+ width = '24',
7
+ height = '24',
8
+ viewBox = '0 0 24 24',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "VideoStreaming",
14
+ "data-group": "l",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "M15.221 14.959 10.4 17.66a.5.5 0 0 1-.744-.436v-5.402a.5.5 0 0 1 .745-.437l4.821 2.702a.5.5 0 0 1 0 .872Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fillRule: "evenodd",
23
+ d: "M18.022 2.286a1 1 0 0 1-.034 1.414l-3.489 3.324H21a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-13a1 1 0 0 1 1-1h6.5L6.013 3.7a1 1 0 1 1 1.38-1.448L12 6.642l4.608-4.39a1 1 0 0 1 1.414.034ZM4 9.024v11h16v-11H4Z",
24
+ clipRule: "evenodd",
25
+ shapeRendering: "geometricPrecision"
26
+ }));
27
+ }
28
+ VideoStreaming.displayName = 'VideoStreaming';
29
+ export default createBaseComponent(VideoStreaming);
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/utils/lib/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function VideoStreaming(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '16' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '16' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "VideoStreaming",
25
+ "data-group": "m",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "m10.121 10.379-3.009 1.686a.5.5 0 0 1-.744-.437V8.257a.5.5 0 0 1 .744-.436l3.01 1.685a.5.5 0 0 1 0 .873Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }), /*#__PURE__*/_react["default"].createElement("path", {
33
+ fillRule: "evenodd",
34
+ d: "M12.707.293a1 1 0 0 1 0 1.414L10.414 4H15a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h4.586L3.293 1.707A1 1 0 0 1 4.707.293L8 3.586 11.293.293a1 1 0 0 1 1.414 0ZM2 6v8h12V6H2Z",
35
+ clipRule: "evenodd",
36
+ shapeRendering: "geometricPrecision"
37
+ }));
38
+ }
39
+ VideoStreaming.displayName = 'VideoStreaming';
40
+ var _default = (0, _core.createBaseComponent)(VideoStreaming);
41
+ exports["default"] = _default;
@@ -0,0 +1,29 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '@semcore/icon';
5
+ function VideoStreaming({
6
+ width = '16',
7
+ height = '16',
8
+ viewBox = '0 0 16 16',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "VideoStreaming",
14
+ "data-group": "m",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "m10.121 10.379-3.009 1.686a.5.5 0 0 1-.744-.437V8.257a.5.5 0 0 1 .744-.436l3.01 1.685a.5.5 0 0 1 0 .873Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fillRule: "evenodd",
23
+ d: "M12.707.293a1 1 0 0 1 0 1.414L10.414 4H15a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h4.586L3.293 1.707A1 1 0 0 1 4.707.293L8 3.586 11.293.293a1 1 0 0 1 1.414 0ZM2 6v8h12V6H2Z",
24
+ clipRule: "evenodd",
25
+ shapeRendering: "geometricPrecision"
26
+ }));
27
+ }
28
+ VideoStreaming.displayName = 'VideoStreaming';
29
+ export default createBaseComponent(VideoStreaming);
@@ -28,14 +28,14 @@ function Confluence(_ref, ref) {
28
28
  viewBox: viewBox
29
29
  }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
30
  d: "M2.337 17.267c-.215.35-.457.758-.646 1.083a.663.663 0 0 0 .222.9l4.307 2.651a.663.663 0 0 0 .917-.225c.17-.288.391-.663.633-1.064 1.706-2.815 3.425-2.471 6.516-.993l4.27 2.03a.665.665 0 0 0 .892-.331l2.05-4.638a.663.663 0 0 0-.331-.868 654.128 654.128 0 0 1-4.307-2.047c-5.817-2.83-10.75-2.644-14.523 3.502Z",
31
- fill: "url(#intergalactic-icon-Confluence_l_a-4.53.1)",
31
+ fill: "url(#intergalactic-icon-Confluence_l_a-4.55.0)",
32
32
  shapeRendering: "geometricPrecision"
33
33
  }), /*#__PURE__*/_react["default"].createElement("path", {
34
34
  d: "M21.647 6.732c.216-.351.458-.762.663-1.083a.663.663 0 0 0-.225-.901l-4.307-2.65a.663.663 0 0 0-.914.225l-.636 1.063c-1.707 2.816-3.423 2.471-6.517.994L5.428 2.359a.662.662 0 0 0-.888.331L2.49 7.328a.663.663 0 0 0 .33.868c.902.424 2.697 1.269 4.307 2.047 5.814 2.806 10.747 2.62 14.52-3.511Z",
35
- fill: "url(#intergalactic-icon-Confluence_l_b-4.53.1)",
35
+ fill: "url(#intergalactic-icon-Confluence_l_b-4.55.0)",
36
36
  shapeRendering: "geometricPrecision"
37
37
  }), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
38
- id: "intergalactic-icon-Confluence_l_a-4.53.1",
38
+ id: "intergalactic-icon-Confluence_l_a-4.55.0",
39
39
  x1: "21.369",
40
40
  y1: "23.259",
41
41
  x2: "8.34",
@@ -50,7 +50,7 @@ function Confluence(_ref, ref) {
50
50
  offset: "1",
51
51
  stopColor: "#0082FF"
52
52
  })), /*#__PURE__*/_react["default"].createElement("linearGradient", {
53
- id: "intergalactic-icon-Confluence_l_b-4.53.1",
53
+ id: "intergalactic-icon-Confluence_l_b-4.55.0",
54
54
  x1: "2.615",
55
55
  y1: ".729",
56
56
  x2: "15.645",
@@ -17,14 +17,14 @@ function Confluence({
17
17
  viewBox: viewBox
18
18
  }, props), /*#__PURE__*/React.createElement("path", {
19
19
  d: "M2.337 17.267c-.215.35-.457.758-.646 1.083a.663.663 0 0 0 .222.9l4.307 2.651a.663.663 0 0 0 .917-.225c.17-.288.391-.663.633-1.064 1.706-2.815 3.425-2.471 6.516-.993l4.27 2.03a.665.665 0 0 0 .892-.331l2.05-4.638a.663.663 0 0 0-.331-.868 654.128 654.128 0 0 1-4.307-2.047c-5.817-2.83-10.75-2.644-14.523 3.502Z",
20
- fill: "url(#intergalactic-icon-Confluence_l_a-4.53.1)",
20
+ fill: "url(#intergalactic-icon-Confluence_l_a-4.55.0)",
21
21
  shapeRendering: "geometricPrecision"
22
22
  }), /*#__PURE__*/React.createElement("path", {
23
23
  d: "M21.647 6.732c.216-.351.458-.762.663-1.083a.663.663 0 0 0-.225-.901l-4.307-2.65a.663.663 0 0 0-.914.225l-.636 1.063c-1.707 2.816-3.423 2.471-6.517.994L5.428 2.359a.662.662 0 0 0-.888.331L2.49 7.328a.663.663 0 0 0 .33.868c.902.424 2.697 1.269 4.307 2.047 5.814 2.806 10.747 2.62 14.52-3.511Z",
24
- fill: "url(#intergalactic-icon-Confluence_l_b-4.53.1)",
24
+ fill: "url(#intergalactic-icon-Confluence_l_b-4.55.0)",
25
25
  shapeRendering: "geometricPrecision"
26
26
  }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
27
- id: "intergalactic-icon-Confluence_l_a-4.53.1",
27
+ id: "intergalactic-icon-Confluence_l_a-4.55.0",
28
28
  x1: "21.369",
29
29
  y1: "23.259",
30
30
  x2: "8.34",
@@ -39,7 +39,7 @@ function Confluence({
39
39
  offset: "1",
40
40
  stopColor: "#0082FF"
41
41
  })), /*#__PURE__*/React.createElement("linearGradient", {
42
- id: "intergalactic-icon-Confluence_l_b-4.53.1",
42
+ id: "intergalactic-icon-Confluence_l_b-4.55.0",
43
43
  x1: "2.615",
44
44
  y1: ".729",
45
45
  x2: "15.645",
@@ -28,14 +28,14 @@ function Confluence(_ref, ref) {
28
28
  viewBox: viewBox
29
29
  }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
30
  d: "M1.032 11.807c-.155.254-.33.549-.465.783a.48.48 0 0 0 .16.652l3.105 1.916a.477.477 0 0 0 .662-.163c.121-.209.282-.48.456-.769 1.23-2.036 2.47-1.787 4.699-.719l3.079 1.469a.475.475 0 0 0 .642-.24l1.479-3.353a.48.48 0 0 0-.24-.627c-.649-.307-1.941-.92-3.104-1.48C7.31 7.23 3.753 7.365 1.032 11.807Z",
31
- fill: "url(#intergalactic-icon-Confluence_m_a-4.53.1)",
31
+ fill: "url(#intergalactic-icon-Confluence_m_a-4.55.0)",
32
32
  shapeRendering: "geometricPrecision"
33
33
  }), /*#__PURE__*/_react["default"].createElement("path", {
34
34
  d: "M14.956 4.191c.155-.254.33-.55.478-.783a.48.48 0 0 0-.162-.651L12.166.84a.476.476 0 0 0-.659.163c-.124.208-.284.479-.459.768-1.23 2.036-2.467 1.787-4.698.719L3.26 1.03a.477.477 0 0 0-.64.24L1.142 4.622a.48.48 0 0 0 .24.628c.649.306 1.944.917 3.104 1.48 4.193 2.028 7.75 1.894 10.47-2.539Z",
35
- fill: "url(#intergalactic-icon-Confluence_m_b-4.53.1)",
35
+ fill: "url(#intergalactic-icon-Confluence_m_b-4.55.0)",
36
36
  shapeRendering: "geometricPrecision"
37
37
  }), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
38
- id: "intergalactic-icon-Confluence_m_a-4.53.1",
38
+ id: "intergalactic-icon-Confluence_m_a-4.55.0",
39
39
  x1: "14.756",
40
40
  y1: "16.14",
41
41
  x2: "5.349",
@@ -50,7 +50,7 @@ function Confluence(_ref, ref) {
50
50
  offset: "1",
51
51
  stopColor: "#0082FF"
52
52
  })), /*#__PURE__*/_react["default"].createElement("linearGradient", {
53
- id: "intergalactic-icon-Confluence_m_b-4.53.1",
53
+ id: "intergalactic-icon-Confluence_m_b-4.55.0",
54
54
  x1: "1.233",
55
55
  y1: "-.148",
56
56
  x2: "10.64",
@@ -17,14 +17,14 @@ function Confluence({
17
17
  viewBox: viewBox
18
18
  }, props), /*#__PURE__*/React.createElement("path", {
19
19
  d: "M1.032 11.807c-.155.254-.33.549-.465.783a.48.48 0 0 0 .16.652l3.105 1.916a.477.477 0 0 0 .662-.163c.121-.209.282-.48.456-.769 1.23-2.036 2.47-1.787 4.699-.719l3.079 1.469a.475.475 0 0 0 .642-.24l1.479-3.353a.48.48 0 0 0-.24-.627c-.649-.307-1.941-.92-3.104-1.48C7.31 7.23 3.753 7.365 1.032 11.807Z",
20
- fill: "url(#intergalactic-icon-Confluence_m_a-4.53.1)",
20
+ fill: "url(#intergalactic-icon-Confluence_m_a-4.55.0)",
21
21
  shapeRendering: "geometricPrecision"
22
22
  }), /*#__PURE__*/React.createElement("path", {
23
23
  d: "M14.956 4.191c.155-.254.33-.55.478-.783a.48.48 0 0 0-.162-.651L12.166.84a.476.476 0 0 0-.659.163c-.124.208-.284.479-.459.768-1.23 2.036-2.467 1.787-4.698.719L3.26 1.03a.477.477 0 0 0-.64.24L1.142 4.622a.48.48 0 0 0 .24.628c.649.306 1.944.917 3.104 1.48 4.193 2.028 7.75 1.894 10.47-2.539Z",
24
- fill: "url(#intergalactic-icon-Confluence_m_b-4.53.1)",
24
+ fill: "url(#intergalactic-icon-Confluence_m_b-4.55.0)",
25
25
  shapeRendering: "geometricPrecision"
26
26
  }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
27
- id: "intergalactic-icon-Confluence_m_a-4.53.1",
27
+ id: "intergalactic-icon-Confluence_m_a-4.55.0",
28
28
  x1: "14.756",
29
29
  y1: "16.14",
30
30
  x2: "5.349",
@@ -39,7 +39,7 @@ function Confluence({
39
39
  offset: "1",
40
40
  stopColor: "#0082FF"
41
41
  })), /*#__PURE__*/React.createElement("linearGradient", {
42
- id: "intergalactic-icon-Confluence_m_b-4.53.1",
42
+ id: "intergalactic-icon-Confluence_m_b-4.55.0",
43
43
  x1: "1.233",
44
44
  y1: "-.148",
45
45
  x2: "10.64",
@@ -31,15 +31,15 @@ function MetaColored(_ref, ref) {
31
31
  d: "M2.592 14.562c0 .919.202 1.626.465 2.053.344.559.858.796 1.382.796.676 0 1.294-.168 2.486-1.823.955-1.326 2.08-3.186 2.837-4.354l1.282-1.977c.89-1.373 1.92-2.899 3.103-3.933.964-.844 2.005-1.314 3.053-1.314 1.758 0 3.434 1.023 4.716 2.94C23.319 9.053 24 11.699 24 14.429c0 1.624-.32 2.817-.861 3.759-.524.911-1.546 1.822-3.265 1.822V17.41c1.472 0 1.839-1.357 1.839-2.91 0-2.212-.515-4.668-1.647-6.423-.803-1.245-1.845-2.006-2.991-2.006-1.24 0-2.237.938-3.358 2.611-.596.888-1.208 1.972-1.894 3.194l-.756 1.345c-1.52 2.703-1.904 3.318-2.663 4.334-1.33 1.779-2.468 2.454-3.964 2.454-1.775 0-2.897-.771-3.593-1.934C.28 17.128 0 15.885 0 14.468l2.592.094Z",
32
32
  shapeRendering: "geometricPrecision"
33
33
  }), /*#__PURE__*/_react["default"].createElement("path", {
34
- fill: "url(#intergalactic-icon-MetaColored_l_a-4.53.1)",
34
+ fill: "url(#intergalactic-icon-MetaColored_l_a-4.55.0)",
35
35
  d: "M2 7.134C3.189 5.296 4.904 4.01 6.871 4.01c1.14 0 2.272.34 3.454 1.308 1.294 1.06 2.672 2.804 4.393 5.68l.617 1.032c1.49 2.49 2.336 3.77 2.831 4.375.638.775 1.084 1.006 1.665 1.006 1.471 0 1.838-1.357 1.838-2.91l2.286-.072c0 1.624-.319 2.816-.861 3.759-.524.911-1.546 1.822-3.264 1.822-1.068 0-2.015-.233-3.061-1.224-.805-.76-1.745-2.111-2.469-3.326l-2.152-3.609c-1.08-1.811-2.07-3.161-2.644-3.773-.617-.657-1.41-1.45-2.675-1.45-1.024 0-1.894.72-2.622 1.824L2 7.134Z",
36
36
  shapeRendering: "geometricPrecision"
37
37
  }), /*#__PURE__*/_react["default"].createElement("path", {
38
- fill: "url(#intergalactic-icon-MetaColored_l_b-4.53.1)",
38
+ fill: "url(#intergalactic-icon-MetaColored_l_b-4.55.0)",
39
39
  d: "M6.873 6.626c-1.024 0-1.894.721-2.622 1.825-1.03 1.559-1.659 3.88-1.659 6.11 0 .92.202 1.627.465 2.054l-2.21 1.46C.279 17.129 0 15.886 0 14.469c0-2.575.704-5.26 2.044-7.334C3.232 5.296 4.948 4.01 6.914 4.01l-.041 2.616Z",
40
40
  shapeRendering: "geometricPrecision"
41
41
  }), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
42
- id: "intergalactic-icon-MetaColored_l_a-4.53.1",
42
+ id: "intergalactic-icon-MetaColored_l_a-4.55.0",
43
43
  x1: "5.159",
44
44
  x2: "21.683",
45
45
  y1: "11.595",
@@ -57,7 +57,7 @@ function MetaColored(_ref, ref) {
57
57
  offset: "1",
58
58
  stopColor: "#0082FB"
59
59
  })), /*#__PURE__*/_react["default"].createElement("linearGradient", {
60
- id: "intergalactic-icon-MetaColored_l_b-4.53.1",
60
+ id: "intergalactic-icon-MetaColored_l_b-4.55.0",
61
61
  x1: "3.457",
62
62
  x2: "3.457",
63
63
  y1: "15.653",