pds-dev-kit-web-test 0.2.54 → 0.3.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 (124) hide show
  1. package/dist/src/common/assets/icons/fill/BellOff.d.ts +4 -0
  2. package/dist/src/common/assets/icons/fill/BellOff.js +30 -0
  3. package/dist/src/common/assets/icons/fill/VideocallPro.js +1 -1
  4. package/dist/src/common/assets/icons/fill/Vodplus.js +1 -1
  5. package/dist/src/common/assets/icons/fill/index.d.ts +1 -0
  6. package/dist/src/common/assets/icons/fill/index.js +2 -0
  7. package/dist/src/common/assets/icons/line/BellOff.d.ts +4 -0
  8. package/dist/src/common/assets/icons/line/BellOff.js +30 -0
  9. package/dist/src/common/assets/icons/line/ChatRoom11.d.ts +4 -0
  10. package/dist/src/common/assets/icons/line/ChatRoom11.js +30 -0
  11. package/dist/src/common/assets/icons/line/ChatRoomFree.d.ts +4 -0
  12. package/dist/src/common/assets/icons/line/ChatRoomFree.js +30 -0
  13. package/dist/src/common/assets/icons/line/ChatRoomGroup.d.ts +4 -0
  14. package/dist/src/common/assets/icons/line/ChatRoomGroup.js +30 -0
  15. package/dist/src/common/assets/icons/line/ChatRoomPaid.d.ts +4 -0
  16. package/dist/src/common/assets/icons/line/ChatRoomPaid.js +30 -0
  17. package/dist/src/common/assets/icons/line/DesignPreference.js +1 -1
  18. package/dist/src/common/assets/icons/line/PappType.js +1 -1
  19. package/dist/src/common/assets/icons/line/PaymentRegularly.js +1 -1
  20. package/dist/src/common/assets/icons/line/PostVote.js +1 -1
  21. package/dist/src/common/assets/icons/line/Target.js +1 -1
  22. package/dist/src/common/assets/icons/line/TypefaceDisplay20.d.ts +4 -0
  23. package/dist/src/common/assets/icons/line/TypefaceDisplay20.js +30 -0
  24. package/dist/src/common/assets/icons/line/TypefaceHand20.d.ts +4 -0
  25. package/dist/src/common/assets/icons/line/TypefaceHand20.js +30 -0
  26. package/dist/src/common/assets/icons/line/TypefaceMonospace20.d.ts +4 -0
  27. package/dist/src/common/assets/icons/line/TypefaceMonospace20.js +30 -0
  28. package/dist/src/common/assets/icons/line/TypefaceSansSerif20.d.ts +4 -0
  29. package/dist/src/common/assets/icons/line/TypefaceSansSerif20.js +30 -0
  30. package/dist/src/common/assets/icons/line/TypefaceSerif20.d.ts +4 -0
  31. package/dist/src/common/assets/icons/line/TypefaceSerif20.js +30 -0
  32. package/dist/src/common/assets/icons/line/index.d.ts +10 -0
  33. package/dist/src/common/assets/icons/line/index.js +20 -0
  34. package/dist/src/common/hooks/index.d.ts +1 -0
  35. package/dist/src/common/hooks/index.js +3 -1
  36. package/dist/src/common/hooks/useAbsolutePositioner.d.ts +13 -0
  37. package/dist/src/common/hooks/useAbsolutePositioner.js +54 -0
  38. package/dist/src/common/hooks/useTooltip.d.ts +17 -0
  39. package/dist/src/common/hooks/useTooltip.js +76 -0
  40. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +2 -1
  41. package/dist/src/common/styles/colorSet/PaletteColor_light.json +2 -1
  42. package/dist/src/common/styles/colorSet/UIColor.json +2 -1
  43. package/dist/src/common/styles/colorSet/index.d.ts +963 -960
  44. package/dist/src/common/styles/colorSet/index.js +5 -5
  45. package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
  46. package/dist/src/common/styles/systemUI/index.d.ts +1 -0
  47. package/dist/src/common/styles/systemUI/index.js +5 -0
  48. package/dist/src/common/styles/systemUI/tooltipStyle.d.ts +1 -0
  49. package/dist/src/common/styles/systemUI/tooltipStyle.js +28 -0
  50. package/dist/src/common/types/components.d.ts +3 -2
  51. package/dist/src/common/types/systemUI.d.ts +13 -0
  52. package/dist/src/common/types/systemUI.js +2 -0
  53. package/dist/src/common/utils/SystemUIPositionGenerator/clickTypeSystemUICssGenerator.d.ts +13 -0
  54. package/dist/src/common/utils/SystemUIPositionGenerator/clickTypeSystemUICssGenerator.js +20 -0
  55. package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.d.ts +17 -0
  56. package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +71 -0
  57. package/dist/src/common/utils/SystemUIPositionGenerator/index.d.ts +1 -0
  58. package/dist/src/common/utils/SystemUIPositionGenerator/index.js +8 -0
  59. package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +54 -42
  60. package/dist/src/desktop/components/BasicButtonGroup/constants.d.ts +0 -6
  61. package/dist/src/desktop/components/BasicButtonGroup/constants.js +1 -8
  62. package/dist/src/desktop/components/BasicChatListItem/BasicChatListItem.d.ts +2 -4
  63. package/dist/src/desktop/components/BasicChatListItem/BasicChatListItem.js +14 -5
  64. package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +3 -3
  65. package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +41 -45
  66. package/dist/src/desktop/components/ContextMenu/ContextMenu.js +1 -1
  67. package/dist/src/desktop/components/Dropdown/Dropdown.js +48 -9
  68. package/dist/src/desktop/components/IconButton/IconButton.d.ts +3 -1
  69. package/dist/src/desktop/components/IconButton/IconButton.js +48 -44
  70. package/dist/src/desktop/components/SegmentedButtonGroup/SegmentedButtonGroup.js +54 -42
  71. package/dist/src/desktop/components/SegmentedButtonGroup/constants.d.ts +0 -6
  72. package/dist/src/desktop/components/SegmentedButtonGroup/constants.js +1 -8
  73. package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -1
  74. package/dist/src/desktop/components/TextLabel/TextLabel.js +33 -63
  75. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.d.ts +3 -1
  76. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +49 -45
  77. package/dist/src/desktop/components/UploadIconButton/constants.d.ts +7 -0
  78. package/dist/src/desktop/components/UploadIconButton/constants.js +10 -0
  79. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.d.ts +1 -1
  80. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.js +2 -1
  81. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTW.d.ts +18 -0
  82. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTW.js +112 -0
  83. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/index.d.ts +1 -0
  84. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/index.js +3 -1
  85. package/dist/src/desktop/layout/LayoutWT/ContainersBox/ContainersBox.d.ts +1 -1
  86. package/dist/src/desktop/layout/LayoutWT/ContainersBox/ContainersBox.js +8 -4
  87. package/dist/src/hybrid/components/Icon/Icon.js +2 -1
  88. package/dist/src/mobile/components/BasicChatListItem/BasicChatListItem.d.ts +2 -4
  89. package/dist/src/mobile/components/BasicChatListItem/BasicChatListItem.js +14 -5
  90. package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +3 -3
  91. package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +41 -45
  92. package/dist/src/mobile/components/ContextMenu/ContextMenu.js +1 -1
  93. package/dist/src/mobile/components/Dropdown/Dropdown.js +48 -9
  94. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/fill/VideocallPro.js +1 -1
  95. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/fill/Vodplus.js +1 -1
  96. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/DesignPreference.js +1 -1
  97. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/PappType.js +1 -1
  98. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/PaymentRegularly.js +1 -1
  99. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/PostVote.js +1 -1
  100. package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +1 -1
  101. package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +4 -0
  102. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +19 -1
  103. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +1 -1
  104. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +2 -2
  105. package/dist/src/sub/GoogleFontkit/headless/GoogleFontItem.js +0 -6
  106. package/dist/src/sub/GoogleFontkit/headless/GoogleFontsList.js +17 -37
  107. package/dist/src/sub/GoogleFontkit/types.d.ts +1 -1
  108. package/dist/src/sub/GoogleFontkit/utils/applyActiveFont.d.ts +0 -3
  109. package/dist/src/sub/GoogleFontkit/utils/applyActiveFont.js +0 -3
  110. package/dist/src/sub/GoogleFontkit/utils/createStyleSheet.d.ts +0 -3
  111. package/dist/src/sub/GoogleFontkit/utils/createStyleSheet.js +0 -3
  112. package/dist/src/sub/GoogleFontkit/utils/extractFontStyles.js +0 -4
  113. package/dist/src/sub/GoogleFontkit/utils/fillStyleSheet.d.ts +0 -3
  114. package/dist/src/sub/GoogleFontkit/utils/fillStyleSheet.js +0 -4
  115. package/dist/src/sub/GoogleFontkit/utils/getActiveFontStylesheet.d.ts +0 -3
  116. package/dist/src/sub/GoogleFontkit/utils/getActiveFontStylesheet.js +0 -3
  117. package/dist/src/sub/GoogleFontkit/utils/getFontId.d.ts +0 -3
  118. package/dist/src/sub/GoogleFontkit/utils/getFontId.js +0 -3
  119. package/dist/src/sub/GoogleFontkit/utils/isStyleSheetExists.d.ts +0 -3
  120. package/dist/src/sub/GoogleFontkit/utils/isStyleSheetExists.js +0 -3
  121. package/dist/src/sub/GoogleFontkit/utils/setStyleSheetType.d.ts +0 -3
  122. package/dist/src/sub/GoogleFontkit/utils/setStyleSheetType.js +0 -3
  123. package/package.json +1 -1
  124. package/release-note.md +3 -3
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const BellOff: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default BellOff;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var BellOff = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M5.4253,8.2911 L16.3713,19.2371 L5.1123,19.2371 C3.7683,19.2371 3.0833,17.6931 4.0163,16.7681 L5.0023,15.7901 C5.0153,15.7771 5.0223,15.7601 5.0223,15.7431 L5.0223,10.7231 C5.0223,9.8951 5.1663,9.0731 5.4253,8.2911 Z M11.9997,1.9867 C13.0957,1.9867 13.9827,2.8387 14.0597,3.9147 C17.1477,4.8357 18.9777,7.7777 18.9777,10.7227 L18.9777,15.7427 C18.9777,15.7607 18.9847,15.7777 18.9977,15.7897 L19.9837,16.7677 C20.5667,17.3447 20.5177,18.1627 20.0727,18.6967 L7.0027,5.6257 C7.7677,4.8347 8.7487,4.2197 9.9417,3.8897 C10.0307,2.8257 10.9127,1.9867 11.9997,1.9867 Z M11.9999,22.4069 C13.4119,22.4069 14.5569,21.2619 14.5569,19.8499 L9.4429,19.8499 C9.4429,21.2619 10.5879,22.4069 11.9999,22.4069" }), (0, jsx_runtime_1.jsx)("line", { x1: "4.15", x2: "19.85", y1: "4.894", y2: "20.595", stroke: color, strokeLinecap: "round", strokeWidth: "1.5" })] })) })));
29
+ };
30
+ exports.default = BellOff;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var VideocallPro = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M18.736,2.0173 C20.669,2.0173 22.236,3.5843 22.236,5.5173 L22.236,5.5173 L22.236,14.5703 C22.236,16.5033 20.669,18.0703 18.736,18.0703 L18.736,18.0703 L17.024,18.0703 L17.024,20.0313 C17.024,20.9823 16.244,21.6223 15.425,21.6223 C15.058,21.6223 14.683,21.4933 14.367,21.2063 L14.367,21.2063 L10.917,18.0703 L5.264,18.0703 C3.331,18.0703 1.764,16.5033 1.764,14.5703 L1.764,14.5703 L1.764,5.5173 C1.764,3.5843 3.331,2.0173 5.264,2.0173 L5.264,2.0173 Z M18.736,3.5173 L5.264,3.5173 C4.161,3.5173 3.264,4.4143 3.264,5.5173 L3.264,5.5173 L3.264,14.5703 C3.264,15.6733 4.161,16.5703 5.264,16.5703 L5.264,16.5703 L11.497,16.5703 L11.926,16.9603 L15.376,20.0963 C15.404,20.1223 15.416,20.1223 15.425,20.1223 C15.435,20.1223 15.524,20.1203 15.524,20.0313 L15.524,20.0313 L15.524,16.5703 L18.736,16.5703 C19.839,16.5703 20.736,15.6733 20.736,14.5703 L20.736,14.5703 L20.736,5.5173 C20.736,4.4143 19.839,3.5173 18.736,3.5173 L18.736,3.5173 Z M13.5702,6.2758 C14.4892,6.2758 15.2342,7.0208 15.2342,7.9408 L15.2342,7.9408 L15.2342,8.6758 L16.5392,7.6698 C17.0392,7.2858 17.7612,7.6448 17.7572165,8.2748 L17.7572165,8.2748 L17.7312,11.9348 C17.7262,12.5648 16.9992,12.9138 16.5052,12.5228 L16.5052,12.5228 L15.2342,11.5178 L15.2342,12.1658 C15.2342,13.0848 14.4892,13.8308 13.5702,13.8308 L13.5702,13.8308 L8.5112,13.8308 C7.5922,13.8308 6.8462,13.0848 6.8462,12.1658 L6.8462,12.1658 L6.8462,7.9408 C6.8462,7.0208 7.5922,6.2758 8.5112,6.2758 L8.5112,6.2758 Z M11.0412,7.9948 C10.7642,7.9948 10.5412,8.2188 10.5412,8.4948 L10.5412,8.4948 L10.5412,9.5998 L9.4362,9.5998 C9.1592,9.5998 8.9362,9.8238 8.9362,10.0998 C8.9362,10.3758 9.1592,10.5998 9.4362,10.5998 L9.4362,10.5998 L10.5412,10.5998 L10.5412,11.7038 C10.5412,11.9808 10.7642,12.2038 11.0412,12.2038 C11.3172,12.2038 11.5412,11.9808 11.5412,11.7038 L11.5412,11.7038 L11.5412,10.5998 L12.6452,10.5998 C12.9212,10.5998 13.1452,10.3758 13.1452,10.0998 C13.1452,9.8238 12.9212,9.5998 12.6452,9.5998 L12.6452,9.5998 L11.5412,9.5998 L11.5412,8.4948 C11.5412,8.2188 11.3172,7.9948 11.0412,7.9948 Z", fill: color, fillRule: "evenodd" }) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { d: "M18.736,2.0173 C20.669,2.0173 22.236,3.5843 22.236,5.5173 L22.236,5.5173 L22.236,14.5703 C22.236,16.5033 20.669,18.0703 18.736,18.0703 L18.736,18.0703 L17.024,18.0703 L17.024,20.0313 C17.024,20.9823 16.244,21.6223 15.425,21.6223 C15.058,21.6223 14.683,21.4933 14.367,21.2063 L14.367,21.2063 L10.917,18.0703 L5.264,18.0703 C3.331,18.0703 1.764,16.5033 1.764,14.5703 L1.764,14.5703 L1.764,5.5173 C1.764,3.5843 3.331,2.0173 5.264,2.0173 L5.264,2.0173 Z M18.736,3.5173 L5.264,3.5173 C4.161,3.5173 3.264,4.4143 3.264,5.5173 L3.264,5.5173 L3.264,14.5703 C3.264,15.6733 4.161,16.5703 5.264,16.5703 L5.264,16.5703 L11.497,16.5703 L11.926,16.9603 L15.376,20.0963 C15.404,20.1223 15.416,20.1223 15.425,20.1223 C15.435,20.1223 15.524,20.1203 15.524,20.0313 L15.524,20.0313 L15.524,16.5703 L18.736,16.5703 C19.839,16.5703 20.736,15.6733 20.736,14.5703 L20.736,14.5703 L20.736,5.5173 C20.736,4.4143 19.839,3.5173 18.736,3.5173 L18.736,3.5173 Z M13.5702,6.2758 C14.4892,6.2758 15.2342,7.0208 15.2342,7.9408 L15.2342,7.9408 L15.2342,8.6758 L16.5392,7.6698 C17.0392,7.2858 17.7612,7.6448 17.7572165,8.2748 L17.7572165,8.2748 L17.7312,11.9348 C17.7262,12.5648 16.9992,12.9138 16.5052,12.5228 L16.5052,12.5228 L15.2342,11.5178 L15.2342,12.1658 C15.2342,13.0848 14.4892,13.8308 13.5702,13.8308 L13.5702,13.8308 L8.5112,13.8308 C7.5922,13.8308 6.8462,13.0848 6.8462,12.1658 L6.8462,12.1658 L6.8462,7.9408 C6.8462,7.0208 7.5922,6.2758 8.5112,6.2758 L8.5112,6.2758 Z M11.0412,7.9948 C10.7642,7.9948 10.5412,8.2188 10.5412,8.4948 L10.5412,8.4948 L10.5412,9.5998 L9.4362,9.5998 C9.1592,9.5998 8.9362,9.8238 8.9362,10.0998 C8.9362,10.3758 9.1592,10.5998 9.4362,10.5998 L9.4362,10.5998 L10.5412,10.5998 L10.5412,11.7038 C10.5412,11.9808 10.7642,12.2038 11.0412,12.2038 C11.3172,12.2038 11.5412,11.9808 11.5412,11.7038 L11.5412,11.7038 L11.5412,10.5998 L12.6452,10.5998 C12.9212,10.5998 13.1452,10.3758 13.1452,10.0998 C13.1452,9.8238 12.9212,9.5998 12.6452,9.5998 L12.6452,9.5998 L11.5412,9.5998 L11.5412,8.4948 C11.5412,8.2188 11.3172,7.9948 11.0412,7.9948 Z", fill: color, fillRule: "evenodd" }) })));
29
29
  };
30
30
  exports.default = VideocallPro;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var Vodplus = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.145,19 L4.583,19 C2.604,19 1,17.426 1,15.483 L1,6.517 C1,4.574 2.604,3 4.583,3 L17.418,3 C19.396,3 21,4.574 21,6.517 L21,12.351", stroke: color, strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M18.2459,13.5106 L20.6609,14.9056 L23.0769,16.2996 C23.7929,16.7136 23.7929,17.7476 23.0769,18.1616 L20.6609,19.5556 L18.2459,20.9506 C17.5299,21.3636 16.6339,20.8466 16.6339,20.0196 L16.6339,14.4416 C16.6339,13.6146 17.5299,13.0976 18.2459,13.5106 Z M12.9826,14.4158 C13.5346,14.4158 13.9826,14.8638 13.9826,15.4158 C13.9826,15.9678 13.5346,16.4158 12.9826,16.4158 C12.4306,16.4158 11.9826,15.9678 11.9826,15.4158 C11.9826,14.8638 12.4306,14.4158 12.9826,14.4158 Z M9.0176,14.4158 C9.5696,14.4158 10.0176,14.8638 10.0176,15.4158 C10.0176,15.9678 9.5696,16.4158 9.0176,16.4158 C8.4656,16.4158 8.0176,15.9678 8.0176,15.4158 C8.0176,14.8638 8.4656,14.4158 9.0176,14.4158 Z M5.0526,14.4158 C5.6046,14.4158 6.0526,14.8638 6.0526,15.4158 C6.0526,15.9678 5.6046,16.4158 5.0526,16.4158 C4.5006,16.4158 4.0526,15.9678 4.0526,15.4158 C4.0526,14.8638 4.5006,14.4158 5.0526,14.4158 Z M16.9476,5.9636 C17.4996,5.9636 17.9476,6.4116 17.9476,6.9636 C17.9476,7.5156 17.4996,7.9636 16.9476,7.9636 C16.3956,7.9636 15.9476,7.5156 15.9476,6.9636 C15.9476,6.4116 16.3956,5.9636 16.9476,5.9636 Z M12.9826,5.9636 C13.5346,5.9636 13.9826,6.4116 13.9826,6.9636 C13.9826,7.5156 13.5346,7.9636 12.9826,7.9636 C12.4306,7.9636 11.9826,7.5156 11.9826,6.9636 C11.9826,6.4116 12.4306,5.9636 12.9826,5.9636 Z M9.0176,5.9636 C9.5696,5.9636 10.0176,6.4116 10.0176,6.9636 C10.0176,7.5156 9.5696,7.9636 9.0176,7.9636 C8.4656,7.9636 8.0176,7.5156 8.0176,6.9636 C8.0176,6.4116 8.4656,5.9636 9.0176,5.9636 Z M5.0526,5.9636 C5.6046,5.9636 6.0526,6.4116 6.0526,6.9636 C6.0526,7.5156 5.6046,7.9636 5.0526,7.9636 C4.5006,7.9636 4.0526,7.5156 4.0526,6.9636 C4.0526,6.4116 4.5006,5.9636 5.0526,5.9636 Z", fill: color })] })) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.145,19 L4.583,19 C2.604,19 1,17.426 1,15.483 L1,6.517 C1,4.574 2.604,3 4.583,3 L17.418,3 C19.396,3 21,4.574 21,6.517 L21,12.351", stroke: color, strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M18.2459,13.5106 L20.6609,14.9056 L23.0769,16.2996 C23.7929,16.7136 23.7929,17.7476 23.0769,18.1616 L20.6609,19.5556 L18.2459,20.9506 C17.5299,21.3636 16.6339,20.8466 16.6339,20.0196 L16.6339,14.4416 C16.6339,13.6146 17.5299,13.0976 18.2459,13.5106 Z M12.9826,14.4158 C13.5346,14.4158 13.9826,14.8638 13.9826,15.4158 C13.9826,15.9678 13.5346,16.4158 12.9826,16.4158 C12.4306,16.4158 11.9826,15.9678 11.9826,15.4158 C11.9826,14.8638 12.4306,14.4158 12.9826,14.4158 Z M9.0176,14.4158 C9.5696,14.4158 10.0176,14.8638 10.0176,15.4158 C10.0176,15.9678 9.5696,16.4158 9.0176,16.4158 C8.4656,16.4158 8.0176,15.9678 8.0176,15.4158 C8.0176,14.8638 8.4656,14.4158 9.0176,14.4158 Z M5.0526,14.4158 C5.6046,14.4158 6.0526,14.8638 6.0526,15.4158 C6.0526,15.9678 5.6046,16.4158 5.0526,16.4158 C4.5006,16.4158 4.0526,15.9678 4.0526,15.4158 C4.0526,14.8638 4.5006,14.4158 5.0526,14.4158 Z M16.9476,5.9636 C17.4996,5.9636 17.9476,6.4116 17.9476,6.9636 C17.9476,7.5156 17.4996,7.9636 16.9476,7.9636 C16.3956,7.9636 15.9476,7.5156 15.9476,6.9636 C15.9476,6.4116 16.3956,5.9636 16.9476,5.9636 Z M12.9826,5.9636 C13.5346,5.9636 13.9826,6.4116 13.9826,6.9636 C13.9826,7.5156 13.5346,7.9636 12.9826,7.9636 C12.4306,7.9636 11.9826,7.5156 11.9826,6.9636 C11.9826,6.4116 12.4306,5.9636 12.9826,5.9636 Z M9.0176,5.9636 C9.5696,5.9636 10.0176,6.4116 10.0176,6.9636 C10.0176,7.5156 9.5696,7.9636 9.0176,7.9636 C8.4656,7.9636 8.0176,7.5156 8.0176,6.9636 C8.0176,6.4116 8.4656,5.9636 9.0176,5.9636 Z M5.0526,5.9636 C5.6046,5.9636 6.0526,6.4116 6.0526,6.9636 C6.0526,7.5156 5.6046,7.9636 5.0526,7.9636 C4.5006,7.9636 4.0526,7.5156 4.0526,6.9636 C4.0526,6.4116 4.5006,5.9636 5.0526,5.9636 Z", fill: color })] })) })));
29
29
  };
30
30
  exports.default = Vodplus;
@@ -15,6 +15,7 @@ declare const fillIcons: {
15
15
  readonly ic_audio: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
16
16
  readonly ic_bell: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
17
17
  readonly ic_bell_notification: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
18
+ readonly ic_bell_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
18
19
  readonly ic_bookmark: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
19
20
  readonly ic_button: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
20
21
  readonly ic_calendar: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
@@ -18,6 +18,7 @@ var ArrowUpStepper_1 = __importDefault(require("./ArrowUpStepper"));
18
18
  var Audio_1 = __importDefault(require("./Audio"));
19
19
  var Bell_1 = __importDefault(require("./Bell"));
20
20
  var BellNotification_1 = __importDefault(require("./BellNotification"));
21
+ var BellOff_1 = __importDefault(require("./BellOff"));
21
22
  var Bookmark_1 = __importDefault(require("./Bookmark"));
22
23
  var Button_1 = __importDefault(require("./Button"));
23
24
  var Calendar_1 = __importDefault(require("./Calendar"));
@@ -143,6 +144,7 @@ var fillIcons = {
143
144
  ic_audio: Audio_1.default,
144
145
  ic_bell: Bell_1.default,
145
146
  ic_bell_notification: BellNotification_1.default,
147
+ ic_bell_off: BellOff_1.default,
146
148
  ic_bookmark: Bookmark_1.default,
147
149
  ic_button: Button_1.default,
148
150
  ic_calendar: Calendar_1.default,
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const BellOff: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default BellOff;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var BellOff = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M5.4252,8.2905 L6.6522,9.5175 C6.5722,9.9305 6.5222,10.3385 6.5222,10.7235 L6.5222,15.7665 C6.5222,16.1845 6.3602,16.5775 6.0652,16.8725 L5.1582,17.7715 L14.8982,17.7645 L16.3952,19.2615 L15.4169999,19.2618075 C15.4164535,21.1453465 13.8836642,22.6778 12,22.6778 C10.116,22.6778 8.583,21.1448 8.583,19.2608 L8.58216668,19.2613 L5.1132,19.2615 C3.7682,19.2615 3.0832,17.7175 4.0162,16.7915 L5.0022,15.8145 C5.0152,15.8015 5.0222,15.7845 5.0222,15.7665 L5.0222,10.7235 C5.0222,9.8955 5.1662,9.0725 5.4252,8.2905 Z M13.9161667,19.2613 L10.0830003,19.2618066 C10.0835461,20.3183459 10.9433356,21.1778 12,21.1778 C13.057,21.1778 13.917,20.3178 13.917,19.2608 L13.9161667,19.2613 Z M11.9998,1.9873 C13.0948,1.9873 13.9828,2.8383 14.0598,3.9143 C17.1478,4.8353 18.9778,7.7773 18.9778,10.7233 L18.9778,15.7663 C18.9778,15.7843 18.9848,15.8013 18.9978,15.8143 L19.9838,16.7913 C20.5608,17.3643 20.5168,18.1713 20.0828,18.7053 L17.5338,16.1573 C17.5008,16.0303 17.4778,15.9003 17.4778,15.7663 L17.4778,10.7233 C17.4778,8.2363 15.8958,6.0273 13.6318,5.3523 L12.6378,5.0553 L12.5638,4.0213 C12.5418,3.7173 12.2998,3.4873 11.9998,3.4873 C11.7038,3.4873 11.4628,3.7143 11.4368,4.0153 L11.3498,5.0583 L10.3408,5.3363 C9.3758,5.6023 8.6378,6.0923 8.0668,6.6903 L7.0028,5.6263 C7.7678,4.8343 8.7478,4.2193 9.9428,3.8903 C10.0308,2.8263 10.9128,1.9873 11.9998,1.9873 Z" }), (0, jsx_runtime_1.jsx)("line", { x1: "4.15", x2: "19.85", y1: "4.894", y2: "20.595", stroke: color, strokeLinecap: "round", strokeWidth: "1.5" })] })) })));
29
+ };
30
+ exports.default = BellOff;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const ChatRoom11: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default ChatRoom11;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var ChatRoom11 = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M19.2567,1.4396 C21.3397,1.4396 23.0277,3.1276 23.0277,5.2106 L23.0277,14.9636 C23.0277,17.0456 21.3397,18.7336 19.2567,18.7336 L17.4117,18.7336 L17.4117,20.8456 C17.4117,21.8716 16.5717,22.5606 15.6907,22.5606 C15.2947,22.5606 14.8897,22.4216 14.5497,22.1116 L10.8337,18.7336 L4.7437,18.7336 C2.6607,18.7336 0.9727,17.0456 0.9727,14.9636 L0.9727,5.2106 C0.9727,3.1276 2.6607,1.4396 4.7437,1.4396 L19.2567,1.4396 Z M19.2567,2.9396 L4.7437,2.9396 C3.4917,2.9396 2.4727,3.9586 2.4727,5.2106 L2.4727,14.9636 C2.4727,16.2156 3.4917,17.2336 4.7437,17.2336 L11.4137,17.2336 L11.8417,17.6236 L15.5587,21.0016 C15.6147,21.0536 15.6567,21.0606 15.6907,21.0606 C15.6927,21.0606 15.9117,21.0546 15.9117,20.8456 L15.9117,17.2336 L19.2567,17.2336 C20.5087,17.2336 21.5277,16.2156 21.5277,14.9636 L21.5277,5.2106 C21.5277,3.9586 20.5087,2.9396 19.2567,2.9396 Z M14.764,9.8287 C16.826,9.8287 18.552,11.2627 19,13.1877 C19.117,13.6937 18.726,14.1767 18.208,14.1767 L15.04961,14.1775768 C15.0084137,14.6558358 14.6025113,15.0532 14.0912,15.0532 L5.9412,15.0532 C5.3272,15.0532 4.8652,14.4802 5.0042,13.8822 C5.5342,11.6042 7.5772,9.9072 10.0162,9.9072 L10.2509586,9.91246015 C11.0359706,9.9477107 11.7752307,10.1588603 12.4302447,10.5074494 C13.1042853,10.0777208 13.9051423,9.8287 14.764,9.8287 Z M14.764,11.3287 C14.4075486,11.3287 14.0650061,11.3933208 13.7485934,11.5127598 C14.0782911,11.8581549 14.3589464,12.2497578 14.5815296,12.6764732 L17.19,12.6767 C16.684,11.8537 15.78,11.3287 14.764,11.3287 Z M14.7518,5.7279 C15.7868,5.7279 16.6258,6.5669 16.6258,7.6019 C16.6258,8.6369 15.7868,9.4759 14.7518,9.4759 C13.7168,9.4759 12.8778,8.6369 12.8778,7.6019 C12.8778,6.5669 13.7168,5.7279 14.7518,5.7279 Z M10.0017,4.8525 C11.2257,4.8525 12.2187,5.8445 12.2187,7.0695 C12.2187,8.2945 11.2257,9.2865 10.0017,9.2865 C8.7767,9.2865 7.7837,8.2945 7.7837,7.0695 C7.7837,5.8445 8.7767,4.8525 10.0017,4.8525 Z M14.7518,7.2279 C14.5458,7.2279 14.3778,7.3959 14.3778,7.6019 C14.3778,7.8079 14.5458,7.9759 14.7518,7.9759 C14.9578,7.9759 15.1258,7.8079 15.1258,7.6019 C15.1258,7.3959 14.9578,7.2279 14.7518,7.2279 Z" }) })));
29
+ };
30
+ exports.default = ChatRoom11;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const ChatRoomFree: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default ChatRoomFree;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var ChatRoomFree = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M16.3118,20.4041 C16.4768,20.4041 16.6428,20.4581 16.7808,20.5691 C17.1038,20.8281 17.1548,21.2991 16.8978,21.6221 L16.8238,21.7081 L16.8158,21.7171 L16.8028,21.7291 L16.7948,21.7381 C16.7878,21.7451 16.7878,21.7451 16.7878,21.7461 C16.7798,21.7541 16.7788,21.7541 16.7788,21.7541 L16.7718,21.7621 L16.7648,21.7681 C16.7578,21.7751 16.7568,21.7761 16.7568,21.7761 L16.7458,21.7871 L16.6132028,21.9002481 C16.3866056,22.0739056 16.1173,22.1887667 15.8348,22.2321 C15.8288,22.2331 15.8238,22.2341 15.8178,22.2351 L15.8058,22.2371 L15.7888,22.2391 L15.7738,22.2411 L15.7648,22.2421 L15.7463,22.243975 L15.7358,22.2451 L15.7148,22.2466 L15.702175,22.2476 L15.687425,22.2486 L15.6698,22.249975 L15.6488,22.250975 L15.6163,22.2516 L15.5828,22.2521 C15.1978,22.2521 14.8058,22.1171 14.4758,21.8171 C14.4578,21.8011 14.3758,21.7261 14.3758,21.7261 C14.0688,21.4471 14.0468,20.9731 14.3248,20.6671 C14.4728,20.5041 14.6768,20.4211 14.8798,20.4211 C15.0608,20.4211 15.2408,20.4851 15.3848,20.6161 L15.4838,20.7071 C15.5298,20.7481 15.5588,20.7521 15.5828,20.7521 C15.6348,20.7521 15.6948,20.7231 15.7268,20.6841 C15.8748,20.5001 16.0918,20.4041 16.3118,20.4041 Z M11.4468,17.0371 L11.8758,17.4271 L13.2708,18.6941 C13.5768,18.9731 13.5998,19.4471 13.3208,19.7541 C13.1728,19.9171 12.9698,19.9991 12.7658,19.9991 C12.5868,19.9991 12.4068,19.9361 12.2638,19.8061 L10.9178,18.5831 L10.9098,18.5761 L10.9008,18.5681 C10.8948,18.5621 10.8928,18.5611 10.8918,18.5591 C10.8878,18.5561 10.8858,18.5541 10.8828,18.5521 C10.8728,18.5421 10.8668,18.5371 10.8668,18.5371 L9.8948,18.5371 C9.4808,18.5371 9.1448,18.2011 9.1448,17.7871 C9.1448,17.3731 9.4808,17.0371 9.8948,17.0371 L11.4468,17.0371 Z M19.6428,16.9761 C19.9898,16.9761 20.3018,17.2191 20.3758,17.5731 C20.4608,17.9781 20.2008,18.3741 19.7968,18.4601 C19.6358,18.4931 19.4708,18.5161 19.3028,18.5281 L19.2918,18.5291 L19.2808,18.5301 L19.265675,18.5306 L19.2478,18.5316 L19.230175,18.532225 L19.2068,18.533975 L19.183175,18.5346 L19.1533,18.535225 L19.1088,18.536975 L17.2538,18.5371 L17.2538,18.8481 C17.2538,19.2621 16.9178,19.5981 16.5038,19.5981 C16.0898,19.5981 15.7538,19.2621 15.7538,18.8481 L15.7538,17.0371 L19.0448,17.0371 C19.1948,17.0371 19.3438,17.0221 19.4888,16.9921 C19.5408,16.9811 19.5918,16.9761 19.6428,16.9761 Z M4.3418,16.9731 C4.3948,16.9731 4.4468,16.9781 4.4998,16.9891 C4.6488,17.0211 4.8018,17.0371 4.9558,17.0371 L7.0378,17.0371 C7.4518,17.0371 7.7878,17.3731 7.7878,17.7871 C7.7878,18.2011 7.4518,18.5371 7.0378,18.5371 L4.8958,18.5371 L4.8498,18.5361 L4.8188,18.5351 L4.7958,18.5341 L4.7718,18.5331 L4.7538,18.5321 L4.7358,18.5311 L4.7218,18.5301 L4.7058,18.5291 L4.6888,18.5281 L4.6768,18.5271 C4.5058,18.5131 4.3438,18.4901 4.1858,18.4561 C3.7808,18.3691 3.5228,17.9711 3.6098,17.5661 C3.6848,17.2141 3.9958,16.9731 4.3418,16.9731 Z M21.9548,13.4081 C22.3688,13.4081 22.7048,13.7441 22.7048,14.1581 L22.7048,14.9481 L22.7038,14.9891 L22.7028,15.0171 L22.7018,15.0421 L22.7008,15.0541 C22.7008,15.0571 22.7008,15.0611 22.6998,15.0641 L22.6998,15.0771 L22.6988,15.0951 L22.6978,15.1131 L22.6968,15.1231 L22.6958,15.1411 L22.6948,15.1531 L22.6938,15.1651 L22.6928,15.1761 L22.6918,15.1881 L22.6908,15.2051 L22.6898,15.2171 L22.6888,15.2291 C22.6878,15.2381 22.6868,15.2411 22.6868,15.2451 L22.6858,15.2571 L22.6848,15.2691 L22.6828,15.2791 L22.6818,15.2921 L22.6808,15.3031 C22.6798,15.3111 22.6798,15.3121 22.6788,15.3141 C22.6788,15.3181 22.6778,15.3221 22.6778,15.3251 C22.6768,15.3351 22.6758,15.3391 22.6758,15.3421 C22.6738,15.3521 22.6738,15.3561 22.6728,15.3601 C22.6718,15.3681 22.6718,15.3701 22.6718,15.3711 C22.6698,15.3811 22.6698,15.3851 22.6698,15.3881 L22.6668,15.4051 C22.6658,15.4151 22.6648,15.4191 22.6648,15.4221 L22.6618,15.4391 L22.6588,15.4561 L22.6578,15.4681 C22.6558,15.4781 22.6548,15.4811 22.6548,15.4851 C22.6528,15.4941 22.6518,15.4981 22.6518,15.5021 C22.6498,15.5111 22.6488,15.5151 22.6488,15.5191 C22.6478,15.5281 22.6468,15.5321 22.6458,15.5361 L22.6428,15.5531 L22.6398,15.5691 C22.6388,15.5731 22.6378,15.5771 22.6368,15.5811 L22.6338,15.5981 L22.631425,15.608975 C22.6288,15.6201 22.6278,15.6261 22.6278,15.6311 L22.6238,15.6481 L22.6198,15.6641 C22.5218,16.1121 22.3418,16.5281 22.0968,16.8971 C21.9528,17.1141 21.7148,17.2311 21.4728,17.2311 C21.3308,17.2311 21.1868,17.1911 21.0588,17.1071 C20.7138,16.8781 20.6188,16.4121 20.8478,16.0671 C21.0818,15.7141 21.2048,15.3031 21.2048,14.8771 L21.2048,14.1581 C21.2048,13.7441 21.5408,13.4081 21.9548,13.4081 Z M2.0448,13.3881 C2.4588,13.3881 2.7948,13.7241 2.7948,14.1381 L2.7948,14.8771 C2.7948,15.2991 2.9158,15.7071 3.1458,16.0571 C3.3728,16.4041 3.2748,16.8691 2.9288,17.0961 C2.8018,17.1791 2.6598,17.2181 2.5188,17.2181 C2.2738,17.2181 2.0348,17.0991 1.8908,16.8791 C1.8658,16.8411 1.8408,16.8021 1.8178,16.7631 C1.8158,16.7591 1.8138,16.7561 1.8118,16.7531 C1.8068,16.7451 1.8048,16.7421 1.8028,16.7391 L1.7948,16.7251 L1.7898,16.7151 L1.7838,16.7056 C1.7788,16.6971 1.7788,16.6961 1.7778,16.6961 L1.7738,16.6871 L1.7678,16.6771 C1.7628,16.6681 1.7618,16.6671 1.7618,16.6671 C1.7568,16.6581 1.7558,16.6571 1.7558,16.6571 C1.7518,16.6481 1.7508,16.6471 1.7508,16.6471 C1.7468,16.6391 1.7458,16.6381 1.7448,16.6371 C1.7398,16.6271 1.7388,16.6261 1.7388,16.6251 C1.7328,16.6151 1.7328,16.6131 1.7318,16.6121 L1.7268,16.6031 L1.7218,16.5931 C1.7178,16.5861 1.7168,16.5841 1.7158,16.5831 C1.7118,16.5761 1.7118,16.5741 1.7108,16.5731 L1.7058,16.5641 L1.7008,16.5541 L1.6948,16.5431 C1.6908,16.5351 1.6898,16.5321 1.6878,16.5291 L1.6828,16.5186 L1.6778,16.5091 L1.6728,16.4991 C1.6708,16.4951 1.6698,16.4921 1.6678,16.4891 C1.6638,16.4801 1.6618,16.4771 1.6608,16.4741 L1.6558,16.463725 L1.6498,16.4511 C1.6418,16.4351 1.6378,16.4271 1.6338,16.4181 C1.6318,16.4131 1.6298,16.4081 1.6278,16.4031 L1.6208,16.3881 L1.6148,16.3756 L1.6088,16.3631 L1.51431852,16.1282111 C1.45646667,15.9691 1.40913333,15.8051 1.3738,15.6371 L1.3708,15.6201 L1.3678,15.6091 L1.3658,15.5976 L1.363175,15.5836 L1.3593,15.566975 L1.357175,15.552975 L1.3543,15.5386 L1.3513,15.5221 L1.349175,15.5076 L1.3468,15.4961 L1.3448,15.4851 L1.343175,15.473975 L1.3413,15.462225 L1.3398,15.4511 L1.3378,15.4401 L1.3358,15.4231 L1.3328,15.4061 L1.3308,15.3941 C1.3298,15.3851 1.3298,15.3811 1.3288,15.3771 C1.3278,15.3681 1.3268,15.3641 1.3268,15.3601 L1.3248,15.3481 L1.3233,15.3371 L1.3218,15.3251 L1.3208,15.3151 L1.3188,15.2961 L1.3168,15.2861 L1.3158,15.2681 L1.3143,15.2541 L1.3128,15.2391 L1.3113,15.2251 L1.3098,15.2041 L1.307925,15.190225 L1.3068,15.1691 L1.3058,15.1591 L1.3038,15.1291 L1.302675,15.1176 L1.3008,15.0821 L1.2988,15.0431 L1.2978,15.0181 L1.2958,14.9531 L1.2948,14.1381 C1.2948,13.7241 1.6308,13.3881 2.0448,13.3881 Z M7.7578,8.0515 L7.7578,8.9455 L5.9448,8.9455 L5.9448,9.9515 L7.3608,9.9515 L7.3608,10.8245 L5.9448,10.8245 L5.9448,12.4995 L4.7008,12.4995 L4.7008,8.3985 C4.7008,8.2075 4.8558,8.0515 5.0478,8.0515 L7.7578,8.0515 Z M15.8296,8.0523 L15.8296,8.9453 L13.9906,8.9453 L13.9906,9.7923 L15.4266,9.7923 L15.4266,10.6663 L13.9906,10.6663 L13.9906,11.6063 L15.8896,11.6063 L15.8896,12.4993 L13.1066,12.4993 C12.9146,12.4993 12.7596,12.3443 12.7596,12.1523 L12.7596,8.3983 C12.7596,8.2073 12.9146,8.0523 13.1066,8.0523 L15.8296,8.0523 Z M19.6773,8.0522 L19.6773,8.9452 L17.8383,8.9452 L17.8383,9.7922 L19.2733,9.7922 L19.2733,10.6662 L17.8383,10.6662 L17.8383,11.6062 L19.7373,11.6062 L19.7373,12.4992 L16.9543,12.4992 C16.7623,12.4992 16.6073,12.3442 16.6073,12.1522 L16.6073,8.3992 C16.6073,8.2072 16.7623,8.0522 16.9543,8.0522 L19.6773,8.0522 Z M10.2877,8.0519 C11.4127,8.0519 11.9757,8.4819 11.9757,9.4419 C11.9757,10.0509 11.7047,10.3619 11.2407,10.5599 L11.2407,10.5869 L12.2337,12.4989 L10.9367,12.4989 L10.1297,10.8779 L9.6657,10.8779 L9.6657,12.4989 L8.4217,12.4989 L8.4217,8.3989 C8.4217,8.2069 8.5777,8.0519 8.7687,8.0519 Z M21.9548,7.6941 C22.3688,7.6941 22.7048,8.0301 22.7048,8.4441 L22.7048,11.3011 C22.7048,11.7151 22.3688,12.0511 21.9548,12.0511 C21.5408,12.0511 21.2048,11.7151 21.2048,11.3011 L21.2048,8.4441 C21.2048,8.0301 21.5408,7.6941 21.9548,7.6941 Z M2.0448,7.6741 C2.4588,7.6741 2.7948,8.0101 2.7948,8.4241 L2.7948,11.2811 C2.7948,11.6961 2.4588,12.0311 2.0448,12.0311 C1.6308,12.0311 1.2948,11.6961 1.2948,11.2811 L1.2948,8.4241 C1.2948,8.0101 1.6308,7.6741 2.0448,7.6741 Z M10.1027,8.8989 L9.6527,8.8989 L9.6527,10.1299 L10.1227,10.1299 C10.5657,10.1299 10.7377,9.9189 10.7377,9.5019 C10.7377,9.0839 10.5597,8.8989 10.1027,8.8989 Z M21.2108,2.7141 C21.4148,2.7141 21.6188,2.7981 21.7678,2.9621 C22.1148,3.3491 22.3818,3.8111 22.5408,4.3201 C22.5538,4.3631 22.5658,4.4061 22.5778,4.4501 L22.5808,4.4611 L22.589425,4.493975 L22.5968,4.5211 L22.5998,4.5321 L22.6018,4.5431 L22.6073,4.5651 L22.6128,4.5871 L22.6148,4.5981 C22.6168,4.6061 22.6168,4.6071 22.6178,4.6091 L22.6198,4.6201 L22.624675,4.6426 L22.6278,4.6591 C22.6298,4.6671 22.6298,4.6691 22.6308,4.6701 L22.6328,4.6811 L22.6348,4.6921 L22.636675,4.7016 L22.6398,4.718475 L22.6428,4.7321 L22.6443,4.7411 L22.646675,4.7521 L22.648675,4.7631 L22.649925,4.7746 L22.653425,4.7946 L22.6558,4.8061 L22.6578,4.8171 L22.6588,4.8281 L22.6608,4.8391 L22.6628,4.8501 L22.6653,4.8681 L22.6668,4.8791 L22.6688,4.8901 L22.670675,4.905475 L22.672675,4.9191 L22.6738,4.9301 L22.6768,4.9541 L22.678675,4.9656 L22.6798,4.9761 L22.681675,4.990725 L22.6828,5.0061 L22.6843,5.0171 L22.6858,5.0281 L22.686925,5.043475 L22.6883,5.0546 L22.6893,5.0656 L22.690675,5.0771 L22.691675,5.097975 L22.6928,5.1151 L22.694675,5.1296 L22.694925,5.141475 L22.695925,5.155475 L22.6973,5.170225 L22.698675,5.188475 L22.6988,5.2021 L22.7003,5.2226 L22.7008,5.2421 L22.702675,5.2676 L22.703675,5.296475 L22.7043,5.334975 L22.7048,5.5871 C22.7048,6.0011 22.3688,6.3371 21.9548,6.3371 C21.5408,6.3371 21.2048,6.0011 21.2048,5.5871 L21.2048,5.4081 C21.2048,4.8741 21.0088,4.3621 20.6528,3.9651 C20.3758,3.6571 20.4008,3.1831 20.7098,2.9061 C20.8528,2.7781 21.0318,2.7141 21.2108,2.7141 Z M2.7998,2.7031 C2.9798,2.7031 3.1608,2.7671 3.3038,2.8971 C3.6108,3.1761 3.6338,3.6501 3.3548,3.9571 C2.9938,4.3551 2.7948,4.8701 2.7948,5.4081 L2.7948,5.5671 C2.7948,5.9821 2.4588,6.3171 2.0448,6.3171 C1.6308,6.3171 1.2948,5.9821 1.2948,5.5671 L1.294925,5.3356 L1.2968,5.2691 L1.297925,5.2446 L1.2998,5.2061 L1.3018,5.1721 L1.3028,5.1581 L1.3048,5.1301 L1.3058,5.1191 L1.3078,5.0941 L1.3088,5.0831 L1.3108,5.0661 C1.3108,5.0621 1.3118,5.0581 1.3118,5.0541 L1.3138,5.0321 L1.3158,5.0211 L1.3168,4.9991 C1.3178,4.9901 1.3188,4.9891 1.3188,4.9871 L1.320175,4.9736 L1.321675,4.963725 L1.3228,4.9491 L1.3258,4.9271 L1.3288,4.9051 C1.3308,4.8941 1.3318,4.8871 1.3328,4.8811 C1.3338,4.8701 1.3348,4.8701 1.3348,4.8691 L1.3368,4.8491 C1.3388,4.8401 1.3388,4.8391 1.3388,4.8381 C1.3398,4.8301 1.3408,4.8281 1.3408,4.8271 C1.3428,4.8111 1.3448,4.8001 1.3468,4.7901 L1.3488,4.7791 L1.3518,4.7631 C1.3528,4.7561 1.3528,4.7551 1.3538,4.7531 C1.3548,4.7451 1.3548,4.7441 1.3558,4.7421 L1.3588,4.723975 L1.3618,4.7051 L1.3638,4.6951 C1.3668,4.6851 1.3668,4.6841 1.3668,4.6841 L1.3688,4.6741 L1.3708,4.6631 L1.3818,4.6121 L1.3838,4.6011 L1.3868,4.5901 L1.3953,4.554475 L1.4028,4.5231 L1.4058,4.5106 L1.47129537,4.28359074 C1.5903,3.91451667 1.76613333,3.5716 1.9878,3.2641 L1.9948,3.2561 C1.9988,3.2501 1.9998,3.2491 2.0008,3.2471 L2.0068,3.2391 L2.0203,3.2206 L2.0308,3.2061 C2.0368,3.1981 2.0378,3.1981 2.0378,3.1971 L2.0448,3.1891 L2.0508,3.1811 C2.0568,3.1731 2.0568,3.1731 2.0568,3.1721 L2.0648,3.1626 C2.0698,3.1551 2.0738,3.1511 2.0778,3.1461 L2.0848,3.137475 L2.0918,3.1281 C2.0978,3.1211 2.0978,3.1201 2.0988,3.1191 L2.1058,3.1111 C2.1108,3.1041 2.1118,3.1031 2.1118,3.1021 L2.1198,3.0931 L2.1278,3.0841 C2.1318,3.0781 2.1328,3.0771 2.1338,3.0761 L2.1408,3.0681 C2.1458,3.0611 2.1468,3.0611 2.1478,3.0591 L2.1588,3.0471 L2.20355,2.994725 L2.2458,2.9481 C2.3938,2.7851 2.5968,2.7031 2.7998,2.7031 Z M19.1058,1.7481 L19.1188,1.7491 C19.1658,1.7501 19.2128,1.7511 19.2588,1.7541 C19.6728,1.7781 19.9888,2.1331 19.9648,2.5461 C19.9418,2.9451 19.6108,3.2531 19.2168,3.2531 L19.1728,3.2521 C19.1308,3.2491 19.0878,3.2481 19.0448,3.2481 L16.1878,3.2481 C15.7738,3.2481 15.4378,2.9121 15.4378,2.4981 C15.4378,2.0841 15.7738,1.7481 16.1878,1.7481 L19.1058,1.7481 Z M7.6168,1.7481 C8.0308,1.7481 8.3668,2.0841 8.3668,2.4981 C8.3668,2.9121 8.0308,3.2481 7.6168,3.2481 L4.8973,3.24885 L4.8388,3.2511 C4.8248,3.2521 4.8118,3.2521 4.7988,3.2521 C4.4028,3.2521 4.0708,2.9421 4.0498,2.5421 C4.0288,2.1291 4.3448,1.7771 4.7568,1.7531 C4.7738,1.7521 4.7908,1.7521 4.8078,1.7511 L4.8188,1.7511 L4.8928,1.7491 Z M13.3308,1.7481 C13.7448,1.7481 14.0808,2.0841 14.0808,2.4981 C14.0808,2.9121 13.7448,3.2481 13.3308,3.2481 L10.4738,3.2481 C10.0598,3.2481 9.7238,2.9121 9.7238,2.4981 C9.7238,2.0841 10.0598,1.7481 10.4738,1.7481 Z" }) })));
29
+ };
30
+ exports.default = ChatRoomFree;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const ChatRoomGroup: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default ChatRoomGroup;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var ChatRoomGroup = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M19.2567,1.4396 C21.3397,1.4396 23.0277,3.1276 23.0277,5.2106 L23.0277,14.9636 C23.0277,17.0456 21.3397,18.7336 19.2567,18.7336 L17.4117,18.7336 L17.4117,20.8456 C17.4117,21.8716 16.5717,22.5606 15.6907,22.5606 C15.2947,22.5606 14.8897,22.4216 14.5497,22.1116 L10.8337,18.7336 L4.7437,18.7336 C2.6607,18.7336 0.9727,17.0456 0.9727,14.9636 L0.9727,5.2106 C0.9727,3.1276 2.6607,1.4396 4.7437,1.4396 L19.2567,1.4396 Z M19.2567,2.9396 L4.7437,2.9396 C3.4917,2.9396 2.4727,3.9586 2.4727,5.2106 L2.4727,14.9636 C2.4727,16.2156 3.4917,17.2336 4.7437,17.2336 L11.4137,17.2336 L11.8417,17.6236 L15.5587,21.0016 C15.6147,21.0536 15.6567,21.0606 15.6907,21.0606 C15.6927,21.0606 15.9117,21.0546 15.9117,20.8456 L15.9117,17.2336 L19.2567,17.2336 C20.5087,17.2336 21.5277,16.2156 21.5277,14.9636 L21.5277,5.2106 C21.5277,3.9586 20.5087,2.9396 19.2567,2.9396 Z M16.7479,9.8287 C18.8099,9.8287 20.5359,11.2627 20.9829,13.1877 C21.1009,13.6937 20.7099,14.1767 20.1919,14.1767 L17.03341,14.1775768 C16.9922137,14.6558358 16.5863113,15.0532 16.075,15.0532 L7.925,15.0532 C7.41368866,15.0532 7.00778632,14.6558358 6.96658999,14.1775768 L3.8088,14.1767 C3.2898,14.1767 2.8988,13.6937 3.0168,13.1877 C3.4638,11.2627 5.1908,9.8287 7.2518,9.8287 C8.1110744,9.8287 8.91200084,10.0777208 9.58641131,10.507522 C10.3058988,10.1243058 11.1276183,9.9072 12,9.9072 L12.2347586,9.91246015 C13.019401,9.9476941 13.7583346,10.1586615 14.4131195,10.5069571 C15.0876992,10.0777208 15.8886256,9.8287 16.7479,9.8287 Z M7.2518,11.3287 C6.2358,11.3287 5.3328,11.8537 4.8258,12.6767 L7.43467044,12.6764732 C7.65725357,12.2497578 7.93790891,11.8581549 8.26614918,11.5121423 C7.95018947,11.3931837 7.607873,11.3287 7.2518,11.3287 Z M16.7479,11.3287 C16.3914486,11.3287 16.0489061,11.3933208 15.7324934,11.5127598 C16.0620911,11.8581549 16.3427464,12.2497578 16.5653296,12.6764732 L19.1739,12.6767 C18.6679,11.8537 17.7639,11.3287 16.7479,11.3287 Z M7.2396,5.7279 C8.2746,5.7279 9.1136,6.5669 9.1136,7.6019 C9.1136,8.6369 8.2746,9.4759 7.2396,9.4759 C6.2046,9.4759 5.3656,8.6369 5.3656,7.6019 C5.3656,6.5669 6.2046,5.7279 7.2396,5.7279 Z M16.7352,5.7279 C17.7702,5.7279 18.6092,6.5669 18.6092,7.6019 C18.6092,8.6369 17.7702,9.4759 16.7352,9.4759 C15.7002,9.4759 14.8612,8.6369 14.8612,7.6019 C14.8612,6.5669 15.7002,5.7279 16.7352,5.7279 Z M11.9855,4.8525 C13.2095,4.8525 14.2025,5.8445 14.2025,7.0695 C14.2025,8.2945 13.2095,9.2865 11.9855,9.2865 C10.7605,9.2865 9.7675,8.2945 9.7675,7.0695 C9.7675,5.8445 10.7605,4.8525 11.9855,4.8525 Z M7.2396,7.2279 C7.0336,7.2279 6.8656,7.3959 6.8656,7.6019 C6.8656,7.8079 7.0336,7.9759 7.2396,7.9759 C7.4456,7.9759 7.6136,7.8079 7.6136,7.6019 C7.6136,7.3959 7.4456,7.2279 7.2396,7.2279 Z M16.7352,7.2279 C16.5292,7.2279 16.3612,7.3959 16.3612,7.6019 C16.3612,7.8079 16.5292,7.9759 16.7352,7.9759 C16.9412,7.9759 17.1092,7.8079 17.1092,7.6019 C17.1092,7.3959 16.9412,7.2279 16.7352,7.2279 Z" }) })));
29
+ };
30
+ exports.default = ChatRoomGroup;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const ChatRoomPaid: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default ChatRoomPaid;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var ChatRoomPaid = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M19.0445,1.7481 C21.0665,1.7481 22.7055,3.3871 22.7055,5.4081 L22.7055,14.8771 C22.7055,16.8981 21.0665,18.5371 19.0445,18.5371 L17.2535,18.5371 L17.2535,20.5871 C17.2535,21.5831 16.4385,22.2521 15.5825,22.2521 C15.1985,22.2521 14.8055,22.1171 14.4755,21.8171 L10.8675,18.5371 L4.9555,18.5371 C2.9335,18.5371 1.2945,16.8981 1.2945,14.8771 L1.2945,5.4081 C1.2945,3.3871 2.9335,1.7481 4.9555,1.7481 Z M19.0445,3.2481 L4.9555,3.2481 C3.7645,3.2481 2.7945,4.2171 2.7945,5.4081 L2.7945,14.8771 C2.7945,16.0681 3.7645,17.0371 4.9555,17.0371 L11.4475,17.0371 L11.8765,17.4271 L15.4835,20.7071 C15.5295,20.7481 15.5595,20.7521 15.5825,20.7521 C15.5845,20.7521 15.7535,20.7501 15.7535,20.5871 L15.7535,17.0371 L19.0445,17.0371 C20.2355,17.0371 21.2055,16.0681 21.2055,14.8771 L21.2055,5.4081 C21.2055,4.2171 20.2355,3.2481 19.0445,3.2481 Z M7.2204,8.8423 C7.9504,8.8423 8.5414,9.4343 8.5414,10.1633 C8.5414,10.8923 7.9504,11.4843 7.2204,11.4843 C6.4914,11.4843 5.8994,10.8923 5.8994,10.1633 C5.8994,9.4343 6.4914,8.8423 7.2204,8.8423 Z M11.9998,8.8423 C12.7298,8.8423 13.3208,9.4343 13.3208,10.1633 C13.3208,10.8923 12.7298,11.4843 11.9998,11.4843 C11.2708,11.4843 10.6788,10.8923 10.6788,10.1633 C10.6788,9.4343 11.2708,8.8423 11.9998,8.8423 Z M16.7793,8.8423 C17.5093,8.8423 18.1003,9.4343 18.1003,10.1633 C18.1003,10.8923 17.5093,11.4843 16.7793,11.4843 C16.0503,11.4843 15.4583,10.8923 15.4583,10.1633 C15.4583,9.4343 16.0503,8.8423 16.7793,8.8423 Z" }) })));
29
+ };
30
+ exports.default = ChatRoomPaid;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var DesignPreference = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" }, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M14.0742,15.9112 C12.1572,16.6692 10.8122,18.4402 10.8122,20.5052 C10.8122,20.9592 10.8782,21.3992 11.0002,21.8172 C5.8122,21.4682 1.7242,17.5842 1.7242,12.8452 C1.7242,7.8752 6.2192,3.8462 11.7632,3.8462 C13.6432,3.8462 15.4022,4.3092 16.9062,5.1152 M20.6709,8.6912 C21.3939,9.9342 21.8029,11.3462 21.8029,12.8452 C21.8029,14.5302 21.2849,16.1062 20.3859,17.4542 C19.6069,16.5162 18.4769,15.8432 17.1799,15.6092" }), (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M8.9422,10.4341 C8.9422,9.3141 8.0342,8.4061 6.9142,8.4061 C5.7952,8.4061 4.8872,9.3141 4.8872,10.4341 C4.8872,11.5541 5.7952,12.4621 6.9142,12.4621 C8.0342,12.4621 8.9422,11.5541 8.9422,10.4341 M13.5869,7.8135 C13.5869,6.8415 12.7989,6.0535 11.8269,6.0535 C10.8559,6.0535 10.0679,6.8415 10.0679,7.8135 C10.0679,8.7855 10.8559,9.5735 11.8269,9.5735 C12.7989,9.5735 13.5869,8.7855 13.5869,7.8135 M9.2917,16.0693 C9.2917,15.0973 8.5037,14.3093 7.5317,14.3093 C6.5607,14.3093 5.7727,15.0973 5.7727,16.0693 C5.7727,17.0413 6.5607,17.8293 7.5317,17.8293 C8.5037,17.8293 9.2917,17.0413 9.2917,16.0693" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M17.7283,9.5905 C18.2343,9.7555 18.5663,10.0895 18.5163,10.5975 C18.5083,10.6775 18.4923,10.7575 18.4663,10.8375 L15.2993,20.2945 C15.1073,20.8805 14.4773,21.1985 13.8923,21.0075 C13.3073,20.8155 12.9883,20.1855 13.1803,19.6005 L16.3473,10.1425 C16.5393,9.5575 17.1433,9.3985 17.7283,9.5905 Z M18.6588,1.8879 C18.6588,1.8879 23.8258,3.4439 21.8078,7.3999 C21.8078,7.3999 21.4918,8.0149 20.8398,8.5739 C20.7368,8.6629 20.6258,8.7499 20.5058,8.8329 C19.2708,9.6879 17.7148,9.9479 16.6108,8.9289 C16.1568,8.5099 15.9078,7.6109 15.9508,7.1689 C16.0678,5.9859 16.7088,5.5819 17.6238,4.8589 C18.5388,4.1349 18.7498,2.9029 18.6588,1.8879 Z" })] })) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M14.0742,15.9112 C12.1572,16.6692 10.8122,18.4402 10.8122,20.5052 C10.8122,20.9592 10.8782,21.3992 11.0002,21.8172 C5.8122,21.4682 1.7242,17.5842 1.7242,12.8452 C1.7242,7.8752 6.2192,3.8462 11.7632,3.8462 C13.6432,3.8462 15.4022,4.3092 16.9062,5.1152 M20.6709,8.6912 C21.3939,9.9342 21.8029,11.3462 21.8029,12.8452 C21.8029,14.5302 21.2849,16.1062 20.3859,17.4542 C19.6069,16.5162 18.4769,15.8432 17.1799,15.6092" }), (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M8.9422,10.4341 C8.9422,9.3141 8.0342,8.4061 6.9142,8.4061 C5.7952,8.4061 4.8872,9.3141 4.8872,10.4341 C4.8872,11.5541 5.7952,12.4621 6.9142,12.4621 C8.0342,12.4621 8.9422,11.5541 8.9422,10.4341 M13.5869,7.8135 C13.5869,6.8415 12.7989,6.0535 11.8269,6.0535 C10.8559,6.0535 10.0679,6.8415 10.0679,7.8135 C10.0679,8.7855 10.8559,9.5735 11.8269,9.5735 C12.7989,9.5735 13.5869,8.7855 13.5869,7.8135 M9.2917,16.0693 C9.2917,15.0973 8.5037,14.3093 7.5317,14.3093 C6.5607,14.3093 5.7727,15.0973 5.7727,16.0693 C5.7727,17.0413 6.5607,17.8293 7.5317,17.8293 C8.5037,17.8293 9.2917,17.0413 9.2917,16.0693" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M17.7283,9.5905 C18.2343,9.7555 18.5663,10.0895 18.5163,10.5975 C18.5083,10.6775 18.4923,10.7575 18.4663,10.8375 L15.2993,20.2945 C15.1073,20.8805 14.4773,21.1985 13.8923,21.0075 C13.3073,20.8155 12.9883,20.1855 13.1803,19.6005 L16.3473,10.1425 C16.5393,9.5575 17.1433,9.3985 17.7283,9.5905 Z M18.6588,1.8879 C18.6588,1.8879 23.8258,3.4439 21.8078,7.3999 C21.8078,7.3999 21.4918,8.0149 20.8398,8.5739 C20.7368,8.6629 20.6258,8.7499 20.5058,8.8329 C19.2708,9.6879 17.7148,9.9479 16.6108,8.9289 C16.1568,8.5099 15.9078,7.6109 15.9508,7.1689 C16.0678,5.9859 16.7088,5.5819 17.6238,4.8589 C18.5388,4.1349 18.7498,2.9029 18.6588,1.8879 Z" })] })) })));
29
29
  };
30
30
  exports.default = DesignPreference;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var PappType = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" }, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M19.2878,7.0015 L4.7118,7.0015 C3.3318,7.0015 2.2118,8.1205 2.2118,9.5015 L2.2118,17.3035 C2.2118,18.6835 3.3318,19.8035 4.7118,19.8035 L19.2878,19.8035 C20.6688,19.8035 21.7878,18.6835 21.7878,17.3035 L21.7878,9.5015 C21.7878,8.1205 20.6688,7.0015 19.2878,7.0015 L19.2878,7.0015 Z M19.2878,8.5015 C19.8398,8.5015 20.2878,8.9505 20.2878,9.5015 L20.2878,17.3035 C20.2878,17.8545 19.8398,18.3035 19.2878,18.3035 L4.7118,18.3035 C4.1608,18.3035 3.7118,17.8545 3.7118,17.3035 L3.7118,9.5015 C3.7118,8.9505 4.1608,8.5015 4.7118,8.5015 L19.2878,8.5015 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeWidth: "1.5", d: "M6.1046,8.0121 L6.1046,5.5901 C6.1046,5.0321 6.5566,4.5801 7.1146,4.5801 L9.4596,4.5801 C10.0176,4.5801 10.4696,5.0321 10.4696,5.5901 L10.4696,8.0121 M13.4324,8.0121 L13.4324,5.5901 C13.4324,5.0321 13.8844,4.5801 14.4424,4.5801 L16.7874,4.5801 C17.3454,4.5801 17.7974,5.0321 17.7974,5.5901 L17.7974,8.0121" })] })) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M19.2878,7.0015 L4.7118,7.0015 C3.3318,7.0015 2.2118,8.1205 2.2118,9.5015 L2.2118,17.3035 C2.2118,18.6835 3.3318,19.8035 4.7118,19.8035 L19.2878,19.8035 C20.6688,19.8035 21.7878,18.6835 21.7878,17.3035 L21.7878,9.5015 C21.7878,8.1205 20.6688,7.0015 19.2878,7.0015 L19.2878,7.0015 Z M19.2878,8.5015 C19.8398,8.5015 20.2878,8.9505 20.2878,9.5015 L20.2878,17.3035 C20.2878,17.8545 19.8398,18.3035 19.2878,18.3035 L4.7118,18.3035 C4.1608,18.3035 3.7118,17.8545 3.7118,17.3035 L3.7118,9.5015 C3.7118,8.9505 4.1608,8.5015 4.7118,8.5015 L19.2878,8.5015 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeWidth: "1.5", d: "M6.1046,8.0121 L6.1046,5.5901 C6.1046,5.0321 6.5566,4.5801 7.1146,4.5801 L9.4596,4.5801 C10.0176,4.5801 10.4696,5.0321 10.4696,5.5901 L10.4696,8.0121 M13.4324,8.0121 L13.4324,5.5901 C13.4324,5.0321 13.8844,4.5801 14.4424,4.5801 L16.7874,4.5801 C17.3454,4.5801 17.7974,5.0321 17.7974,5.5901 L17.7974,8.0121" })] })) })));
29
29
  };
30
30
  exports.default = PappType;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var PaymentRegularly = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" }, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M21.0349,14.6301 C21.7669,14.6301 22.3629,15.2261 22.3629,15.9581 L22.3629,15.9581 L22.3629,18.4601 C22.3629,18.8741 22.0269,19.2101 21.6129,19.2101 C21.1989,19.2101 20.8629,18.8741 20.8629,18.4601 L20.8629,18.4601 L20.8629,17.2531 C19.0229,20.3521 15.6939,22.2831 12.0009,22.2831 C7.7639,22.2831 4.0059,19.7431 2.4259,15.8131 C2.2719,15.4291 2.4579,14.9921 2.8429,14.8371 C3.2269,14.6871 3.6639,14.8691 3.8179,15.2541 C5.1679,18.6121 8.3799,20.7831 12.0009,20.7831 C15.2909,20.7831 18.2279,18.9791 19.7529,16.1301 L19.7529,16.1301 L18.5329,16.1301 C18.1179,16.1301 17.7829,15.7941 17.7829,15.3801 C17.7829,14.9661 18.1179,14.6301 18.5329,14.6301 L18.5329,14.6301 Z M15.1526,7.6641 C16.47836,7.6641 17.5626608,8.6953704 17.6472836,9.99969245 L17.6526,10.1641 L17.6526,13.8361 C17.6526,15.16186 16.6213296,16.2461608 15.3170076,16.3307836 L15.1526,16.3361 L8.8476,16.3361 C7.52184,16.3361 6.4375392,15.3048296 6.35291635,14.0005076 L6.3476,13.8361 L6.3476,10.1641 C6.3476,8.83834 7.3788704,7.7540392 8.68319245,7.66941635 L8.8476,7.6641 L15.1526,7.6641 Z M16.3526,11.6411 L7.6476,11.6411 L7.6476,13.8361 C7.6476,14.456725 8.12045156,14.9683656 8.7250292,15.0298964 L8.8476,15.0361 L15.1526,15.0361 C15.773225,15.0361 16.2848656,14.5632484 16.3463964,13.9586708 L16.3526,13.8361 L16.3526,11.6411 Z M9.5869,12.3871 C10.0709,12.3871 10.4629,12.7791 10.4629,13.2631 C10.4629,13.7471 10.0709,14.1401 9.5869,14.1401 C9.1029,14.1401 8.7109,13.7471 8.7109,13.2631 C8.7109,12.7791 9.1029,12.3871 9.5869,12.3871 Z M15.1526,8.9641 L8.8476,8.9641 C8.32144615,8.9641 7.8924284,9.3108929 7.7335827,9.78425112 L7.6996,9.9051 L16.3006,9.9051 C16.1786,9.3711 15.7226,8.9641 15.1526,8.9641 Z M11.9985,1.7163 C16.2355,1.7163 19.9945,4.2563 21.5735,8.1873 C21.7275,8.5713 21.5415,9.0083 21.1575,9.1633 C21.0655,9.1993 20.9705,9.2173 20.8775,9.2173 C20.5805,9.2173 20.2995,9.0393 20.1815,8.7463 C18.8315,5.3873 15.6195,3.2163 11.9985,3.2163 C8.80819697,3.2163 5.94982415,4.91356354 4.3889967,7.61419721 L4.2465,7.8703 L5.4675,7.8703 C5.8815,7.8703 6.2175,8.2063 6.2175,8.6203 C6.2175,8.9998 5.93516667,9.31375833 5.56922569,9.36344931 L5.4675,9.3703 L2.9655,9.3703 C2.2783125,9.3703 1.71241406,8.84647188 1.64436108,8.17784395 L1.6375,8.0423 L1.6375,5.5393 C1.6375,5.1253 1.9725,4.7893 2.3875,4.7893 C2.767,4.7893 3.08095833,5.07163333 3.13064931,5.43757431 L3.1375,5.5393 L3.1375,6.7463 C4.9775,3.6473 8.3065,1.7163 11.9985,1.7163 Z" }) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M21.0349,14.6301 C21.7669,14.6301 22.3629,15.2261 22.3629,15.9581 L22.3629,15.9581 L22.3629,18.4601 C22.3629,18.8741 22.0269,19.2101 21.6129,19.2101 C21.1989,19.2101 20.8629,18.8741 20.8629,18.4601 L20.8629,18.4601 L20.8629,17.2531 C19.0229,20.3521 15.6939,22.2831 12.0009,22.2831 C7.7639,22.2831 4.0059,19.7431 2.4259,15.8131 C2.2719,15.4291 2.4579,14.9921 2.8429,14.8371 C3.2269,14.6871 3.6639,14.8691 3.8179,15.2541 C5.1679,18.6121 8.3799,20.7831 12.0009,20.7831 C15.2909,20.7831 18.2279,18.9791 19.7529,16.1301 L19.7529,16.1301 L18.5329,16.1301 C18.1179,16.1301 17.7829,15.7941 17.7829,15.3801 C17.7829,14.9661 18.1179,14.6301 18.5329,14.6301 L18.5329,14.6301 Z M15.1526,7.6641 C16.47836,7.6641 17.5626608,8.6953704 17.6472836,9.99969245 L17.6526,10.1641 L17.6526,13.8361 C17.6526,15.16186 16.6213296,16.2461608 15.3170076,16.3307836 L15.1526,16.3361 L8.8476,16.3361 C7.52184,16.3361 6.4375392,15.3048296 6.35291635,14.0005076 L6.3476,13.8361 L6.3476,10.1641 C6.3476,8.83834 7.3788704,7.7540392 8.68319245,7.66941635 L8.8476,7.6641 L15.1526,7.6641 Z M16.3526,11.6411 L7.6476,11.6411 L7.6476,13.8361 C7.6476,14.456725 8.12045156,14.9683656 8.7250292,15.0298964 L8.8476,15.0361 L15.1526,15.0361 C15.773225,15.0361 16.2848656,14.5632484 16.3463964,13.9586708 L16.3526,13.8361 L16.3526,11.6411 Z M9.5869,12.3871 C10.0709,12.3871 10.4629,12.7791 10.4629,13.2631 C10.4629,13.7471 10.0709,14.1401 9.5869,14.1401 C9.1029,14.1401 8.7109,13.7471 8.7109,13.2631 C8.7109,12.7791 9.1029,12.3871 9.5869,12.3871 Z M15.1526,8.9641 L8.8476,8.9641 C8.32144615,8.9641 7.8924284,9.3108929 7.7335827,9.78425112 L7.6996,9.9051 L16.3006,9.9051 C16.1786,9.3711 15.7226,8.9641 15.1526,8.9641 Z M11.9985,1.7163 C16.2355,1.7163 19.9945,4.2563 21.5735,8.1873 C21.7275,8.5713 21.5415,9.0083 21.1575,9.1633 C21.0655,9.1993 20.9705,9.2173 20.8775,9.2173 C20.5805,9.2173 20.2995,9.0393 20.1815,8.7463 C18.8315,5.3873 15.6195,3.2163 11.9985,3.2163 C8.80819697,3.2163 5.94982415,4.91356354 4.3889967,7.61419721 L4.2465,7.8703 L5.4675,7.8703 C5.8815,7.8703 6.2175,8.2063 6.2175,8.6203 C6.2175,8.9998 5.93516667,9.31375833 5.56922569,9.36344931 L5.4675,9.3703 L2.9655,9.3703 C2.2783125,9.3703 1.71241406,8.84647188 1.64436108,8.17784395 L1.6375,8.0423 L1.6375,5.5393 C1.6375,5.1253 1.9725,4.7893 2.3875,4.7893 C2.767,4.7893 3.08095833,5.07163333 3.13064931,5.43757431 L3.1375,5.5393 L3.1375,6.7463 C4.9775,3.6473 8.3065,1.7163 11.9985,1.7163 Z" }) })));
29
29
  };
30
30
  exports.default = PaymentRegularly;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var PostVote = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" }, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M20.9009,14.3097 L2.8079,14.3097 C2.3619,14.3097 1.9999,14.6717 1.9999,15.1177 L1.9999,20.0557 C1.9999,21.4367 3.1199,22.5557 4.4999,22.5557 L19.2089,22.5557 C20.5899,22.5557 21.7089,21.4367 21.7089,20.0557 L21.7089,15.1177 C21.7089,14.6717 21.3479,14.3097 20.9009,14.3097 L20.9009,14.3097 Z M20.2089,15.8097 L20.2089,20.0557 C20.2089,20.6067 19.7609,21.0557 19.2089,21.0557 L4.4999,21.0557 C3.9489,21.0557 3.4999,20.6067 3.4999,20.0557 L3.4999,15.8097 L20.2089,15.8097 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M16.8862,10.5243 L17.8352,10.5243 C18.4132,10.5243 18.9402,10.8563 19.1892,11.3783 L20.9232,15.0113 M2.8081,15.0116 L4.8051,11.3116 C5.0671,10.8266 5.5741,10.5246 6.1251,10.5246 L6.9291,10.5246" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M16.7806,12.768 L6.9286,12.768 L6.9286,4 C6.9286,3.171 7.6006,2.5 8.4286,2.5 L15.2806,2.5 C16.1086,2.5 16.7806,3.171 16.7806,4 L16.7806,12.768 Z M9.4939,7.325 L11.2569,9.35 L14.0359,6.278" })] })) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M20.9009,14.3097 L2.8079,14.3097 C2.3619,14.3097 1.9999,14.6717 1.9999,15.1177 L1.9999,20.0557 C1.9999,21.4367 3.1199,22.5557 4.4999,22.5557 L19.2089,22.5557 C20.5899,22.5557 21.7089,21.4367 21.7089,20.0557 L21.7089,15.1177 C21.7089,14.6717 21.3479,14.3097 20.9009,14.3097 L20.9009,14.3097 Z M20.2089,15.8097 L20.2089,20.0557 C20.2089,20.6067 19.7609,21.0557 19.2089,21.0557 L4.4999,21.0557 C3.9489,21.0557 3.4999,20.6067 3.4999,20.0557 L3.4999,15.8097 L20.2089,15.8097 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M16.8862,10.5243 L17.8352,10.5243 C18.4132,10.5243 18.9402,10.8563 19.1892,11.3783 L20.9232,15.0113 M2.8081,15.0116 L4.8051,11.3116 C5.0671,10.8266 5.5741,10.5246 6.1251,10.5246 L6.9291,10.5246" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M16.7806,12.768 L6.9286,12.768 L6.9286,4 C6.9286,3.171 7.6006,2.5 8.4286,2.5 L15.2806,2.5 C16.1086,2.5 16.7806,3.171 16.7806,4 L16.7806,12.768 Z M9.4939,7.325 L11.2569,9.35 L14.0359,6.278" })] })) })));
29
29
  };
30
30
  exports.default = PostVote;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var Target = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" }, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M13.7087,12.7353 C13.7087,11.3153 12.5577,10.1653 11.1387,10.1653 C9.7187,10.1653 8.5677,11.3153 8.5677,12.7353 C8.5677,14.1553 9.7187,15.3053 11.1387,15.3053 C12.5577,15.3053 13.7087,14.1553 13.7087,12.7353" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M12.4655,4.4594 C12.0315,4.3904 11.5915,4.3444 11.1385,4.3444 C6.5045,4.3444 2.7475,8.1014 2.7475,12.7354 C2.7475,17.3694 6.5045,21.1264 11.1385,21.1264 C15.7725,21.1264 19.5295,17.3694 19.5295,12.7354 C19.5295,12.2824 19.4835,11.8414 19.4145,11.4084 M21.98,4.4241 L19.529,4.3441 L15.853,8.0201 L19.48,8.1381 L22.324,5.2941 C22.639,4.9781 22.426,4.4381 21.98,4.4241 Z M19.4495,1.8937 L19.5295,4.3447 L15.8535,8.0207 L15.7355,4.3937 L18.5795,1.5497 C18.8955,1.2347 19.4355,1.4477 19.4495,1.8937 Z M11.1384,12.7353 L19.5294,4.3443 M11.9796,7.4884 C11.7036,7.4444 11.4266,7.4034 11.1386,7.4034 C8.1936,7.4034 5.8066,9.7904 5.8066,12.7354 C5.8066,15.6794 8.1936,18.0674 11.1386,18.0674 C14.0826,18.0674 16.4696,15.6794 16.4696,12.7354 C16.4696,12.4474 16.4296,12.1694 16.3856,11.8944" })] })) })) })));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M13.7087,12.7353 C13.7087,11.3153 12.5577,10.1653 11.1387,10.1653 C9.7187,10.1653 8.5677,11.3153 8.5677,12.7353 C8.5677,14.1553 9.7187,15.3053 11.1387,15.3053 C12.5577,15.3053 13.7087,14.1553 13.7087,12.7353" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M12.4655,4.4594 C12.0315,4.3904 11.5915,4.3444 11.1385,4.3444 C6.5045,4.3444 2.7475,8.1014 2.7475,12.7354 C2.7475,17.3694 6.5045,21.1264 11.1385,21.1264 C15.7725,21.1264 19.5295,17.3694 19.5295,12.7354 C19.5295,12.2824 19.4835,11.8414 19.4145,11.4084 M21.98,4.4241 L19.529,4.3441 L15.853,8.0201 L19.48,8.1381 L22.324,5.2941 C22.639,4.9781 22.426,4.4381 21.98,4.4241 Z M19.4495,1.8937 L19.5295,4.3447 L15.8535,8.0207 L15.7355,4.3937 L18.5795,1.5497 C18.8955,1.2347 19.4355,1.4477 19.4495,1.8937 Z M11.1384,12.7353 L19.5294,4.3443 M11.9796,7.4884 C11.7036,7.4444 11.4266,7.4034 11.1386,7.4034 C8.1936,7.4034 5.8066,9.7904 5.8066,12.7354 C5.8066,15.6794 8.1936,18.0674 11.1386,18.0674 C14.0826,18.0674 16.4696,15.6794 16.4696,12.7354 C16.4696,12.4474 16.4296,12.1694 16.3856,11.8944" })] })) })));
29
29
  };
30
30
  exports.default = Target;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TypefaceDisplay20: ({ color, ...rest }: IconType) => JSX.Element;
4
+ export default TypefaceDisplay20;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TypefaceDisplay20 = function (_a) {
27
+ var color = _a.color, rest = __rest(_a, ["color"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "56", height: "20", viewBox: "0 0 56 20" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M4.9895,13.6785 C7.1255,13.6785 8.2405,12.5715 8.2405,10.0565 C8.2405,7.5635 7.1255,6.4645 5.0045,6.4645 L3.4565,6.4645 L3.4565,13.6785 L4.9895,13.6785 Z M1.1355,15.6755 L1.1355,4.4675 L5.1285,4.4675 C8.5035,4.4675 10.5695,6.5655 10.5615231,10.0565 C10.5695,13.5625 8.5035,15.6755 5.0825,15.6755 L1.1355,15.6755 Z M12.202,15.676 L14.493,15.676 L14.493,7.27 L12.202,7.27 L12.202,15.676 Z M13.348,3.833 C14.029,3.841 14.594,4.36 14.586,5.01 C14.594,5.644 14.029,6.171 13.348,6.171 C12.659,6.171 12.094,5.644 12.094,5.01 C12.094,4.36 12.659,3.841 13.348,3.833 L13.348,3.833 Z M19.6947,8.7869 C18.9517,8.7949 18.3867,9.1429 18.3947,9.6539 C18.3867,10.0329 18.6807,10.3269 19.4777,10.4899 L20.9797,10.7989 C22.6127,11.1399 23.4017,11.8669 23.4097,13.0749 C23.4017,14.7309 21.9157,15.8379 19.6797,15.8459 C17.4117,15.8379 16.0797,14.8239 15.8867,13.1829 L18.1927,13.1829 C18.3017,13.8409 18.8357,14.1819 19.6797,14.1889 C20.5147,14.1819 21.0727,13.8489 21.0727,13.3069 C21.0727,12.8739 20.7167,12.6029 19.9267,12.4399 L18.5337,12.1619 C16.9317,11.8439 16.1107,11.0239 16.1187,9.7779 C16.1107,8.1679 17.4967,7.1619 19.6637,7.1619 C21.7847,7.1619 23.1007,8.1679 23.2237,9.7619 L21.0727,9.7619 C20.9717,9.1739 20.4607,8.7949 19.6947,8.7869 M28.8433,13.9881 C30.0123,13.9801 30.6463,12.9511 30.6393,11.4651 C30.6463,10.0021 30.0273,8.9881 28.8433,8.9881 C27.6973,8.9881 27.0553,9.9551 27.0633,11.4651 C27.0553,12.9821 27.7053,13.9801 28.8433,13.9881 L28.8433,13.9881 Z M24.8183,7.2701 L27.0783,7.2701 L27.0783,8.6781 L27.1713,8.6781 C27.4893,7.9971 28.1543,7.1611 29.5713,7.1611 C31.4283,7.1611 32.9843,8.6011 32.976332,11.4801 C32.9843,14.2901 31.4903,15.8151 29.5713,15.8151 C28.2013,15.8151 27.4963,15.0251 27.1713,14.3291 L27.1093,14.3291 L27.1093,18.8331 L24.8183,18.8331 L24.8183,7.2701 Z M34.463,15.675 L36.754,15.675 L36.754,4.468 L34.463,4.468 L34.463,15.675 Z M41.5833,14.2513 C42.6283,14.2433 43.3553,13.5623 43.3483,12.6723 L43.3483,12.0613 C42.9993,12.0763 42.0163,12.1303 41.6293,12.1613 C40.8323,12.2313 40.3293,12.6103 40.3293,13.2603 C40.3293,13.9033 40.8483,14.2433 41.5833,14.2513 M41.2583,10.7373 C41.8623,10.6983 42.9923,10.6443 43.3483,10.6293 L43.3483,9.9483 C43.3403,9.2433 42.8603,8.8413 42.0013,8.8333 C41.2193,8.8413 40.7323,9.1893 40.6083,9.7623 L38.4253,9.7623 C38.5643,8.3073 39.8343,7.1613 42.0633,7.1613 C43.8973,7.1613 45.6313,7.9823 45.6233276,10.0093 L45.6233276,15.6753 L43.4563,15.6753 L43.4563,14.5143 L43.3943,14.5143 C42.9843,15.2883 42.1793,15.8383 40.9333,15.8303861 C39.3233,15.8383 38.1393,14.9863 38.1313,13.3223 C38.1393,11.4493 39.6403,10.8383 41.2583,10.7373 M47.2489,18.7869 L47.2489,17.0069 C47.5429,17.0299 47.8909,17.0379 48.1779,17.0379 C48.6339,17.0379 48.9979,16.9909 49.2769,16.2639 L49.4159,15.9079 L46.3979,7.2699 L48.7969,7.2699 L50.5619,13.4619 L50.6549,13.4619 L52.4349,7.2699 L54.8649,7.2699 L51.5829,16.6039 C51.1029,17.9589 50.1819,18.8259 48.4099,18.8329 C47.9609,18.8259 47.5429,18.8179 47.2489,18.7869" }) })));
29
+ };
30
+ exports.default = TypefaceDisplay20;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TypefaceHand20: ({ color, ...rest }: IconType) => JSX.Element;
4
+ export default TypefaceHand20;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TypefaceHand20 = function (_a) {
27
+ var color = _a.color, rest = __rest(_a, ["color"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "36", height: "20", viewBox: "0 0 36 20" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M12.1693,3.857 C12.4293,4.395 12.3733,5.267 11.5943,6.659 C11.0383,7.661 10.3143,8.904 9.5163,10.352 C9.9433,10.538 10.1663,10.854 10.2403,11.169 C10.2773,11.318 10.2213,11.41 10.0363,11.373 C9.7393,11.318 9.3863,11.299 8.9963,11.318 C8.3653,12.523 7.7163,13.859 7.1043,15.251 C7.0293,15.437 6.9003,15.456 6.7883,15.289 C6.5283,14.917 6.3613,14.379 6.7333,13.247 C6.8623,12.875 7.1413,12.227 7.5123,11.466 C6.1573,11.633 4.7283,11.874 3.8563,11.874 C3.2813,13.025 2.7053,14.249 2.1673,15.493 C2.0933,15.678 1.9443,15.734 1.8333,15.567 C1.5553,15.177 1.4253,14.657 1.7403,13.525 C1.8523,13.135 2.1673,12.467 2.5383,11.633 C2.1303,11.448 1.9823,11.188 1.9073,11.04 C1.7963,10.816 1.8333,10.742 2.1493,10.76 C2.4273,10.78 2.6873,10.816 2.9283,10.816 C4.1163,8.348 5.8413,5.137 6.6033,4.061 C6.7703,3.838 6.9373,3.876 7.0483,4.08 C7.3263,4.599 7.2713,5.509 6.5843,6.827 C6.0463,7.866 5.2853,9.182 4.4683,10.724 C5.7493,10.556 6.9003,10.242 8.1243,10.166 C9.3303,7.773 10.9643,4.822 11.7063,3.838 C11.8913,3.598 12.0583,3.616 12.1693,3.857 Z M34.3033,3.8575 C34.5633,4.4695 34.5073,5.2675 33.7283,6.6595 C32.8383,8.2545 31.0563,11.3175 30.1283,13.2855 C29.6273,14.3605 29.6093,15.1205 30.2403,15.0845 C31.0003,15.0465 32.0023,13.8045 32.6523,12.5235 C32.7453,12.3575 32.8753,12.3575 32.9493,12.5055 C33.0233,12.6715 33.0423,13.1555 32.8003,13.6555 C32.3003,14.6765 31.1483,15.6605 30.1283,15.6045 C29.1263,15.5485 28.6253,14.9925 28.6253,14.1195 C28.0313,14.8625 27.1953,15.5485 26.3233,15.5485 C25.5526087,15.5485 25.0595752,15.0780188 24.8856688,14.3588504 C24.2963499,15.0767825 23.4249671,15.6224 22.6078,15.6224 C21.0308,15.6224 20.6588,14.4724 21.1978,12.8574 C21.8098,11.0394 23.4438,9.0724 23.1098,8.9244 C22.9238,8.8484 21.8468,9.3684 20.6588,10.6674 C19.5648,11.8554 18.7488,13.6374 17.9498,15.3804 C17.8758,15.5484 17.7648,15.6224 17.5978,15.4564 C17.4621115,15.3207115 17.3612809,15.153092 17.3022964,14.9498534 C16.8003433,15.3730023 16.2107056,15.6523113 15.663,15.6223 C14.661,15.5663 14.142,14.9733 14.142,14.1013 C13.548,14.8623 12.713,15.5483 11.822,15.5483 C10.096,15.5483 9.744,13.1913 11.284,10.9463 C12.787,8.7563 14.253,7.9203 15.181,7.9203 C15.979,7.9203 16.351,8.5343 16.313,9.2583 C16.555,8.8123 16.777,8.4223 16.981,8.1243 C17.149,7.8843 17.297,7.8463 17.427,8.0143 C17.705,8.3483 17.853,9.1463 17.408,10.0743 C17,10.9093 16.071,12.3013 15.627,13.2853 C15.163,14.3233 15.143,15.1213 15.775,15.0843 C16.2377756,15.0618293 16.7957104,14.5875369 17.3079089,13.9317898 C17.3339643,13.8088561 17.3685478,13.6800016 17.4118,13.5444 C17.7828,12.3754 19.2128,9.7964 20.3808,8.0704 C20.5108,7.8664 20.6588,7.8844 20.7708,8.0704 C21.0488,8.5344 21.0308,9.1644 20.8268,9.8324 C21.6618,8.9424 22.9238,7.9204 23.5358,8.0144 C24.1478,8.1064 24.7238,9.0164 24.2598,9.9814 C23.8698,10.7974 22.9598,12.1714 22.5338,13.1354 C22.0518,14.2124 22.1618,15.0844 22.8298,15.0464 C23.4795159,15.0157048 24.2368284,14.1206013 24.8823011,13.0528725 C25.004765,12.3970123 25.3012995,11.6741558 25.7863,10.9645 C27.2513,8.8125 28.7373,7.9765 29.6643,7.9765 C30.4243,7.9765 30.7963,8.5525 30.7783,9.2385 C31.0060273,8.80395455 31.2548289,8.33784917 31.5112048,7.86586946 L31.8216274,7.29831799 C32.6024529,5.8806095 33.4028455,4.5025 33.8583,3.8575 C34.0433,3.5975 34.2113,3.6155 34.3033,3.8575 Z M12.528,11.6873 C11.544,13.2853 11.302,14.9173 12.026,14.9363 C12.787,14.9543 13.752,13.7673 14.699,12.1333 C15.867,10.0923 16.035,8.9423 15.497,8.8863 C14.903,8.8303 13.548,10.0363 12.528,11.6873 Z M29.9613,8.9245 C29.3863,8.9045 28.0313,10.0745 27.0113,11.7075 C26.0083,13.3035 25.8043,14.9165 26.5273,14.9365 C27.2713,14.9545 28.2733,13.8595 29.1453,12.1715 C30.2203,10.1115 30.5003,8.9425 29.9613,8.9245 Z" }) })));
29
+ };
30
+ exports.default = TypefaceHand20;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TypefaceMonospace20: ({ color, ...rest }: IconType) => JSX.Element;
4
+ export default TypefaceMonospace20;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TypefaceMonospace20 = function (_a) {
27
+ var color = _a.color, rest = __rest(_a, ["color"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "84", height: "20", viewBox: "0 0 84 20" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M3.2177,4.1667 L4.9897,9.6107 L6.9047,4.1667 L8.6247,4.1667 L8.6247,15.0557 L7.2787,15.0557 L7.2787,10.7107 L7.3907,6.1637 L5.3787,12.0267 L4.5867,12.0267 L2.7387,6.3207 L2.8517,10.7107 L2.8517,15.0557 L1.5047,15.0557 L1.5047,4.1667 L3.2177,4.1667 Z M11.8848,11.0994 C11.8848,11.4984 11.9318,11.8784 12.0268,12.2394 C12.1218,12.6014 12.2658,12.9194 12.4578,13.1934 C12.6498,13.4674 12.8898,13.6844 13.1788,13.8444 C13.4678,14.0034 13.8048,14.0834 14.1878,14.0834 C14.5668,14.0834 14.9008,14.0034 15.1878,13.8444 C15.4748,13.6844 15.7138,13.4674 15.9058,13.1934 C16.0978,12.9194 16.2398,12.6014 16.3348,12.2394 C16.4298,11.8784 16.4768,11.4984 16.4768,11.0994 L16.4768,10.9344 C16.4768,10.5414 16.4298,10.1634 16.3318,9.8014 C16.2348,9.4404 16.0898,9.1224 15.8988,8.8484 C15.7068,8.5744 15.4668,8.3564 15.1808,8.1944 C14.8938,8.0324 14.5568,7.9504 14.1728,7.9504 C13.7898,7.9504 13.4558,8.0324 13.1708,8.1944 C12.8868,8.3564 12.6498,8.5744 12.4578,8.8484 C12.2658,9.1224 12.1218,9.4404 12.0268,9.8014 C11.9318,10.1634 11.8848,10.5414 11.8848,10.9344 L11.8848,11.0994 Z M10.5008,10.9344 C10.5008,10.3514 10.5858,9.8094 10.7558,9.3084 C10.9248,8.8074 11.1698,8.3724 11.4858,8.0034 C11.8028,7.6344 12.1868,7.3434 12.6398,7.1324 C13.0938,6.9204 13.6048,6.8144 14.1728,6.8144 C14.7468,6.8144 15.2628,6.9204 15.7188,7.1324 C16.1748,7.3434 16.5618,7.6344 16.8778,8.0034 C17.1948,8.3724 17.4368,8.8074 17.6058,9.3084 C17.7758,9.8094 17.8598,10.3514 17.8598,10.9344 L17.8598,11.0994 C17.8598,11.6824 17.7758,12.2234 17.6058,12.7224 C17.4368,13.2204 17.1948,13.6544 16.8778,14.0234 C16.5618,14.3924 16.1748,14.6814 15.7218,14.8914 C15.2678,15.1004 14.7568,15.2054 14.1878,15.2054 C13.6148,15.2054 13.1018,15.1004 12.6448,14.8914 C12.1888,14.6814 11.8028,14.3924 11.4858,14.0234 C11.1698,13.6544 10.9248,13.2204 10.7558,12.7224 C10.5858,12.2234 10.5008,11.6824 10.5008,11.0994 L10.5008,10.9344 Z M21.3228,6.9637 L21.4198,8.1607 C21.7138,7.7417 22.0758,7.4137 22.5048,7.1767 C22.9328,6.9397 23.4118,6.8187 23.9408,6.8137 C24.3638,6.8137 24.7488,6.8737 25.0958,6.9937 C25.4418,7.1137 25.7378,7.3007 25.9818,7.5547 C26.2258,7.8087 26.4148,8.1317 26.5468,8.5227 C26.6788,8.9147 26.7448,9.3797 26.7448,9.9177 L26.7448,15.0557 L25.3608,15.0557 L25.3608,9.9477 C25.3608,9.5887 25.3218,9.2847 25.2418,9.0357 C25.1618,8.7857 25.0438,8.5837 24.8868,8.4297 C24.7298,8.2747 24.5378,8.1627 24.3108,8.0927 C24.0838,8.0227 23.8228,7.9887 23.5288,7.9887 C23.0658,7.9887 22.6578,8.1047 22.3058,8.3357 C21.9548,8.5677 21.6748,8.8737 21.4648,9.2517 L21.4648,15.0557 L20.0818,15.0557 L20.0818,6.9637 L21.3228,6.9637 Z M30.2673,11.0994 C30.2673,11.4984 30.3143,11.8784 30.4093,12.2394 C30.5043,12.6014 30.6473,12.9194 30.8393,13.1934 C31.0313,13.4674 31.2723,13.6844 31.5613,13.8444 C31.8503,14.0034 32.1873,14.0834 32.5703,14.0834 C32.9493,14.0834 33.2823,14.0034 33.5693,13.8444 C33.8563,13.6844 34.0953,13.4674 34.2873,13.1934 C34.4793,12.9194 34.6223,12.6014 34.7173,12.2394 C34.8123,11.8784 34.8593,11.4984 34.8593,11.0994 L34.8593,10.9344 C34.8593,10.5414 34.8103,10.1634 34.7133,9.8014 C34.6163,9.4404 34.4713,9.1224 34.2793,8.8484 C34.0873,8.5744 33.8483,8.3564 33.5613,8.1944 C33.2753,8.0324 32.9393,7.9504 32.5553,7.9504 C32.1723,7.9504 31.8383,8.0324 31.5533,8.1944 C31.2693,8.3564 31.0313,8.5744 30.8393,8.8484 C30.6473,9.1224 30.5043,9.4404 30.4093,9.8014 C30.3143,10.1634 30.2673,10.5414 30.2673,10.9344 L30.2673,11.0994 Z M28.8833,10.9344 C28.8833,10.3514 28.9683,9.8094 29.1383,9.3084 C29.3073,8.8074 29.5503,8.3724 29.8673,8.0034 C30.1833,7.6344 30.5693,7.3434 31.0223,7.1324 C31.4763,6.9204 31.9873,6.8144 32.5553,6.8144 C33.1293,6.8144 33.6443,6.9204 34.1003,7.1324 C34.5563,7.3434 34.9423,7.6344 35.2593,8.0034 C35.5763,8.3724 35.8193,8.8074 35.9883,9.3084 C36.1583,9.8094 36.2423,10.3514 36.2423,10.9344 L36.2423,11.0994 C36.2423,11.6824 36.1583,12.2234 35.9883,12.7224 C35.8193,13.2204 35.5763,13.6544 35.2593,14.0234 C34.9423,14.3924 34.5573,14.6814 34.1043,14.8914 C33.6503,15.1004 33.1393,15.2054 32.5703,15.2054 C31.9973,15.2054 31.4823,15.1004 31.0263,14.8914 C30.5703,14.6814 30.1833,14.3924 29.8673,14.0234 C29.5503,13.6544 29.3073,13.2204 29.1383,12.7224 C28.9683,12.2234 28.8833,11.6824 28.8833,11.0994 L28.8833,10.9344 Z M43.841,12.9092 C43.841,12.7442 43.809,12.5962 43.744,12.4642 C43.679,12.3322 43.569,12.2112 43.415,12.1012 C43.26,11.9922 43.056,11.8912 42.801,11.7982 C42.547,11.7062 42.231,11.6232 41.852,11.5482 C41.388,11.4532 40.965,11.3382 40.584,11.2042 C40.203,11.0692 39.876,10.9082 39.604,10.7212 C39.333,10.5352 39.122,10.3152 38.972,10.0632 C38.823,9.8122 38.748,9.5192 38.748,9.1852 C38.748,8.8562 38.825,8.5482 38.98,8.2612 C39.134,7.9742 39.351,7.7242 39.631,7.5092 C39.91,7.2952 40.243,7.1262 40.629,7.0012 C41.015,6.8762 41.44,6.8142 41.904,6.8142 C42.403,6.8142 42.851,6.8792 43.25,7.0082 C43.649,7.1382 43.988,7.3172 44.267,7.5472 C44.546,7.7762 44.762,8.0442 44.914,8.3512 C45.066,8.6572 45.142,8.9882 45.142,9.3422 L43.759,9.3422 C43.759,9.1672 43.714,8.9962 43.624,8.8292 C43.534,8.6622 43.41,8.5142 43.25,8.3842 C43.091,8.2552 42.897,8.1502 42.671,8.0702 C42.444,7.9912 42.188,7.9512 41.904,7.9512 C41.61,7.9512 41.352,7.9832 41.13,8.0482 C40.908,8.1132 40.724,8.2002 40.577,8.3102 C40.429,8.4192 40.319,8.5462 40.244,8.6912 C40.169,8.8362 40.132,8.9852 40.132,9.1402 C40.132,9.2992 40.162,9.4412 40.221,9.5662 C40.281,9.6912 40.385,9.8032 40.532,9.9032 C40.679,10.0022 40.876,10.0922 41.123,10.1722 C41.369,10.2522 41.682,10.3292 42.061,10.4042 C42.56,10.5082 43.006,10.6292 43.4,10.7662 C43.794,10.9032 44.125,11.0682 44.394,11.2602 C44.664,11.4522 44.869,11.6752 45.011,11.9292 C45.153,12.1842 45.225,12.4782 45.225,12.8122 C45.225,13.1712 45.144,13.4972 44.981,13.7912 C44.819,14.0862 44.594,14.3372 44.305,14.5472 C44.015,14.7562 43.669,14.9182 43.265,15.0332 C42.861,15.1482 42.42,15.2052 41.941,15.2052 C41.393,15.2052 40.904,15.1312 40.476,14.9842 C40.047,14.8372 39.684,14.6432 39.387,14.4012 C39.091,14.1592 38.864,13.8792 38.707,13.5602 C38.55,13.2412 38.471,12.9092 38.471,12.5652 L39.855,12.5652 C39.875,12.8492 39.951,13.0882 40.083,13.2832 C40.215,13.4772 40.38,13.6342 40.577,13.7542 C40.774,13.8742 40.992,13.9582 41.231,14.0082 C41.47,14.0582 41.707,14.0832 41.941,14.0832 C42.525,14.0832 42.986,13.9762 43.325,13.7622 C43.664,13.5472 43.836,13.2632 43.841,12.9092 M53.0996,10.9423 C53.0996,10.5483 53.0556,10.1733 52.9686,9.8163 C52.8816,9.4603 52.7466,9.1463 52.5646,8.8743 C52.3826,8.6023 52.1526,8.3873 51.8726,8.2273 C51.5936,8.0683 51.2596,7.9883 50.8706,7.9883 C50.4276,7.9883 50.0546,8.0913 49.7526,8.2983 C49.4516,8.5053 49.2106,8.7713 49.0316,9.0953 L49.0316,12.9913 C49.2106,13.3103 49.4496,13.5713 49.7496,13.7733 C50.0486,13.9753 50.4276,14.0763 50.8856,14.0763 C51.2696,14.0763 51.6016,13.9953 51.8806,13.8323 C52.1596,13.6703 52.3896,13.4523 52.5686,13.1783 C52.7476,12.9043 52.8816,12.5873 52.9686,12.2283 C53.0556,11.8693 53.0996,11.4933 53.0996,11.0993 L53.0996,10.9423 Z M54.4836,11.0993 C54.4836,11.6773 54.4136,12.2173 54.2736,12.7183 C54.1346,13.2193 53.9296,13.6543 53.6606,14.0233 C53.3916,14.3923 53.0586,14.6813 52.6626,14.8913 C52.2656,15.1003 51.8136,15.2053 51.3046,15.2053 C50.8116,15.2053 50.3766,15.1253 49.9996,14.9653 C49.6236,14.8063 49.3006,14.5773 49.0316,14.2773 L49.0316,18.1663 L47.6476,18.1663 L47.6476,6.9633 L48.9116,6.9633 L48.9786,7.8463 C49.2476,7.5123 49.5736,7.2563 49.9546,7.0793 C50.3366,6.9023 50.7786,6.8143 51.2826,6.8143 C51.8006,6.8143 52.2596,6.9163 52.6586,7.1203 C53.0576,7.3253 53.3916,7.6093 53.6606,7.9733 C53.9296,8.3373 54.1346,8.7723 54.2736,9.2783 C54.4136,9.7843 54.4836,10.3393 54.4836,10.9423 L54.4836,11.0993 Z M59.7182,14.0011 C59.9872,14.0011 60.2392,13.9661 60.4732,13.8961 C60.7082,13.8271 60.9212,13.7341 61.1132,13.6201 C61.3052,13.5051 61.4702,13.3741 61.6102,13.2271 C61.7502,13.0801 61.8592,12.9271 61.9392,12.7671 L61.9392,11.1291 L60.6532,11.1291 C59.8452,11.1291 59.2172,11.2491 58.7682,11.4881 C58.3192,11.7281 58.0952,12.1041 58.0952,12.6171 C58.0952,12.8171 58.1292,13.0011 58.1962,13.1711 C58.2632,13.3401 58.3642,13.4861 58.4992,13.6081 C58.6342,13.7311 58.8032,13.8271 59.0082,13.8961 C59.2122,13.9661 59.4492,14.0011 59.7182,14.0011 L59.7182,14.0011 Z M62.1642,15.0551 C62.1092,14.9511 62.0652,14.8201 62.0332,14.6631 C62.0002,14.5061 61.9772,14.3431 61.9622,14.1731 C61.8222,14.3131 61.6662,14.4451 61.4942,14.5691 C61.3222,14.6941 61.1332,14.8041 60.9262,14.8981 C60.7192,14.9931 60.4982,15.0681 60.2642,15.1231 C60.0302,15.1781 59.7802,15.2051 59.5162,15.2051 C59.0872,15.2051 58.7002,15.1431 58.3532,15.0181 C58.0072,14.8931 57.7122,14.7251 57.4712,14.5131 C57.2292,14.3011 57.0422,14.0501 56.9102,13.7581 C56.7782,13.4661 56.7122,13.1511 56.7122,12.8121 C56.7122,12.3681 56.8002,11.9791 56.9772,11.6451 C57.1542,11.3111 57.4052,11.0331 57.7292,10.8111 C58.0532,10.5901 58.4432,10.4241 58.8992,10.3141 C59.3552,10.2041 59.8652,10.1491 60.4282,10.1491 L61.9392,10.1491 L61.9392,9.5141 C61.9392,9.2701 61.8942,9.0501 61.8052,8.8561 C61.7152,8.6611 61.5882,8.4951 61.4232,8.3581 C61.2592,8.2211 61.0582,8.1151 60.8212,8.0411 C60.5842,7.9661 60.3192,7.9281 60.0252,7.9281 C59.7502,7.9281 59.5052,7.9631 59.2882,8.0331 C59.0712,8.1031 58.8882,8.1951 58.7382,8.3101 C58.5892,8.4241 58.4732,8.5601 58.3912,8.7171 C58.3082,8.8741 58.2672,9.0381 58.2672,9.2071 L56.8762,9.2071 C56.8812,8.9131 56.9572,8.6241 57.1042,8.3401 C57.2512,8.0551 57.4632,7.8001 57.7402,7.5731 C58.0172,7.3461 58.3532,7.1631 58.7502,7.0231 C59.1462,6.8841 59.5962,6.8141 60.0992,6.8141 C60.5582,6.8141 60.9842,6.8701 61.3782,6.9821 C61.7722,7.0941 62.1122,7.2641 62.3992,7.4911 C62.6862,7.7181 62.9112,8.0011 63.0762,8.3401 C63.2402,8.6791 63.3232,9.0751 63.3232,9.5291 L63.3232,13.2911 C63.3232,13.5601 63.3482,13.8451 63.3972,14.1471 C63.4472,14.4481 63.5172,14.7111 63.6072,14.9361 L63.6072,15.0551 L62.1642,15.0551 Z M69.4852,14.0833 C69.7342,14.0833 69.9772,14.0433 70.2142,13.9633 C70.4512,13.8843 70.6622,13.7733 70.8462,13.6313 C71.0312,13.4883 71.1792,13.3213 71.2912,13.1293 C71.4032,12.9383 71.4622,12.7293 71.4672,12.5053 L72.7762,12.5053 C72.7712,12.8643 72.6772,13.2073 72.4952,13.5333 C72.3132,13.8603 72.0702,14.1473 71.7662,14.3933 C71.4622,14.6403 71.1132,14.8373 70.7192,14.9843 C70.3252,15.1313 69.9142,15.2053 69.4852,15.2053 C68.8722,15.2053 68.3362,15.0953 67.8772,14.8763 C67.4182,14.6563 67.0362,14.3613 66.7292,13.9903 C66.4222,13.6183 66.1922,13.1893 66.0372,12.7033 C65.8832,12.2173 65.8062,11.7053 65.8062,11.1663 L65.8062,10.8523 C65.8062,10.3193 65.8832,9.8083 66.0372,9.3193 C66.1922,8.8313 66.4222,8.4003 66.7292,8.0293 C67.0362,7.6583 67.4182,7.3623 67.8772,7.1433 C68.3362,6.9233 68.8722,6.8143 69.4852,6.8143 C69.9642,6.8143 70.4042,6.8903 70.8052,7.0423 C71.2062,7.1943 71.5532,7.4013 71.8452,7.6633 C72.1362,7.9243 72.3642,8.2353 72.5292,8.5943 C72.6932,8.9533 72.7762,9.3373 72.7762,9.7453 L71.4672,9.7453 C71.4622,9.5013 71.4082,9.2713 71.3062,9.0543 C71.2042,8.8373 71.0652,8.6463 70.8912,8.4823 C70.7162,8.3173 70.5082,8.1873 70.2672,8.0933 C70.0252,7.9983 69.7642,7.9513 69.4852,7.9513 C69.0562,7.9513 68.6962,8.0373 68.4042,8.2093 C68.1132,8.3813 67.8772,8.6053 67.6982,8.8823 C67.5182,9.1583 67.3902,9.4693 67.3122,9.8133 C67.2352,10.1573 67.1972,10.5033 67.1972,10.8523 L67.1972,11.1663 C67.1972,11.5203 67.2352,11.8713 67.3122,12.2173 C67.3902,12.5643 67.5172,12.8753 67.6942,13.1523 C67.8712,13.4293 68.1052,13.6533 68.3972,13.8253 C68.6892,13.9973 69.0512,14.0833 69.4852,14.0833 M78.6241,7.9509 C78.3451,7.9509 78.0811,8.0019 77.8311,8.1039 C77.5821,8.2069 77.3581,8.3559 77.1581,8.5529 C76.9591,8.7499 76.7901,8.9919 76.6531,9.2779 C76.5161,9.5649 76.4201,9.8949 76.3651,10.2689 L80.7181,10.2689 L80.7181,10.1649 C80.7031,9.8949 80.6521,9.6289 80.5651,9.3639 C80.4771,9.0999 80.3491,8.8629 80.1801,8.6539 C80.0101,8.4449 79.7971,8.2749 79.5401,8.1449 C79.2831,8.0159 78.9781,7.9509 78.6241,7.9509 M78.8031,15.2049 C78.2351,15.2049 77.7131,15.1079 77.2371,14.9139 C76.7611,14.7189 76.3531,14.4469 76.0141,14.0979 C75.6751,13.7489 75.4111,13.3359 75.2211,12.8569 C75.0321,12.3779 74.9371,11.8569 74.9371,11.2939 L74.9371,10.9799 C74.9371,10.3269 75.0421,9.7419 75.2511,9.2259 C75.4611,8.7099 75.7391,8.2739 76.0851,7.9169 C76.4321,7.5609 76.8251,7.2879 77.2671,7.0979 C77.7081,6.9089 78.1601,6.8139 78.6241,6.8139 C79.2071,6.8139 79.7171,6.9149 80.1531,7.1169 C80.5901,7.3189 80.9521,7.5979 81.2421,7.9549 C81.5311,8.3109 81.7461,8.7309 81.8881,9.2149 C82.0311,9.6989 82.1021,10.2219 82.1021,10.7849 L82.1021,11.4059 L76.3211,11.4059 C76.3361,11.7749 76.4071,12.1219 76.5341,12.4459 C76.6611,12.7699 76.8351,13.0529 77.0571,13.2939 C77.2791,13.5359 77.5451,13.7269 77.8541,13.8669 C78.1631,14.0059 78.5041,14.0759 78.8781,14.0759 C79.3721,14.0759 79.8111,13.9759 80.1951,13.7769 C80.5781,13.5769 80.8981,13.3129 81.1521,12.9839 L81.9971,13.6419 C81.8621,13.8469 81.6941,14.0419 81.4921,14.2289 C81.2901,14.4159 81.0571,14.5819 80.7931,14.7269 C80.5291,14.8709 80.2291,14.9869 79.8951,15.0739 C79.5611,15.1619 79.1971,15.2049 78.8031,15.2049" }) })));
29
+ };
30
+ exports.default = TypefaceMonospace20;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TypefaceSansSerif20: ({ color, ...rest }: IconType) => JSX.Element;
4
+ export default TypefaceSansSerif20;