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
@@ -1,30 +0,0 @@
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 TypefaceSanserif24 = function (_a) {
27
- var color = _a.color, rest = __rest(_a, ["color"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "92", height: "24", viewBox: "0 0 92 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M11.9305,4.3854 L11.9305,9.5494 L11.5235,9.5494 C11.3905,8.5584 11.1545,7.7694 10.8125,7.1824 C10.4715,6.5954 9.9855,6.1294 9.3535,5.7834 C8.7225,5.4384 8.0695,5.2664 7.3935,5.2664 C6.6305,5.2664 5.9985,5.4994 5.4995,5.9654 C5.0005,6.4314 4.7505,6.9624 4.7505,7.5564 C4.7505,8.0124 4.9085,8.4264 5.2245,8.8014 C5.6795,9.3514 6.7625,10.0854 8.4725,11.0034 C9.8675,11.7524 10.8205,12.3264 11.3305,12.7264 C11.8405,13.1264 12.2335,13.5984 12.5085,14.1414 C12.7835,14.6854 12.9215,15.2544 12.9215,15.8484 C12.9215,16.9794 12.4825,17.9534 11.6055,18.7724 C10.7285,19.5904 9.5995,20.0004 8.2195,20.0004 C7.7865,20.0004 7.3785,19.9674 6.9975,19.9004 C6.7695,19.8644 6.2985,19.7304 5.5825,19.4994 C4.8665,19.2674 4.4135,19.1524 4.2225,19.1524 C4.0385,19.1524 3.8935,19.2074 3.7875,19.3174 C3.6805,19.4274 3.6015,19.6554 3.5505,20.0004 L3.1435,20.0004 L3.1435,14.8794 L3.5505,14.8794 C3.7415,15.9514 3.9985,16.7534 4.3215,17.2854 C4.6445,17.8174 5.1385,18.2604 5.8025,18.6124 C6.4665,18.9644 7.1955,19.1414 7.9885,19.1414 C8.9055,19.1414 9.6305,18.8984 10.1635,18.4144 C10.6955,17.9294 10.9615,17.3574 10.9615,16.6964 C10.9615,16.3294 10.8605,15.9584 10.6585,15.5844 C10.4565,15.2104 10.1425,14.8614 9.7175,14.5384 C9.4305,14.3184 8.6495,13.8504 7.3715,13.1344 C6.0945,12.4184 5.1855,11.8474 4.6465,11.4214 C4.1065,10.9964 3.6975,10.5264 3.4185,10.0124 C3.1395,9.4984 3.0005,8.9334 3.0005,8.3164 C3.0005,7.2444 3.4115,6.3214 4.2335,5.5474 C5.0555,4.7724 6.1015,4.3854 7.3715,4.3854 C8.1645,4.3854 9.0055,4.5804 9.8935,4.9694 C10.3045,5.1524 10.5945,5.2444 10.7635,5.2444 C10.9545,5.2444 11.1105,5.1874 11.2315,5.0734 C11.3525,4.9594 11.4495,4.7304 11.5235,4.3854 L11.9305,4.3854 Z M20.5517,17.4893 L20.5517,13.6463 C19.4427,14.0863 18.7277,14.3983 18.4047,14.5823 C17.8247,14.9053 17.4097,15.2433 17.1597,15.5953 C16.9107,15.9473 16.7857,16.3333 16.7857,16.7513 C16.7857,17.2803 16.9437,17.7183 17.2597,18.0673 C17.5747,18.4163 17.9387,18.5903 18.3497,18.5903 C18.9077,18.5903 19.6417,18.2233 20.5517,17.4893 M20.5517,18.2053 C19.5167,19.0053 18.8667,19.4673 18.6027,19.5923 C18.2067,19.7763 17.7837,19.8683 17.3367,19.8683 C16.6387,19.8683 16.0657,19.6293 15.6137,19.1523 C15.1627,18.6753 14.9367,18.0473 14.9367,17.2693 C14.9367,16.7773 15.0467,16.3513 15.2667,15.9913 C15.5677,15.4923 16.0907,15.0223 16.8367,14.5823 C17.5827,14.1413 18.8197,13.6063 20.5517,12.9743 L20.5517,12.5783 C20.5517,11.5723 20.3937,10.8823 20.0747,10.5083 C19.7547,10.1333 19.2887,9.9463 18.6797,9.9463 C18.2177,9.9463 17.8497,10.0713 17.5787,10.3203 C17.2997,10.5703 17.1597,10.8563 17.1597,11.1793 L17.1817,11.8183 C17.1817,12.1563 17.0977,12.4163 16.9247,12.6003 C16.7527,12.7833 16.5247,12.8753 16.2457,12.8753 C15.9757,12.8753 15.7537,12.7803 15.5807,12.5893 C15.4087,12.3983 15.3217,12.1373 15.3217,11.8073 C15.3217,11.1763 15.6447,10.5963 16.2897,10.0673 C16.9357,9.5393 17.8427,9.2743 19.0097,9.2743 C19.9057,9.2743 20.6397,9.4253 21.2127,9.7263 C21.6457,9.9533 21.9647,10.3093 22.1707,10.7943 C22.3027,11.1103 22.3687,11.7563 22.3687,12.7323 L22.3687,16.1573 C22.3687,17.1183 22.3867,17.7073 22.4237,17.9243 C22.4607,18.1413 22.5227,18.2863 22.6077,18.3593 C22.6917,18.4323 22.7867,18.4693 22.8977,18.4693 C23.0147,18.4693 23.1177,18.4433 23.2057,18.3923 C23.3597,18.2973 23.6567,18.0293 24.0977,17.5883 L24.0977,18.2053 C23.2757,19.3063 22.4897,19.8573 21.7407,19.8573 C21.3817,19.8573 21.0947,19.7323 20.8817,19.4823 C20.6687,19.2333 20.5587,18.8073 20.5517,18.2053 M27.7864,11.4109 C28.9684,9.9869 30.0954,9.2749 31.1674,9.2749 C31.7174,9.2749 32.1914,9.4119 32.5874,9.6879 C32.9844,9.9629 33.2994,10.4159 33.5344,11.0479 C33.6964,11.4879 33.7764,12.1629 33.7764,13.0739 L33.7764,17.3789 C33.7764,18.0179 33.8284,18.4509 33.9314,18.6789 C34.0114,18.8619 34.1424,19.0049 34.3214,19.1079 C34.5014,19.2109 34.8334,19.2619 35.3184,19.2619 L35.3184,19.6589 L30.3304,19.6589 L30.3304,19.2619 L30.5394,19.2619 C31.0094,19.2619 31.3374,19.1909 31.5244,19.0479 C31.7124,18.9039 31.8424,18.6929 31.9154,18.4139 C31.9454,18.3039 31.9594,17.9589 31.9594,17.3789 L31.9594,13.2499 C31.9594,12.3319 31.8404,11.6659 31.6024,11.2509 C31.3634,10.8369 30.9614,10.6289 30.3964,10.6289 C29.5224,10.6289 28.6524,11.1059 27.7864,12.0609 L27.7864,17.3789 C27.7864,18.0619 27.8264,18.4839 27.9074,18.6459 C28.0104,18.8589 28.1514,19.0149 28.3314,19.1139 C28.5114,19.2129 28.8764,19.2619 29.4274,19.2619 L29.4274,19.6589 L24.4384,19.6589 L24.4384,19.2619 L24.6594,19.2619 C25.1734,19.2619 25.5194,19.1319 25.6994,18.8709 C25.8794,18.6109 25.9694,18.1129 25.9694,17.3789 L25.9694,13.6349 C25.9694,12.4239 25.9424,11.6859 25.8864,11.4219 C25.8314,11.1579 25.7474,10.9779 25.6334,10.8819 C25.5194,10.7869 25.3674,10.7389 25.1764,10.7389 C24.9714,10.7389 24.7254,10.7939 24.4384,10.9039 L24.2734,10.5079 L27.3124,9.2749 L27.7864,9.2749 L27.7864,11.4109 Z M53.2675,4.3854 L53.2675,9.5494 L52.8605,9.5494 C52.7275,8.5584 52.4915,7.7694 52.1495,7.1824 C51.8085,6.5954 51.3225,6.1294 50.6905,5.7834 C50.0595,5.4384 49.4065,5.2664 48.7305,5.2664 C47.9675,5.2664 47.3355,5.4994 46.8365,5.9654 C46.3375,6.4314 46.0875,6.9624 46.0875,7.5564 C46.0875,8.0124 46.2455,8.4264 46.5615,8.8014 C47.0165,9.3514 48.0995,10.0854 49.8095,11.0034 C51.2045,11.7524 52.1575,12.3264 52.6675,12.7264 C53.1775,13.1264 53.5705,13.5984 53.8455,14.1414 C54.1205,14.6854 54.2585,15.2544 54.2585,15.8484 C54.2585,16.9794 53.8195,17.9534 52.9425,18.7724 C52.0655,19.5904 50.9365,20.0004 49.5565,20.0004 C49.1235,20.0004 48.7155,19.9674 48.3345,19.9004 C48.1065,19.8644 47.6355,19.7304 46.9195,19.4994 C46.2035,19.2674 45.7505,19.1524 45.5595,19.1524 C45.3755,19.1524 45.2305,19.2074 45.1245,19.3174 C45.0175,19.4274 44.9385,19.6554 44.8875,20.0004 L44.4805,20.0004 L44.4805,14.8794 L44.8875,14.8794 C45.0785,15.9514 45.3355,16.7534 45.6585,17.2854 C45.9815,17.8174 46.4755,18.2604 47.1395,18.6124 C47.8035,18.9644 48.5325,19.1414 49.3255,19.1414 C50.2425,19.1414 50.9675,18.8984 51.5005,18.4144 C52.0325,17.9294 52.2985,17.3574 52.2985,16.6964 C52.2985,16.3294 52.1975,15.9584 51.9955,15.5844 C51.7935,15.2104 51.4795,14.8614 51.0545,14.5384 C50.7675,14.3184 49.9865,13.8504 48.7085,13.1344 C47.4315,12.4184 46.5225,11.8474 45.9835,11.4214 C45.4435,10.9964 45.0345,10.5264 44.7555,10.0124 C44.4765,9.4984 44.3375,8.9334 44.3375,8.3164 C44.3375,7.2444 44.7485,6.3214 45.5705,5.5474 C46.3925,4.7724 47.4385,4.3854 48.7085,4.3854 C49.5015,4.3854 50.3425,4.5804 51.2305,4.9694 C51.6415,5.1524 51.9315,5.2444 52.1005,5.2444 C52.2915,5.2444 52.4475,5.1874 52.5685,5.0734 C52.6895,4.9594 52.7865,4.7304 52.8605,4.3854 L53.2675,4.3854 Z M57.8704,12.7323 L62.5394,12.7323 C62.5024,12.0863 62.4254,11.6313 62.3084,11.3673 C62.1244,10.9553 61.8514,10.6323 61.4874,10.3983 C61.1244,10.1633 60.7444,10.0453 60.3484,10.0453 C59.7384,10.0453 59.1934,10.2823 58.7124,10.7553 C58.2324,11.2293 57.9514,11.8883 57.8704,12.7323 L57.8704,12.7323 Z M57.8704,13.3713 C57.8634,14.8683 58.2264,16.0433 58.9604,16.8943 C59.6944,17.7463 60.5574,18.1723 61.5484,18.1723 C62.2094,18.1723 62.7834,17.9903 63.2714,17.6273 C63.7594,17.2633 64.1694,16.6413 64.4994,15.7603 L64.8404,15.9803 C64.6864,16.9863 64.2384,17.9023 63.4974,18.7283 C62.7564,19.5543 61.8274,19.9673 60.7114,19.9673 C59.5004,19.9673 58.4634,19.4953 57.6004,18.5523 C56.7384,17.6083 56.3064,16.3403 56.3064,14.7473 C56.3064,13.0223 56.7494,11.6773 57.6334,10.7113 C58.5184,9.7463 59.6284,9.2633 60.9644,9.2633 C62.0954,9.2633 63.0234,9.6363 63.7504,10.3813 C64.4774,11.1263 64.8404,12.1233 64.8404,13.3713 L57.8704,13.3713 Z M69.1354,9.2746 L69.1354,11.5426 C69.9794,10.0306 70.8454,9.2746 71.7344,9.2746 C72.1384,9.2746 72.4724,9.3976 72.7364,9.6436 C73.0004,9.8896 73.1324,10.1736 73.1324,10.4966 C73.1324,10.7836 73.0374,11.0256 72.8464,11.2236 C72.6554,11.4216 72.4274,11.5206 72.1634,11.5206 C71.9064,11.5206 71.6184,11.3946 71.2994,11.1406 C70.9794,10.8876 70.7434,10.7616 70.5894,10.7616 C70.4564,10.7616 70.3134,10.8346 70.1594,10.9816 C69.8294,11.2826 69.4874,11.7776 69.1354,12.4676 L69.1354,17.3026 C69.1354,17.8596 69.2054,18.2826 69.3444,18.5686 C69.4404,18.7666 69.6084,18.9316 69.8514,19.0636 C70.0934,19.1966 70.4424,19.2626 70.8974,19.2626 L70.8974,19.6586 L65.7324,19.6586 L65.7324,19.2626 C66.2464,19.2626 66.6284,19.1816 66.8784,19.0196 C67.0614,18.9026 67.1904,18.7156 67.2634,18.4586 C67.3004,18.3336 67.3184,17.9776 67.3184,17.3906 L67.3184,13.4806 C67.3184,12.3066 67.2944,11.6076 67.2464,11.3836 C67.1994,11.1596 67.1114,10.9956 66.9824,10.8936 C66.8544,10.7906 66.6944,10.7396 66.5034,10.7396 C66.2764,10.7396 66.0194,10.7946 65.7324,10.9046 L65.6224,10.5076 L68.6734,9.2746 L69.1354,9.2746 Z M76.2599,4 C76.5679,4 76.8309,4.108 77.0469,4.325 C77.2639,4.541 77.3719,4.804 77.3719,5.112 C77.3719,5.421 77.2639,5.685 77.0469,5.905 C76.8309,6.125 76.5679,6.235 76.2599,6.235 C75.9519,6.235 75.6869,6.125 75.4669,5.905 C75.2469,5.685 75.1369,5.421 75.1369,5.112 C75.1369,4.804 75.2449,4.541 75.4619,4.325 C75.6779,4.108 75.9439,4 76.2599,4 L76.2599,4 Z M77.1739,9.275 L77.1739,17.379 C77.1739,18.011 77.2199,18.431 77.3119,18.64 C77.4029,18.849 77.5389,19.005 77.7189,19.108 C77.8989,19.211 78.2269,19.262 78.7049,19.262 L78.7049,19.659 L73.8039,19.659 L73.8039,19.262 C74.2959,19.262 74.6269,19.214 74.7949,19.119 C74.9639,19.024 75.0979,18.866 75.1969,18.646 C75.2959,18.425 75.3459,18.003 75.3459,17.379 L75.3459,13.492 C75.3459,12.398 75.3129,11.69 75.2469,11.367 C75.1959,11.132 75.1149,10.969 75.0049,10.877 C74.8949,10.785 74.7439,10.739 74.5529,10.739 C74.3479,10.739 74.0979,10.794 73.8039,10.904 L73.6499,10.508 L76.6889,9.275 L77.1739,9.275 Z M83.902,10.3648 L83.902,16.9938 C83.902,17.9338 84.005,18.5278 84.21,18.7778 C84.482,19.1008 84.845,19.2618 85.3,19.2618 L86.214,19.2618 L86.214,19.6588 L80.191,19.6588 L80.191,19.2618 L80.643,19.2618 C80.936,19.2618 81.204,19.1888 81.446,19.0418 C81.689,18.8948 81.856,18.6968 81.947,18.4478 C82.039,18.1978 82.085,17.7128 82.085,16.9938 L82.085,10.3648 L80.125,10.3648 L80.125,9.5718 L82.085,9.5718 L82.085,8.9108 C82.085,7.9058 82.247,7.0538 82.57,6.3568 C82.893,5.6588 83.386,5.0958 84.051,4.6658 C84.715,4.2368 85.462,4.0218 86.292,4.0218 C87.062,4.0218 87.771,4.2718 88.417,4.7708 C88.843,5.1008 89.055,5.4718 89.055,5.8828 C89.055,6.1028 88.96,6.3108 88.769,6.5048 C88.578,6.6998 88.373,6.7968 88.153,6.7968 C87.984,6.7968 87.806,6.7368 87.618,6.6158 C87.431,6.4938 87.202,6.2338 86.93,5.8338 C86.659,5.4338 86.409,5.1638 86.181,5.0238 C85.954,4.8848 85.701,4.8148 85.422,4.8148 C85.084,4.8148 84.798,4.9048 84.563,5.0848 C84.328,5.2648 84.159,5.5438 84.056,5.9218 C83.953,6.2998 83.902,7.2738 83.902,8.8448 L83.902,9.5718 L86.501,9.5718 L86.501,10.3648 L83.902,10.3648 Z" }) })));
29
- };
30
- exports.default = TypefaceSanserif24;
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- import type IconType from '../IconType';
3
- declare const TypefaceSerif24: ({ color, ...rest }: IconType) => JSX.Element;
4
- export default TypefaceSerif24;
@@ -1,30 +0,0 @@
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 TypefaceSerif24 = function (_a) {
27
- var color = _a.color, rest = __rest(_a, ["color"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "48", height: "24", viewBox: "0 0 48 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M8.5201,6.1582 C6.5281,6.1582 5.2311,7.1962 5.2201,8.6282 C5.2311,10.2052 6.9841,10.7962 8.1261,11.0762 L9.6201,11.4912 C11.2281,11.9062 13.8741,12.8302 13.8741,15.6422 C13.8741,18.0912 11.9031,19.9892 8.4161,20.0002 C5.1791,19.9892 3.1761,18.3192 3.0001,15.8292 L4.9091,15.8292 C5.0651,17.5102 6.6321,18.3082 8.4161,18.2982 C10.4911,18.3082 12.0481,17.2402 12.0481,15.6002 C12.0481,14.1372 10.6571,13.5772 9.0801,13.1312 L7.2331,12.6332 C4.8781,11.9482 3.4051,10.7442 3.4151,8.7112 C3.4051,6.1682 5.6671,4.4982 8.5821,4.4982 C11.4981,4.4982 13.5941,6.2002 13.6671,8.4822 L11.8401,8.4822 C11.6851,7.0092 10.3151,6.1582 8.5201,6.1582 M23.9382,13.1725 C23.9282,11.2945 22.7452,9.8935 20.8872,9.8935 C18.9372,9.8935 17.7022,11.4295 17.5772,13.1725 L23.9382,13.1725 Z M15.7822,14.1895 C15.7822,10.7235 17.8262,8.3165 20.8872,8.3165 C23.2532,8.3165 25.7542,9.7695 25.7432362,13.9405 L25.7432362,14.6875 L17.5672,14.6875 C17.6602,17.0735 19.0512,18.3815 21.0532,18.3815 C22.4022,18.3815 23.2532,17.7895 23.6682,17.0945 L25.5772,17.0945 C25.0482,18.8065 23.3782,19.9685 21.0532,19.958564 C17.7952,19.9685 15.7822,17.6445 15.7822,14.1895 L15.7822,14.1895 Z M28.0679,8.4617 L29.7899,8.4617 L29.7899,10.1837 L29.9149,10.1837 C30.3199,9.0427 31.4919,8.2857 32.8199,8.2747 C33.0899,8.2857 33.5469,8.2957 33.7539,8.3167 L33.7539,10.1217 C33.6189,10.0907 33.1419,9.9977 32.6749,9.9977 C31.0559,9.9977 29.8529,11.1177 29.8529,12.6327 L29.8529,19.7297 L28.0679,19.7297 L28.0679,8.4617 Z M35.497,19.73 L37.282,19.73 L37.282,8.462 L35.497,8.462 L35.497,19.73 Z M36.39,4.228 C37.074,4.218 37.645,4.747 37.655,5.411 C37.645,6.065 37.074,6.594 36.39,6.594 C35.705,6.594 35.134,6.065 35.144,5.411 C35.134,4.747 35.705,4.218 36.39,4.228 L36.39,4.228 Z M45.1678,9.9559 L42.6778,9.9559 L42.6778,19.7299 L40.8718,19.7299 L40.8718,9.9559 L39.0668,9.9559 L39.0668,8.4619 L40.8718,8.4619 L40.8718,6.9259 C40.8828,5.0999 42.0968,3.9999 44.0888,3.9999 C44.5248,3.9999 45.0428,4.0519 45.4168,4.1249 L45.4168,5.7229 C45.0328,5.6599 44.7108,5.6399 44.4828,5.6399 C43.2278,5.6399 42.6668,6.1579 42.6778,7.3199 L42.6778,8.4619 L45.1678,8.4619 L45.1678,9.9559 Z" }) })));
29
- };
30
- exports.default = TypefaceSerif24;