pds-dev-kit-web 2.2.14 → 2.2.16

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 (84) hide show
  1. package/dist/src/common/assets/icons/line/TypefaceDisplay20.d.ts +4 -0
  2. package/dist/src/common/assets/icons/line/TypefaceDisplay20.js +30 -0
  3. package/dist/src/common/assets/icons/line/TypefaceHand20.d.ts +4 -0
  4. package/dist/src/common/assets/icons/line/TypefaceHand20.js +30 -0
  5. package/dist/src/common/assets/icons/line/TypefaceMonospace20.d.ts +4 -0
  6. package/dist/src/common/assets/icons/line/TypefaceMonospace20.js +30 -0
  7. package/dist/src/common/assets/icons/line/TypefaceSanserif20.d.ts +4 -0
  8. package/dist/src/common/assets/icons/line/TypefaceSanserif20.js +30 -0
  9. package/dist/src/common/assets/icons/line/TypefaceSerif20.d.ts +4 -0
  10. package/dist/src/common/assets/icons/line/TypefaceSerif20.js +30 -0
  11. package/dist/src/common/assets/icons/line/index.d.ts +5 -5
  12. package/dist/src/common/assets/icons/line/index.js +10 -10
  13. package/dist/src/hybrid/components/Icon/Icon.js +2 -1
  14. package/dist/src/sub/DynamicLayout/mock_samplePage.js +1 -1
  15. package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +1 -1
  16. package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +4 -4
  17. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +3 -0
  18. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +4 -0
  19. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/getGoogleFonts.d.ts +4 -0
  20. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/getGoogleFonts.js +25 -0
  21. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/index.d.ts +2 -0
  22. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/index.js +11 -0
  23. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/useGoogleFonts.d.ts +4 -0
  24. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/useGoogleFonts.js +17 -0
  25. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.d.ts +3 -2
  26. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +5 -2
  27. package/dist/src/sub/GoogleFontkit/GoogleFontApplyExample.d.ts +3 -0
  28. package/dist/src/sub/GoogleFontkit/GoogleFontApplyExample.js +92 -0
  29. package/dist/src/sub/GoogleFontkit/GoogleFontsListExample.d.ts +3 -0
  30. package/dist/src/sub/GoogleFontkit/GoogleFontsListExample.js +57 -0
  31. package/dist/src/sub/GoogleFontkit/api/getGoogleFontCss.d.ts +10 -0
  32. package/dist/src/sub/GoogleFontkit/api/getGoogleFontCss.js +53 -0
  33. package/dist/src/sub/GoogleFontkit/api/getGoogleFontDefaultText.d.ts +2 -0
  34. package/dist/src/sub/GoogleFontkit/api/getGoogleFontDefaultText.js +55 -0
  35. package/dist/src/sub/GoogleFontkit/api/getGoogleWebFonts.d.ts +10 -0
  36. package/dist/src/sub/GoogleFontkit/api/getGoogleWebFonts.js +53 -0
  37. package/dist/src/sub/GoogleFontkit/constants.d.ts +7 -0
  38. package/dist/src/sub/GoogleFontkit/constants.js +44 -0
  39. package/dist/src/sub/GoogleFontkit/headless/GoogleFontItem.d.ts +15 -0
  40. package/dist/src/sub/GoogleFontkit/headless/GoogleFontItem.js +126 -0
  41. package/dist/src/sub/GoogleFontkit/headless/GoogleFontsList.d.ts +17 -0
  42. package/dist/src/sub/GoogleFontkit/headless/GoogleFontsList.js +144 -0
  43. package/dist/src/sub/GoogleFontkit/hooks/useDebounce.d.ts +1 -0
  44. package/dist/src/sub/GoogleFontkit/hooks/useDebounce.js +14 -0
  45. package/dist/src/sub/GoogleFontkit/hooks/useIntersectionObserver.d.ts +6 -0
  46. package/dist/src/sub/GoogleFontkit/hooks/useIntersectionObserver.js +29 -0
  47. package/dist/src/sub/GoogleFontkit/index.d.ts +7 -0
  48. package/dist/src/sub/GoogleFontkit/index.js +32 -0
  49. package/dist/src/sub/GoogleFontkit/types.d.ts +44 -0
  50. package/dist/src/sub/GoogleFontkit/types.js +14 -0
  51. package/dist/src/sub/GoogleFontkit/utils/applyActiveFont.d.ts +2 -0
  52. package/dist/src/sub/GoogleFontkit/utils/applyActiveFont.js +12 -0
  53. package/dist/src/sub/GoogleFontkit/utils/callGoogleFontCSSAndApply.d.ts +2 -0
  54. package/dist/src/sub/GoogleFontkit/utils/callGoogleFontCSSAndApply.js +72 -0
  55. package/dist/src/sub/GoogleFontkit/utils/createStyleSheet.d.ts +1 -0
  56. package/dist/src/sub/GoogleFontkit/utils/createStyleSheet.js +10 -0
  57. package/dist/src/sub/GoogleFontkit/utils/extractFontStyles.d.ts +1 -0
  58. package/dist/src/sub/GoogleFontkit/utils/extractFontStyles.js +22 -0
  59. package/dist/src/sub/GoogleFontkit/utils/fillStyleSheet.d.ts +1 -0
  60. package/dist/src/sub/GoogleFontkit/utils/fillStyleSheet.js +13 -0
  61. package/dist/src/sub/GoogleFontkit/utils/getActiveFontStylesheet.d.ts +1 -0
  62. package/dist/src/sub/GoogleFontkit/utils/getActiveFontStylesheet.js +13 -0
  63. package/dist/src/sub/GoogleFontkit/utils/getFontId.d.ts +1 -0
  64. package/dist/src/sub/GoogleFontkit/utils/getFontId.js +6 -0
  65. package/dist/src/sub/GoogleFontkit/utils/getMatches.d.ts +1 -0
  66. package/dist/src/sub/GoogleFontkit/utils/getMatches.js +14 -0
  67. package/dist/src/sub/GoogleFontkit/utils/isStyleSheetExists.d.ts +1 -0
  68. package/dist/src/sub/GoogleFontkit/utils/isStyleSheetExists.js +12 -0
  69. package/dist/src/sub/GoogleFontkit/utils/parseFontVariants.d.ts +4 -0
  70. package/dist/src/sub/GoogleFontkit/utils/parseFontVariants.js +18 -0
  71. package/dist/src/sub/GoogleFontkit/utils/setStyleSheetType.d.ts +1 -0
  72. package/dist/src/sub/GoogleFontkit/utils/setStyleSheetType.js +15 -0
  73. package/package.json +1 -1
  74. package/release-note.md +4 -4
  75. package/dist/src/common/assets/icons/line/TypefaceDisplay24.d.ts +0 -4
  76. package/dist/src/common/assets/icons/line/TypefaceDisplay24.js +0 -30
  77. package/dist/src/common/assets/icons/line/TypefaceHand24.d.ts +0 -4
  78. package/dist/src/common/assets/icons/line/TypefaceHand24.js +0 -30
  79. package/dist/src/common/assets/icons/line/TypefaceMonospace24.d.ts +0 -4
  80. package/dist/src/common/assets/icons/line/TypefaceMonospace24.js +0 -30
  81. package/dist/src/common/assets/icons/line/TypefaceSanserif24.d.ts +0 -4
  82. package/dist/src/common/assets/icons/line/TypefaceSanserif24.js +0 -30
  83. package/dist/src/common/assets/icons/line/TypefaceSerif24.d.ts +0 -4
  84. package/dist/src/common/assets/icons/line/TypefaceSerif24.js +0 -30
@@ -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 TypefaceSanserif20: ({ color, ...rest }: IconType) => JSX.Element;
4
+ export default TypefaceSanserif20;
@@ -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 TypefaceSanserif20 = function (_a) {
27
+ var color = _a.color, rest = __rest(_a, ["color"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "68", height: "20", viewBox: "0 0 68 20" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M8.427,3.9557 L8.427,7.8287 L8.121,7.8287 C8.022,7.0857 7.845,6.4937 7.589,6.0537 C7.333,5.6127 6.968,5.2637 6.494,5.0047 C6.021,4.7457 5.531,4.6167 5.024,4.6167 C4.452,4.6167 3.978,4.7917 3.604,5.1407 C3.229,5.4907 3.042,5.8887 3.042,6.3347 C3.042,6.6757 3.161,6.9867 3.397,7.2677 C3.739,7.6807 4.551,8.2307 5.834,8.9197 C6.88,9.4807 7.594,9.9117 7.977,10.2117 C8.36,10.5117 8.654,10.8657 8.861,11.2727 C9.067,11.6807 9.17,12.1067 9.17,12.5527 C9.17,13.4007 8.841,14.1317 8.183,14.7457 C7.525,15.3597 6.679,15.6667 5.644,15.6667 C5.319,15.6667 5.013,15.6417 4.727,15.5927 C4.556,15.5647 4.203,15.4647 3.666,15.2907 C3.129,15.1177 2.789,15.0307 2.646,15.0307 C2.508,15.0307 2.399,15.0717 2.32,15.1547 C2.24,15.2367 2.181,15.4077 2.142,15.6667 L1.837,15.6667 L1.837,11.8267 L2.142,11.8267 C2.285,12.6297 2.478,13.2317 2.72,13.6307 C2.962,14.0297 3.333,14.3617 3.831,14.6257 C4.329,14.8907 4.876,15.0227 5.47,15.0227 C6.159,15.0227 6.702,14.8407 7.101,14.4777 C7.501,14.1137 7.7,13.6847 7.7,13.1887 C7.7,12.9137 7.625,12.6357 7.473,12.3547 C7.322,12.0737 7.086,11.8127 6.767,11.5707 C6.552,11.4047 5.966,11.0537 5.008,10.5177 C4.05,9.9807 3.368,9.5527 2.964,9.2327 C2.559,8.9137 2.252,8.5617 2.043,8.1757 C1.834,7.7907 1.729,7.3667 1.729,6.9037 C1.729,6.1007 2.037,5.4077 2.654,4.8267 C3.271,4.2457 4.055,3.9557 5.008,3.9557 C5.603,3.9557 6.233,4.1017 6.899,4.3937 C7.207,4.5307 7.425,4.5997 7.552,4.5997 C7.695,4.5997 7.812,4.5577 7.903,4.4717 C7.993,4.3867 8.066,4.2147 8.121,3.9557 L8.427,3.9557 Z M14.893,13.7837 L14.893,10.9017 C14.062,11.2317 13.525,11.4657 13.283,11.6037 C12.848,11.8457 12.537,12.0987 12.349,12.3627 C12.162,12.6277 12.069,12.9167 12.069,13.2307 C12.069,13.6267 12.187,13.9557 12.424,14.2177 C12.66,14.4787 12.933,14.6097 13.241,14.6097 C13.66,14.6097 14.21,14.3347 14.893,13.7837 M14.893,14.3207 C14.117,14.9207 13.629,15.2677 13.431,15.3607 C13.134,15.4987 12.817,15.5677 12.481,15.5677 C11.958,15.5677 11.528,15.3887 11.19,15.0307 C10.851,14.6727 10.682,14.2017 10.682,13.6187 C10.682,13.2497 10.764,12.9307 10.929,12.6607 C11.155,12.2857 11.548,11.9337 12.107,11.6037 C12.666,11.2727 13.594,10.8707 14.893,10.3977 L14.893,10.1007 C14.893,9.3457 14.775,8.8287 14.535,8.5477 C14.296,8.2667 13.946,8.1267 13.489,8.1267 C13.142,8.1267 12.867,8.2197 12.663,8.4077 C12.454,8.5947 12.349,8.8087 12.349,9.0517 L12.366,9.5307 C12.366,9.7837 12.303,9.9787 12.173,10.1167 C12.044,10.2547 11.873,10.3237 11.664,10.3237 C11.461,10.3237 11.294,10.2517 11.165,10.1087 C11.035,9.9657 10.971,9.7697 10.971,9.5217 C10.971,9.0487 11.213,8.6137 11.697,8.2177 C12.181,7.8207 12.861,7.6227 13.737,7.6227 C14.408,7.6227 14.959,7.7357 15.389,7.9617 C15.713,8.1317 15.953,8.3987 16.107,8.7627 C16.206,8.9987 16.256,9.4837 16.256,10.2157 L16.256,12.7847 C16.256,13.5057 16.269,13.9477 16.297,14.1097 C16.325,14.2727 16.371,14.3807 16.435,14.4357 C16.498,14.4917 16.57,14.5187 16.652,14.5187 C16.74,14.5187 16.817,14.4997 16.883,14.4607 C16.999,14.3897 17.222,14.1887 17.552,13.8577 L17.552,14.3207 C16.936,15.1467 16.347,15.5597 15.785,15.5597 C15.515,15.5597 15.3,15.4657 15.141,15.2787 C14.981,15.0917 14.899,14.7717 14.893,14.3207 M20.319,9.2248 C21.205,8.1568 22.051,7.6228 22.854,7.6228 C23.267,7.6228 23.623,7.7258 23.92,7.9328 C24.217,8.1388 24.454,8.4788 24.63,8.9518 C24.751,9.2828 24.812,9.7888 24.812,10.4718 L24.812,13.7008 C24.812,14.1798 24.85,14.5048 24.927,14.6758 C24.988,14.8128 25.086,14.9208 25.221,14.9978 C25.355,15.0748 25.605,15.1138 25.968,15.1138 L25.968,15.4108 L22.227,15.4108 L22.227,15.1138 L22.384,15.1138 C22.736,15.1138 22.982,15.0598 23.123,14.9518 C23.263,14.8448 23.361,14.6868 23.416,14.4778 C23.438,14.3948 23.449,14.1358 23.449,13.7008 L23.449,10.6038 C23.449,9.9158 23.36,9.4158 23.181,9.1048 C23.002,8.7938 22.7,8.6388 22.276,8.6388 C21.621,8.6388 20.969,8.9958 20.319,9.7118 L20.319,13.7008 C20.319,14.2128 20.349,14.5298 20.41,14.6508 C20.487,14.8108 20.593,14.9278 20.728,15.0018 C20.863,15.0758 21.137,15.1138 21.55,15.1138 L21.55,15.4108 L17.808,15.4108 L17.808,15.1138 L17.974,15.1138 C18.359,15.1138 18.619,15.0158 18.754,14.8198 C18.889,14.6248 18.956,14.2518 18.956,13.7008 L18.956,10.8928 C18.956,9.9848 18.936,9.4308 18.894,9.2328 C18.853,9.0348 18.79,8.8998 18.704,8.8288 C18.619,8.7568 18.505,8.7208 18.362,8.7208 C18.208,8.7208 18.023,8.7628 17.808,8.8448 L17.684,8.5478 L19.964,7.6228 L20.319,7.6228 L20.319,9.2248 Z M26.728,12.239 L30.998,12.239 L30.998,10.992 L26.728,10.992 L26.728,12.239 Z M39.4298,3.9557 L39.4298,7.8287 L39.1238,7.8287 C39.0248,7.0857 38.8478,6.4937 38.5918,6.0537 C38.3358,5.6127 37.9708,5.2637 37.4968,5.0047 C37.0238,4.7457 36.5338,4.6167 36.0268,4.6167 C35.4548,4.6167 34.9808,4.7917 34.6068,5.1407 C34.2318,5.4907 34.0448,5.8887 34.0448,6.3347 C34.0448,6.6757 34.1638,6.9867 34.3998,7.2677 C34.7418,7.6807 35.5538,8.2307 36.8368,8.9197 C37.8828,9.4807 38.5968,9.9117 38.9798,10.2117 C39.3628,10.5117 39.6568,10.8657 39.8638,11.2727 C40.0698,11.6807 40.1728,12.1067 40.1728,12.5527 C40.1728,13.4007 39.8438,14.1317 39.1858,14.7457 C38.5278,15.3597 37.6818,15.6667 36.6468,15.6667 C36.3218,15.6667 36.0158,15.6417 35.7298,15.5927 C35.5588,15.5647 35.2058,15.4647 34.6688,15.2907 C34.1318,15.1177 33.7918,15.0307 33.6488,15.0307 C33.5108,15.0307 33.4018,15.0717 33.3228,15.1547 C33.2428,15.2367 33.1838,15.4077 33.1448,15.6667 L32.8388,15.6667 L32.8388,11.8267 L33.1448,11.8267 C33.2878,12.6297 33.4808,13.2317 33.7228,13.6307 C33.9648,14.0297 34.3358,14.3617 34.8338,14.6257 C35.3318,14.8907 35.8788,15.0227 36.4728,15.0227 C37.1618,15.0227 37.7048,14.8407 38.1038,14.4777 C38.5038,14.1137 38.7028,13.6847 38.7028,13.1887 C38.7028,12.9137 38.6278,12.6357 38.4758,12.3547 C38.3248,12.0737 38.0888,11.8127 37.7698,11.5707 C37.5548,11.4047 36.9688,11.0537 36.0108,10.5177 C35.0528,9.9807 34.3708,9.5527 33.9668,9.2327 C33.5618,8.9137 33.2548,8.5617 33.0458,8.1757 C32.8368,7.7907 32.7318,7.3667 32.7318,6.9037 C32.7318,6.1007 33.0398,5.4077 33.6568,4.8267 C34.2738,4.2457 35.0578,3.9557 36.0108,3.9557 C36.6048,3.9557 37.2358,4.1017 37.9018,4.3937 C38.2098,4.5307 38.4278,4.5997 38.5548,4.5997 C38.6978,4.5997 38.8148,4.5577 38.9058,4.4717 C38.9958,4.3867 39.0688,4.2147 39.1238,3.9557 L39.4298,3.9557 Z M42.882,10.2159 L46.384,10.2159 C46.356,9.7309 46.298,9.3899 46.21,9.1919 C46.073,8.8839 45.868,8.6409 45.595,8.4649 C45.322,8.2889 45.038,8.2009 44.74,8.2009 C44.283,8.2009 43.874,8.3779 43.514,8.7339 C43.153,9.0889 42.943,9.5829 42.882,10.2159 L42.882,10.2159 Z M42.882,10.6949 C42.876,11.8179 43.149,12.6989 43.7,13.3379 C44.25,13.9759 44.897,14.2959 45.64,14.2959 C46.136,14.2959 46.567,14.1599 46.933,13.8869 C47.299,13.6139 47.606,13.1479 47.854,12.4869 L48.11,12.6519 C47.994,13.4069 47.658,14.0929 47.102,14.7129 C46.546,15.3319 45.85,15.6419 45.013,15.6419 C44.104,15.6419 43.327,15.2879 42.68,14.5809 C42.033,13.8729 41.709,12.9219 41.709,11.7269 C41.709,10.4329 42.041,9.4249 42.704,8.7009 C43.368,7.9759 44.201,7.6139 45.203,7.6139 C46.051,7.6139 46.747,7.8939 47.292,8.4529 C47.837,9.0119 48.11,9.7589 48.11,10.6949 L42.882,10.6949 Z M51.3307,7.6226 L51.3307,9.3236 C51.9637,8.1896 52.6137,7.6226 53.2797,7.6226 C53.5827,7.6226 53.8327,7.7146 54.0317,7.8996 C54.2297,8.0836 54.3287,8.2966 54.3287,8.5396 C54.3287,8.7536 54.2567,8.9356 54.1137,9.0846 C53.9707,9.2326 53.7997,9.3076 53.6017,9.3076 C53.4087,9.3076 53.1927,9.2126 52.9537,9.0226 C52.7137,8.8326 52.5367,8.7376 52.4207,8.7376 C52.3217,8.7376 52.2147,8.7926 52.0987,8.9026 C51.8507,9.1286 51.5947,9.4996 51.3307,10.0176 L51.3307,13.6436 C51.3307,14.0616 51.3827,14.3786 51.4877,14.5926 C51.5587,14.7416 51.6857,14.8656 51.8677,14.9646 C52.0497,15.0636 52.3107,15.1136 52.6517,15.1136 L52.6517,15.4106 L48.7787,15.4106 L48.7787,15.1136 C49.1637,15.1136 49.4507,15.0526 49.6377,14.9316 C49.7757,14.8436 49.8717,14.7036 49.9267,14.5106 C49.9547,14.4166 49.9677,14.1496 49.9677,13.7096 L49.9677,10.7776 C49.9677,9.8966 49.9497,9.3716 49.9147,9.2046 C49.8787,9.0366 49.8127,8.9136 49.7157,8.8366 C49.6197,8.7596 49.4997,8.7206 49.3567,8.7206 C49.1857,8.7206 48.9937,8.7626 48.7787,8.8446 L48.6957,8.5476 L50.9837,7.6226 L51.3307,7.6226 Z M56.6741,3.6667 C56.9051,3.6667 57.1021,3.7477 57.2651,3.9107 C57.4271,4.0727 57.5081,4.2697 57.5081,4.5007 C57.5081,4.7317 57.4271,4.9307 57.2651,5.0957 C57.1021,5.2607 56.9051,5.3437 56.6741,5.3437 C56.4431,5.3437 56.2451,5.2607 56.0791,5.0957 C55.9141,4.9307 55.8321,4.7317 55.8321,4.5007 C55.8321,4.2697 55.9131,4.0727 56.0751,3.9107 C56.2381,3.7477 56.4371,3.6667 56.6741,3.6667 L56.6741,3.6667 Z M57.3591,7.6227 L57.3591,13.7007 C57.3591,14.1747 57.3941,14.4897 57.4631,14.6467 C57.5321,14.8037 57.6331,14.9207 57.7681,14.9977 C57.9031,15.0747 58.1501,15.1137 58.5071,15.1137 L58.5071,15.4107 L54.8321,15.4107 L54.8321,15.1137 C55.2011,15.1137 55.4491,15.0777 55.5761,15.0057 C55.7021,14.9347 55.8031,14.8157 55.8771,14.6507 C55.9511,14.4857 55.9891,14.1687 55.9891,13.7007 L55.9891,10.7857 C55.9891,9.9657 55.9641,9.4337 55.9141,9.1917 C55.8761,9.0157 55.8151,8.8927 55.7331,8.8247 C55.6501,8.7557 55.5371,8.7207 55.3941,8.7207 C55.2401,8.7207 55.0531,8.7627 54.8321,8.8447 L54.7171,8.5477 L56.9961,7.6227 L57.3591,7.6227 Z M62.4057,8.4402 L62.4057,13.4122 C62.4057,14.1172 62.4827,14.5632 62.6367,14.7502 C62.8407,14.9922 63.1137,15.1132 63.4547,15.1132 L64.1397,15.1132 L64.1397,15.4102 L59.6227,15.4102 L59.6227,15.1132 L59.9607,15.1132 C60.1817,15.1132 60.3827,15.0582 60.5637,14.9482 C60.7457,14.8382 60.8707,14.6892 60.9397,14.5022 C61.0087,14.3152 61.0427,13.9512 61.0427,13.4122 L61.0427,8.4402 L59.5727,8.4402 L59.5727,7.8452 L61.0427,7.8452 L61.0427,7.3502 C61.0427,6.5962 61.1637,5.9572 61.4067,5.4342 C61.6487,4.9112 62.0187,4.4882 62.5167,4.1662 C63.0157,3.8442 63.5757,3.6832 64.1977,3.6832 C64.7757,3.6832 65.3077,3.8702 65.7917,4.2452 C66.1107,4.4922 66.2707,4.7702 66.2707,5.0792 C66.2707,5.2442 66.1997,5.3992 66.0557,5.5452 C65.9127,5.6912 65.7587,5.7642 65.5937,5.7642 C65.4667,5.7642 65.3337,5.7192 65.1927,5.6282 C65.0527,5.5372 64.8807,5.3422 64.6767,5.0422 C64.4727,4.7412 64.2857,4.5392 64.1157,4.4352 C63.9447,4.3302 63.7547,4.2782 63.5457,4.2782 C63.2917,4.2782 63.0777,4.3452 62.9017,4.4802 C62.7247,4.6152 62.5987,4.8242 62.5217,5.1082 C62.4447,5.3912 62.4057,6.1222 62.4057,7.3002 L62.4057,7.8452 L64.3547,7.8452 L64.3547,8.4402 L62.4057,8.4402 Z" }) })));
29
+ };
30
+ exports.default = TypefaceSanserif20;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TypefaceSerif20: ({ color, ...rest }: IconType) => JSX.Element;
4
+ export default TypefaceSerif20;
@@ -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 TypefaceSerif20 = function (_a) {
27
+ var color = _a.color, rest = __rest(_a, ["color"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "35", height: "20", viewBox: "0 0 35 20" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M5.7338,5.2853 C4.2398,5.2853 3.2668,6.0633 3.2588,7.1373 C3.2668,8.3203 4.5818,8.7643 5.4378,8.9743 L6.5588,9.2853 C7.7648,9.5963 9.7498,10.2893 9.7498,12.3983 C9.7498,14.2343 8.2708,15.6593 5.6558,15.6663 C3.2278,15.6593 1.7258,14.4063 1.5938,12.5383 L3.0258,12.5383 C3.1428,13.7993 4.3178,14.3983 5.6558,14.3903 C7.2128,14.3983 8.3798,13.5963 8.3798,12.3673 C8.3798,11.2693 7.3368,10.8493 6.1538,10.5153 L4.7688,10.1413 C3.0018,9.6273 1.8968,8.7253 1.9048,7.1993 C1.8968,5.2933 3.5938,4.0403 5.7808,4.0403 C7.9668,4.0403 9.5388,5.3163 9.5938,7.0283 L8.2238,7.0283 C8.1078,5.9233 7.0798,5.2853 5.7338,5.2853 M17.2973,10.5461 C17.2893,9.1371 16.4023,8.0871 15.0093,8.0871 C13.5463,8.0871 12.6203,9.2391 12.5273,10.5461 L17.2973,10.5461 Z M11.1803,11.3091 C11.1803,8.7091 12.7133,6.9041 15.0093,6.9041 C16.7833,6.9041 18.6593,7.9931 18.6513255,11.1221 L18.6513255,11.6821 L12.5193,11.6821 C12.5893,13.4721 13.6323,14.4531 15.1343,14.4531 C16.1453,14.4531 16.7833,14.0091 17.0953,13.4881 L18.5273,13.4881 C18.1303,14.7721 16.8773,15.6431 15.1343,15.6351547 C12.6903,15.6431 11.1803,13.9001 11.1803,11.3091 L11.1803,11.3091 Z M20.3946,7.013 L21.6866,7.013 L21.6866,8.305 L21.7796,8.305 C22.0836,7.449 22.9626,6.881 23.9586,6.873 C24.1616,6.881 24.5036,6.888 24.6596,6.904 L24.6596,8.258 C24.5576,8.235 24.1996,8.165 23.8496,8.165 C22.6356,8.165 21.7336,9.005 21.7336,10.141 L21.7336,15.464 L20.3946,15.464 L20.3946,7.013 Z M25.967,15.464 L27.306,15.464 L27.306,7.013 L25.967,7.013 L25.967,15.464 Z M26.636,3.838 C27.149,3.83 27.577,4.227 27.585,4.725 C27.577,5.215 27.149,5.612 26.636,5.612 C26.122,5.612 25.694,5.215 25.702,4.725 C25.694,4.227 26.122,3.83 26.636,3.838 L26.636,3.838 Z M33.2195,8.1336 L31.3515,8.1336 L31.3515,15.4646 L29.9975,15.4646 L29.9975,8.1336 L28.6435,8.1336 L28.6435,7.0126 L29.9975,7.0126 L29.9975,5.8616 C30.0055,4.4916 30.9155,3.6666 32.4105,3.6666 C32.7375,3.6666 33.1265,3.7056 33.4065,3.7596 L33.4065,4.9586 C33.1185,4.9116 32.8775,4.8966 32.7055,4.8966 C31.7645,4.8966 31.3445,5.2856 31.3515,6.1566 L31.3515,7.0126 L33.2195,7.0126 L33.2195,8.1336 Z" }) })));
29
+ };
30
+ exports.default = TypefaceSerif20;
@@ -230,11 +230,11 @@ declare const lineIcons: {
230
230
  readonly ic_toggle_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
231
231
  readonly ic_toggle_up: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
232
232
  readonly ic_trashcan: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
233
- readonly ic_typeface_display_24: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
234
- readonly ic_typeface_hand_24: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
235
- readonly ic_typeface_monospace_24: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
236
- readonly ic_typeface_sanserif_24: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
237
- readonly ic_typeface_serif_24: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
233
+ readonly ic_typeface_display_20: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
234
+ readonly ic_typeface_hand_20: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
235
+ readonly ic_typeface_monospace_20: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
236
+ readonly ic_typeface_sanserif_20: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
237
+ readonly ic_typeface_serif_20: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
238
238
  readonly ic_typeface_system: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
239
239
  readonly ic_unavailable: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
240
240
  readonly ic_unlock: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
@@ -233,11 +233,11 @@ var Time_1 = __importDefault(require("./Time"));
233
233
  var ToggleDown_1 = __importDefault(require("./ToggleDown"));
234
234
  var ToggleUp_1 = __importDefault(require("./ToggleUp"));
235
235
  var Trashcan_1 = __importDefault(require("./Trashcan"));
236
- var TypefaceDisplay24_1 = __importDefault(require("./TypefaceDisplay24"));
237
- var TypefaceHand24_1 = __importDefault(require("./TypefaceHand24"));
238
- var TypefaceMonospace24_1 = __importDefault(require("./TypefaceMonospace24"));
239
- var TypefaceSanserif24_1 = __importDefault(require("./TypefaceSanserif24"));
240
- var TypefaceSerif24_1 = __importDefault(require("./TypefaceSerif24"));
236
+ var TypefaceDisplay20_1 = __importDefault(require("./TypefaceDisplay20"));
237
+ var TypefaceHand20_1 = __importDefault(require("./TypefaceHand20"));
238
+ var TypefaceMonospace20_1 = __importDefault(require("./TypefaceMonospace20"));
239
+ var TypefaceSanserif20_1 = __importDefault(require("./TypefaceSanserif20"));
240
+ var TypefaceSerif20_1 = __importDefault(require("./TypefaceSerif20"));
241
241
  var TypefaceSystem_1 = __importDefault(require("./TypefaceSystem"));
242
242
  var Unavailable_1 = __importDefault(require("./Unavailable"));
243
243
  var Unlock_1 = __importDefault(require("./Unlock"));
@@ -492,11 +492,11 @@ var lineIcons = {
492
492
  ic_toggle_down: ToggleDown_1.default,
493
493
  ic_toggle_up: ToggleUp_1.default,
494
494
  ic_trashcan: Trashcan_1.default,
495
- ic_typeface_display_24: TypefaceDisplay24_1.default,
496
- ic_typeface_hand_24: TypefaceHand24_1.default,
497
- ic_typeface_monospace_24: TypefaceMonospace24_1.default,
498
- ic_typeface_sanserif_24: TypefaceSanserif24_1.default,
499
- ic_typeface_serif_24: TypefaceSerif24_1.default,
495
+ ic_typeface_display_20: TypefaceDisplay20_1.default,
496
+ ic_typeface_hand_20: TypefaceHand20_1.default,
497
+ ic_typeface_monospace_20: TypefaceMonospace20_1.default,
498
+ ic_typeface_sanserif_20: TypefaceSanserif20_1.default,
499
+ ic_typeface_serif_20: TypefaceSerif20_1.default,
500
500
  ic_typeface_system: TypefaceSystem_1.default,
501
501
  ic_unavailable: Unavailable_1.default,
502
502
  ic_unlock: Unlock_1.default,
@@ -10,10 +10,11 @@ var line_1 = __importDefault(require("../../../common/assets/icons/line"));
10
10
  var Icon = function (_a) {
11
11
  var _b = _a.iconName, iconName = _b === void 0 ? 'ic_unavailable' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c, _d = _a.colorKey, colorKey = _d === void 0 ? 'ui_cpnt_icon_sys_grey_01' : _d, _e = _a.fillType, fillType = _e === void 0 ? 'line' : _e;
12
12
  var theme = (0, styled_components_1.useTheme)();
13
+ var isFixedSize = iconName.includes('_20') || iconName.includes('_32') || iconName.includes('_40');
13
14
  var DefaultIcon = line_1.default.ic_unavailable;
14
15
  var SelectedIcon = fillType === 'line'
15
16
  ? line_1.default[iconName] || fill_1.default[iconName]
16
17
  : fill_1.default[iconName] || line_1.default[iconName];
17
- return SelectedIcon ? ((0, jsx_runtime_1.jsx)(SelectedIcon, { "x-pds-name": "Icon", "x-pds-element-type": "component", "x-pds-device-type": "hybrid", color: theme[colorKey], size: size, style: { minWidth: size, minHeight: size } })) : ((0, jsx_runtime_1.jsx)(DefaultIcon, { "x-pds-name": "Icon", "x-pds-element-type": "component", "x-pds-device-type": "hybrid", color: theme[colorKey], size: size, style: { minWidth: size, minHeight: size } }));
18
+ return SelectedIcon ? ((0, jsx_runtime_1.jsx)(SelectedIcon, { "x-pds-name": "Icon", "x-pds-element-type": "component", "x-pds-device-type": "hybrid", color: theme[colorKey], size: size, style: isFixedSize ? undefined : { minWidth: size, minHeight: size } })) : ((0, jsx_runtime_1.jsx)(DefaultIcon, { "x-pds-name": "Icon", "x-pds-element-type": "component", "x-pds-device-type": "hybrid", color: theme[colorKey], size: size, style: isFixedSize ? undefined : { minWidth: size, minHeight: size } }));
18
19
  };
19
20
  exports.default = Icon;
@@ -2810,7 +2810,7 @@ var realMock = [
2810
2810
  CB_CONTENT_PROP_HOVER_SPEC_MUSE: true
2811
2811
  },
2812
2812
  CB_CONTENT_PROP_TEXT: {
2813
- CB_CONTENT_PROP_TEXT_SPEC_TEXT: 'New Text'
2813
+ CB_CONTENT_PROP_TEXT_SPEC_TEXT: 'New Text2222'
2814
2814
  },
2815
2815
  CB_CONTENT_PROP_VISIBILITY: {
2816
2816
  CB_CONTENT_PROP_VISIBILITY_SPEC_DESKTOP: true,
@@ -98,7 +98,7 @@ export declare const pages0803PreviewSections: {
98
98
  'CB_STYLE_PROP_TEXT_SPEC_SIZE:MOBILE': null;
99
99
  'CB_STYLE_PROP_TEXT_SPEC_SIZE:MOBILE:HOVER': null;
100
100
  CB_STYLE_PROP_TEXT_SPEC_TYPEFACE: string;
101
- 'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:HOVER': null;
101
+ 'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:HOVER': string;
102
102
  'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:MOBILE': null;
103
103
  'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:MOBILE:HOVER': null;
104
104
  CB_STYLE_PROP_TEXT_SPEC_VERTICAL: string;
@@ -26,7 +26,7 @@ exports.pages0803PreviewSections = [
26
26
  CB_CONTENT_PROP_HOVER_SPEC_MUSE: true
27
27
  },
28
28
  CB_CONTENT_PROP_TEXT: {
29
- CB_CONTENT_PROP_TEXT_SPEC_TEXT: 'New Text'
29
+ CB_CONTENT_PROP_TEXT_SPEC_TEXT: 'New Text3333'
30
30
  },
31
31
  CB_CONTENT_PROP_VISIBILITY: {
32
32
  CB_CONTENT_PROP_VISIBILITY_SPEC_DESKTOP: true,
@@ -102,8 +102,8 @@ exports.pages0803PreviewSections = [
102
102
  'CB_STYLE_PROP_TEXT_SPEC_SIZE:HOVER': null,
103
103
  'CB_STYLE_PROP_TEXT_SPEC_SIZE:MOBILE': null,
104
104
  'CB_STYLE_PROP_TEXT_SPEC_SIZE:MOBILE:HOVER': null,
105
- CB_STYLE_PROP_TEXT_SPEC_TYPEFACE: 'PRETENDARD',
106
- 'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:HOVER': null,
105
+ CB_STYLE_PROP_TEXT_SPEC_TYPEFACE: 'GOOGLE:Dokdo',
106
+ 'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:HOVER': 'GOOGLE:Lobster',
107
107
  'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:MOBILE': null,
108
108
  'CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:MOBILE:HOVER': null,
109
109
  CB_STYLE_PROP_TEXT_SPEC_VERTICAL: 'MIDDLE',
@@ -270,7 +270,7 @@ exports.pages0803PreviewSections = [
270
270
  'CB_STYLE_PROP_BTNTEXT_SPEC_SIZE:HOVER': 16,
271
271
  'CB_STYLE_PROP_BTNTEXT_SPEC_SIZE:MOBILE': null,
272
272
  'CB_STYLE_PROP_BTNTEXT_SPEC_SIZE:MOBILE:HOVER': null,
273
- CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE: 'PRETENDARD',
273
+ CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE: 'GOOGLE:Cherry Bomb One',
274
274
  'CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE:HOVER': 'PRETENDARD',
275
275
  'CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE:MOBILE': null,
276
276
  'CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE:MOBILE:HOVER': null,
@@ -30,6 +30,7 @@ var jsx_runtime_1 = require("react/jsx-runtime");
30
30
  var react_1 = require("react");
31
31
  var DynamicLayout_1 = require("../../../../../../../DynamicLayout");
32
32
  var hooks_1 = require("../../../../../../../DynamicLayout/sections/CustomSection/hooks");
33
+ var useGoogleFonts_1 = require("../../../../../../../DynamicLayout/sections/CustomSection/hooks/useGoogleFonts");
33
34
  var newUtils_1 = require("../../../../../../../DynamicLayout/sections/CustomSection/newUtils");
34
35
  var colorUtil_1 = require("../../../../../../../DynamicLayout/sections/CustomSection/newUtils/colorUtil");
35
36
  var util_1 = require("../../../../../../../DynamicLayout/sections/CustomSection/util");
@@ -50,6 +51,8 @@ function Button(props) {
50
51
  var _e = getBTNColorStyles(CB_STYLE_PROP_BTNCOLOR, device), btnColorStyle = _e.style, btnColorHoverStyle = _e.hoverStyle;
51
52
  var _f = (0, util_1.parseProperties)(props, device), propsStyle = _f.style, propsHoverStyle = _f.hoverStyle, _g = _f.layout, paddingLeft = _g.paddingLeft, paddingRight = _g.paddingRight, paddingTop = _g.paddingTop, paddingBottom = _g.paddingBottom, layoutStyle = __rest(_g, ["paddingLeft", "paddingRight", "paddingTop", "paddingBottom"]), effect = _f.effect;
52
53
  var isEditModeAndHidden = propsStyle.visibility === 'hidden' && mode === 'EDIT';
54
+ var googleFonts = (0, useGoogleFonts_1.getGoogleFontsFromBtnCB)(props.CB_STYLE_PROP_BTNTEXT, device === 'MOBILE');
55
+ (0, useGoogleFonts_1.useGoogleFonts)({ fonts: googleFonts });
53
56
  if (mode === 'EDIT') {
54
57
  propsStyle.visibility = 'visible';
55
58
  }
@@ -19,6 +19,8 @@ var jsx_runtime_1 = require("react/jsx-runtime");
19
19
  var react_1 = require("react");
20
20
  var DynamicLayout_1 = require("../../../../../../../DynamicLayout");
21
21
  var hooks_1 = require("../../../../hooks");
22
+ var getGoogleFonts_1 = require("../../../../hooks/useGoogleFonts/getGoogleFonts");
23
+ var useGoogleFonts_1 = __importDefault(require("../../../../hooks/useGoogleFonts/useGoogleFonts"));
22
24
  var textUtil_1 = require("../../../../newUtils/textUtil");
23
25
  var util_1 = require("../../../../util");
24
26
  var S_CB_AnimationObserverBox_1 = require("../components/S_CB_AnimationObserverBox");
@@ -37,6 +39,8 @@ function Text(props) {
37
39
  var _d = getTextStyles(props.CB_STYLE_PROP_TEXT, device), textStyle = _d.style, textHoverStyle = _d.hoverStyle;
38
40
  var _e = (0, util_1.parseProperties)(props, device), propsStyle = _e.style, propsHoverStyle = _e.hoverStyle, layoutStyle = _e.layout, effect = _e.effect;
39
41
  var isEditModeAndHidden = propsStyle.visibility === 'hidden' && mode === 'EDIT';
42
+ var googleFonts = (0, getGoogleFonts_1.getGoogleFontsFromTextCB)(props.CB_STYLE_PROP_TEXT, device === 'MOBILE');
43
+ (0, useGoogleFonts_1.default)({ fonts: googleFonts });
40
44
  if (mode === 'EDIT') {
41
45
  propsStyle.visibility = 'visible';
42
46
  }
@@ -0,0 +1,4 @@
1
+ import type { CB_BTNTEXT_STYLE_PROPS } from '../../components/ComponentBlock/componentBlocks/Button/btnTypes';
2
+ import type { CB_STYLE_PROP_TEXT_SPECS } from '../../components/ComponentBlock/componentBlocks/Text/types';
3
+ export declare function getGoogleFontsFromTextCB(props: CB_STYLE_PROP_TEXT_SPECS, isMobile: boolean): string[];
4
+ export declare function getGoogleFontsFromBtnCB(props: CB_BTNTEXT_STYLE_PROPS, isMobile: boolean): string[];
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getGoogleFontsFromBtnCB = exports.getGoogleFontsFromTextCB = void 0;
4
+ function getGoogleFontsFromTextCB(props, isMobile) {
5
+ var typeface = props.CB_STYLE_PROP_TEXT_SPEC_TYPEFACE;
6
+ var typefaceHover = props['CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:HOVER'];
7
+ var typefaceMobile = props['CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:MOBILE'];
8
+ var typefaceMobileHover = props['CB_STYLE_PROP_TEXT_SPEC_TYPEFACE:MOBILE:HOVER'];
9
+ if (isMobile) {
10
+ return [typefaceMobile, typefaceMobileHover].filter(function (each) { return each && each.startsWith('GOOGLE:'); });
11
+ }
12
+ return [typeface, typefaceHover].filter(function (each) { return each && each.startsWith('GOOGLE:'); });
13
+ }
14
+ exports.getGoogleFontsFromTextCB = getGoogleFontsFromTextCB;
15
+ function getGoogleFontsFromBtnCB(props, isMobile) {
16
+ var typeface = props.CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE;
17
+ var typefaceHover = props['CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE:HOVER'];
18
+ var typefaceMobile = props['CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE:MOBILE'];
19
+ var typefaceMobileHover = props['CB_STYLE_PROP_BTNTEXT_SPEC_TYPEFACE:MOBILE:HOVER'];
20
+ if (isMobile) {
21
+ return [typefaceMobile, typefaceMobileHover].filter(function (each) { return each && each.startsWith('GOOGLE:'); });
22
+ }
23
+ return [typeface, typefaceHover].filter(function (each) { return each && each.startsWith('GOOGLE:'); });
24
+ }
25
+ exports.getGoogleFontsFromBtnCB = getGoogleFontsFromBtnCB;
@@ -0,0 +1,2 @@
1
+ export { getGoogleFontsFromBtnCB, getGoogleFontsFromTextCB } from './getGoogleFonts';
2
+ export { default as useGoogleFonts } from './useGoogleFonts';
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.useGoogleFonts = exports.getGoogleFontsFromTextCB = exports.getGoogleFontsFromBtnCB = void 0;
7
+ var getGoogleFonts_1 = require("./getGoogleFonts");
8
+ Object.defineProperty(exports, "getGoogleFontsFromBtnCB", { enumerable: true, get: function () { return getGoogleFonts_1.getGoogleFontsFromBtnCB; } });
9
+ Object.defineProperty(exports, "getGoogleFontsFromTextCB", { enumerable: true, get: function () { return getGoogleFonts_1.getGoogleFontsFromTextCB; } });
10
+ var useGoogleFonts_1 = require("./useGoogleFonts");
11
+ Object.defineProperty(exports, "useGoogleFonts", { enumerable: true, get: function () { return __importDefault(useGoogleFonts_1).default; } });
@@ -0,0 +1,4 @@
1
+ declare function useGoogleFonts({ fonts }: {
2
+ fonts: string[];
3
+ }): void;
4
+ export default useGoogleFonts;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var react_1 = require("react");
7
+ var callGoogleFontCSSAndApply_1 = __importDefault(require("../../../../../GoogleFontkit/utils/callGoogleFontCSSAndApply"));
8
+ function useGoogleFonts(_a) {
9
+ var fonts = _a.fonts;
10
+ (0, react_1.useEffect)(function () {
11
+ fonts.forEach(function (fontFamily) {
12
+ var parsedFontFamily = fontFamily.substring(7);
13
+ (0, callGoogleFontCSSAndApply_1.default)(parsedFontFamily);
14
+ });
15
+ }, [fonts]);
16
+ }
17
+ exports.default = useGoogleFonts;
@@ -1,7 +1,8 @@
1
1
  import type { Device } from '../util/types';
2
+ import type { CSSProperties } from 'styled-components';
2
3
  export declare function parseStyleTextToCSSProp<T>({ availableSpecCodes, props, propKey, device }: ParseStyleTextProps<T>): {
3
- style: {};
4
- hoverStyle: {};
4
+ style: CSSProperties;
5
+ hoverStyle: CSSProperties;
5
6
  };
6
7
  type ParseStyleTextProps<T> = {
7
8
  availableSpecCodes: Array<keyof T>;
@@ -173,8 +173,11 @@ function getFontName(value) {
173
173
  return 'serif';
174
174
  case 'PRETENDARD':
175
175
  return 'Pretendard JP, sans-serif';
176
- default:
177
- return '';
176
+ default: {
177
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
178
+ var _a = value.split(':'), _1 = _a[0], font = _a[1];
179
+ return "".concat(font);
180
+ }
178
181
  }
179
182
  }
180
183
  function getHorizontalPositionValue(value) {
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare function GoogleFontApplyExample(): JSX.Element;
3
+ export default GoogleFontApplyExample;
@@ -0,0 +1,92 @@
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 __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ var jsx_runtime_1 = require("react/jsx-runtime");
18
+ var react_1 = require("react");
19
+ var getGoogleFontDefaultText_1 = __importDefault(require("./api/getGoogleFontDefaultText"));
20
+ var callGoogleFontCSSAndApply_1 = __importDefault(require("./utils/callGoogleFontCSSAndApply"));
21
+ function TextCB(_a) {
22
+ var text = _a.text, font = _a.font;
23
+ var _b = (0, react_1.useState)(text), defaultText = _b[0], setDefaultText = _b[1];
24
+ (0, react_1.useEffect)(function () {
25
+ (0, callGoogleFontCSSAndApply_1.default)(font);
26
+ (0, getGoogleFontDefaultText_1.default)(font).then(function (data) {
27
+ setDefaultText(data.sampleText.tester);
28
+ });
29
+ }, [font]);
30
+ return (0, jsx_runtime_1.jsx)("div", __assign({ style: { fontFamily: font } }, { children: defaultText }));
31
+ }
32
+ function GoogleFontApplyExample() {
33
+ var texts = [
34
+ {
35
+ font: 'Dokdo',
36
+ text: 'Whereas disregard and contempt for human rights have resulted'
37
+ },
38
+ {
39
+ font: 'Open Sans',
40
+ text: 'Whereas disregard and contempt for human rights have resulted'
41
+ },
42
+ {
43
+ font: 'Poppins',
44
+ text: 'Whereas disregard and contempt for human rights have resulted'
45
+ },
46
+ {
47
+ font: 'Dokdo',
48
+ text: 'Whereas disregard and contempt for human rights have resulted'
49
+ },
50
+ {
51
+ font: 'Lato',
52
+ text: 'Whereas disregard and contempt for human rights have resulted'
53
+ },
54
+ {
55
+ font: 'Dokdo',
56
+ text: 'Whereas disregard and contempt for human rights have resulted'
57
+ },
58
+ {
59
+ font: 'Dokdo',
60
+ text: 'Whereas disregard and contempt for human rights have resulted'
61
+ },
62
+ {
63
+ font: 'Caveat',
64
+ text: 'Whereas disregard and contempt for human rights have resulted'
65
+ },
66
+ {
67
+ font: 'Dokdo',
68
+ text: 'Whereas disregard and contempt for human rights have resulted'
69
+ },
70
+ {
71
+ font: 'Material Icons Sharp',
72
+ text: 'Whereas disregard and contempt for human rights have resulted'
73
+ },
74
+ {
75
+ font: 'Material Symbols Rounded',
76
+ text: 'Whereas disregard and contempt for human rights have resulted'
77
+ },
78
+ {
79
+ font: 'Orbitron',
80
+ text: 'Whereas disregard and contempt for human rights have resulted'
81
+ },
82
+ {
83
+ font: 'Noto Color Emoji',
84
+ text: 'a'
85
+ },
86
+ { font: 'Noto Sans KR', test: '노토산스 한국어' },
87
+ { font: 'Noto Sans JP', test: '노토산스 일본어' },
88
+ { font: 'Noto Sans NKo Unjoined', text: '노토산스 외국어' }
89
+ ];
90
+ return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: texts.map(function (group) { return ((0, jsx_runtime_1.jsx)(TextCB, { text: group.text, font: group.font }, group.font)); }) }));
91
+ }
92
+ exports.default = GoogleFontApplyExample;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare function GoogleFontsListExample(): JSX.Element;
3
+ export default GoogleFontsListExample;