pds-dev-kit-web 2.1.9 → 2.1.11

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 (63) hide show
  1. package/dist/src/common/assets/icons/fill/Audio.d.ts +4 -0
  2. package/dist/src/common/assets/icons/fill/Audio.js +30 -0
  3. package/dist/src/common/assets/icons/fill/Calendar.d.ts +4 -0
  4. package/dist/src/common/assets/icons/fill/Calendar.js +30 -0
  5. package/dist/src/common/assets/icons/fill/Embed.d.ts +4 -0
  6. package/dist/src/common/assets/icons/fill/Embed.js +30 -0
  7. package/dist/src/common/assets/icons/fill/Icon.d.ts +4 -0
  8. package/dist/src/common/assets/icons/fill/Icon.js +30 -0
  9. package/dist/src/common/assets/icons/fill/Information.d.ts +4 -0
  10. package/dist/src/common/assets/icons/fill/Information.js +30 -0
  11. package/dist/src/common/assets/icons/fill/LightBulb.d.ts +4 -0
  12. package/dist/src/common/assets/icons/fill/LightBulb.js +30 -0
  13. package/dist/src/common/assets/icons/fill/List.d.ts +4 -0
  14. package/dist/src/common/assets/icons/fill/List.js +30 -0
  15. package/dist/src/common/assets/icons/fill/MenuDesign.d.ts +4 -0
  16. package/dist/src/common/assets/icons/fill/MenuDesign.js +30 -0
  17. package/dist/src/common/assets/icons/fill/PostInquiry.d.ts +4 -0
  18. package/dist/src/common/assets/icons/fill/PostInquiry.js +30 -0
  19. package/dist/src/common/assets/icons/fill/ScrollingText.d.ts +4 -0
  20. package/dist/src/common/assets/icons/fill/ScrollingText.js +30 -0
  21. package/dist/src/common/assets/icons/fill/SellerPage.d.ts +4 -0
  22. package/dist/src/common/assets/icons/fill/SellerPage.js +30 -0
  23. package/dist/src/common/assets/icons/fill/Slider.d.ts +4 -0
  24. package/dist/src/common/assets/icons/fill/Slider.js +30 -0
  25. package/dist/src/common/assets/icons/fill/index.d.ts +12 -0
  26. package/dist/src/common/assets/icons/fill/index.js +24 -0
  27. package/dist/src/common/assets/icons/line/Audio.d.ts +4 -0
  28. package/dist/src/common/assets/icons/line/Audio.js +30 -0
  29. package/dist/src/common/assets/icons/line/Calendar.d.ts +4 -0
  30. package/dist/src/common/assets/icons/line/Calendar.js +30 -0
  31. package/dist/src/common/assets/icons/line/Embed.d.ts +4 -0
  32. package/dist/src/common/assets/icons/line/Embed.js +30 -0
  33. package/dist/src/common/assets/icons/line/Icon.d.ts +4 -0
  34. package/dist/src/common/assets/icons/line/Icon.js +30 -0
  35. package/dist/src/common/assets/icons/line/LightBulb.d.ts +4 -0
  36. package/dist/src/common/assets/icons/line/LightBulb.js +30 -0
  37. package/dist/src/common/assets/icons/line/List.d.ts +4 -0
  38. package/dist/src/common/assets/icons/line/List.js +30 -0
  39. package/dist/src/common/assets/icons/line/MenuDesign.d.ts +4 -0
  40. package/dist/src/common/assets/icons/line/MenuDesign.js +30 -0
  41. package/dist/src/common/assets/icons/line/ScrollingText.d.ts +4 -0
  42. package/dist/src/common/assets/icons/line/ScrollingText.js +30 -0
  43. package/dist/src/common/assets/icons/line/Slider.d.ts +4 -0
  44. package/dist/src/common/assets/icons/line/Slider.js +30 -0
  45. package/dist/src/common/assets/icons/line/index.d.ts +9 -0
  46. package/dist/src/common/assets/icons/line/index.js +18 -0
  47. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +23 -2
  48. package/dist/src/common/styles/colorSet/PaletteColor_light.json +23 -2
  49. package/dist/src/common/styles/colorSet/UIColor.json +24 -2
  50. package/dist/src/common/styles/colorSet/index.d.ts +993 -929
  51. package/dist/src/common/styles/colorSet/index.js +2 -2
  52. package/dist/src/common/styles/colorSet/ui-type.d.ts +22 -0
  53. package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
  54. package/dist/src/desktop/components/SegmentedButtonGroup/SegmentedButtonGroup.js +1 -1
  55. package/dist/src/desktop/components/Slider/Slider.d.ts +1 -1
  56. package/dist/src/desktop/components/Slider/Slider.js +21 -39
  57. package/dist/src/desktop/components/TextLabel/TextLabel.js +2 -2
  58. package/dist/src/mobile/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
  59. package/dist/src/mobile/components/SegmentedButtonGroup/SegmentedButtonGroup.js +1 -1
  60. package/dist/src/mobile/components/Slider/Slider.d.ts +1 -1
  61. package/dist/src/mobile/components/Slider/Slider.js +21 -39
  62. package/package.json +1 -1
  63. package/release-note.md +30 -8
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Audio: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Audio;
@@ -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 Audio = 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: "M17.4562,13.6734 C17.4562,14.0874 17.1212,14.4234 16.7062,14.4234 C16.2912,14.4234 15.9562,14.0874 15.9562,13.6734 L15.9562,10.3264 C15.9562,9.9124 16.2912,9.5764 16.7062,9.5764 C17.1212,9.5764 17.4562,9.9124 17.4562,10.3264 L17.4562,13.6734 Z M15.1032,15.7524 C15.1032,16.1664 14.7672,16.5024 14.3532,16.5024 C13.9392,16.5024 13.6032,16.1664 13.6032,15.7524 L13.6032,8.2464 C13.6032,7.8324 13.9392,7.4964 14.3532,7.4964 C14.7672,7.4964 15.1032,7.8324 15.1032,8.2464 L15.1032,15.7524 Z M12.7492,17.5784 C12.7492,17.9924 12.4142,18.3284 11.9992,18.3284 C11.5852,18.3284 11.2492,17.9924 11.2492,17.5784 L11.2492,6.4214 C11.2492,6.0074 11.5852,5.6714 11.9992,5.6714 C12.4142,5.6714 12.7492,6.0074 12.7492,6.4214 L12.7492,17.5784 Z M10.3972,15.7524 C10.3972,16.1664 10.0612,16.5024 9.6472,16.5024 C9.2322,16.5024 8.8972,16.1664 8.8972,15.7524 L8.8972,8.2464 C8.8972,7.8324 9.2322,7.4964 9.6472,7.4964 C10.0612,7.4964 10.3972,7.8324 10.3972,8.2464 L10.3972,15.7524 Z M8.0432,13.6734 C8.0432,14.0874 7.7082,14.4234 7.2932,14.4234 C6.8792,14.4234 6.5432,14.0874 6.5432,13.6734 L6.5432,10.3264 C6.5432,9.9124 6.8792,9.5764 7.2932,9.5764 C7.7082,9.5764 8.0432,9.9124 8.0432,10.3264 L8.0432,13.6734 Z M17.2502,3.2504 L6.7502,3.2504 C4.8172,3.2504 3.2502,4.8174 3.2502,6.7504 L3.2502,17.2504 C3.2502,19.1834 4.8172,20.7504 6.7502,20.7504 L17.2502,20.7504 C19.1832,20.7504 20.7502,19.1834 20.7502,17.2504 L20.7502,6.7504 C20.7502,4.8174 19.1832,3.2504 17.2502,3.2504 L17.2502,3.2504 Z" }, void 0) }), void 0));
29
+ };
30
+ exports.default = Audio;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Calendar: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Calendar;
@@ -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 Calendar = 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: "M21,7.7688 L21,7.1078 C21,5.2718 19.511,3.7818 17.674,3.7818 L6.326,3.7818 C4.489,3.7818 3,5.2718 3,7.1078 L3,7.7688 L21,7.7688 Z M17.2796,12.6909 C16.6716,12.6909 16.1796,12.1979 16.1796,11.5909 C16.1796,10.9829 16.6716,10.4899 17.2796,10.4899 C17.8876,10.4899 18.3796,10.9829 18.3796,11.5909 C18.3796,12.1979 17.8876,12.6909 17.2796,12.6909 L17.2796,12.6909 Z M17.2796,15.6699 C16.6716,15.6699 16.1796,15.1769 16.1796,14.5699 C16.1796,13.9619 16.6716,13.4689 17.2796,13.4689 C17.8876,13.4689 18.3796,13.9619 18.3796,14.5699 C18.3796,15.1769 17.8876,15.6699 17.2796,15.6699 L17.2796,15.6699 Z M13.8046,12.6909 C13.1966,12.6909 12.7036,12.1979 12.7036,11.5909 C12.7036,10.9829 13.1966,10.4899 13.8046,10.4899 C14.4116,10.4899 14.9046,10.9829 14.9046,11.5909 C14.9046,12.1979 14.4116,12.6909 13.8046,12.6909 L13.8046,12.6909 Z M13.8046,15.6699 C13.1966,15.6699 12.7036,15.1769 12.7036,14.5699 C12.7036,13.9619 13.1966,13.4689 13.8046,13.4689 C14.4116,13.4689 14.9046,13.9619 14.9046,14.5699 C14.9046,15.1769 14.4116,15.6699 13.8046,15.6699 L13.8046,15.6699 Z M10.3296,12.6909 C9.7216,12.6909 9.2296,12.1979 9.2296,11.5909 C9.2296,10.9829 9.7216,10.4899 10.3296,10.4899 C10.9376,10.4899 11.4296,10.9829 11.4296,11.5909 C11.4296,12.1979 10.9376,12.6909 10.3296,12.6909 L10.3296,12.6909 Z M10.3296,15.6699 C9.7216,15.6699 9.2296,15.1769 9.2296,14.5699 C9.2296,13.9619 9.7216,13.4689 10.3296,13.4689 C10.9376,13.4689 11.4296,13.9619 11.4296,14.5699 C11.4296,15.1769 10.9376,15.6699 10.3296,15.6699 L10.3296,15.6699 Z M10.3296,18.6479 C9.7216,18.6479 9.2296,18.1559 9.2296,17.5479 C9.2296,16.9399 9.7216,16.4479 10.3296,16.4479 C10.9376,16.4479 11.4296,16.9399 11.4296,17.5479 C11.4296,18.1559 10.9376,18.6479 10.3296,18.6479 L10.3296,18.6479 Z M6.8546,15.6699 C6.2466,15.6699 5.7546,15.1769 5.7546,14.5699 C5.7546,13.9619 6.2466,13.4689 6.8546,13.4689 C7.4616,13.4689 7.9546,13.9619 7.9546,14.5699 C7.9546,15.1769 7.4616,15.6699 6.8546,15.6699 L6.8546,15.6699 Z M6.8546,18.6479 C6.2466,18.6479 5.7546,18.1559 5.7546,17.5479 C5.7546,16.9399 6.2466,16.4479 6.8546,16.4479 C7.4616,16.4479 7.9546,16.9399 7.9546,17.5479 C7.9546,18.1559 7.4616,18.6479 6.8546,18.6479 L6.8546,18.6479 Z M2.9996,8.9209 L2.9996,16.8919 C2.9996,18.7289 4.4896,20.2179 6.3256,20.2179 L17.6736,20.2179 C19.5106,20.2179 20.9996,18.7289 20.9996,16.8919 L20.9996,8.9209 L2.9996,8.9209 Z" }, void 0) }), void 0));
29
+ };
30
+ exports.default = Calendar;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Embed: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Embed;
@@ -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 Embed = 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: "M17.8397,12.1881 C17.8397,12.4451 17.6897,12.6831 17.4587,12.7961 L14.6357,14.1601 C14.5417,14.2051 14.4427,14.2271 14.3417,14.2271 C14.2167,14.2271 14.0927,14.1921 13.9837,14.1251 C13.7837,13.9981 13.6657,13.7841 13.6657,13.5501 C13.6657,13.2441 13.8207,13.0021 14.0627,12.8941 L15.7927,12.1041 L14.0607,11.3141 C13.8207,11.2041 13.6657,10.9621 13.6657,10.6981 C13.6657,10.4171 13.7837,10.2041 13.9817,10.0791 C14.1827,9.9541 14.4267,9.9391 14.6367,10.0421 L17.4587,11.4121 C17.6897,11.5231 17.8397,11.7621 17.8397,12.0201 L17.8397,12.1881 Z M13.4237,9.2851 L11.8697,15.0661 C11.7907,15.3611 11.5217,15.5671 11.2157,15.5671 C11.0037,15.5671 10.8077,15.4701 10.6787,15.3011 C10.5507,15.1351 10.5077,14.9211 10.5627,14.7151 L12.1167,8.9351 C12.1957,8.6391 12.4647,8.4331 12.7697,8.4331 C12.9827,8.4331 13.1777,8.5301 13.3067,8.6981 C13.4357,8.8671 13.4787,9.0811 13.4237,9.2851 L13.4237,9.2851 Z M9.9387,12.8941 C10.1787,13.0021 10.3347,13.2441 10.3347,13.5091 C10.3347,13.7841 10.2157,13.9981 10.0177,14.1231 C9.9077,14.1921 9.7837,14.2271 9.6587,14.2271 C9.5567,14.2271 9.4587,14.2051 9.3647,14.1601 L6.5437,12.7971 C6.3107,12.6841 6.1607,12.4451 6.1607,12.1881 L6.1607,12.0201 C6.1607,11.7611 6.3107,11.5231 6.5427,11.4111 L9.3627,10.0421 C9.5727,9.9401 9.8177,9.9531 10.0167,10.0781 L10.0177,10.0791 C10.2157,10.2041 10.3347,10.4171 10.3347,10.6511 C10.3347,10.9621 10.1787,11.2041 9.9387,11.3141 L8.2017,12.1041 L9.9387,12.8941 Z M17.2497,3.2501 L6.7497,3.2501 C4.8177,3.2501 3.2497,4.8171 3.2497,6.7501 L3.2497,17.2501 C3.2497,19.1831 4.8177,20.7501 6.7497,20.7501 L17.2497,20.7501 C19.1827,20.7501 20.7497,19.1831 20.7497,17.2501 L20.7497,6.7501 C20.7497,4.8171 19.1827,3.2501 17.2497,3.2501 L17.2497,3.2501 Z" }, void 0) }), void 0));
29
+ };
30
+ exports.default = Embed;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Icon: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Icon;
@@ -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 Icon = 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: "M21.1463,9.733 C20.9183,9.036 20.3633,8.496 19.6603,8.289 L16.2413,7.28 C16.0823,7.233 15.9433,7.132 15.8493,6.996 L13.8343,4.055 C13.4183,3.45 12.7333,3.088 12.0003,3.088 C11.2663,3.088 10.5813,3.45 10.1663,4.055 L8.1513,6.995 C8.0573,7.132 7.9173,7.233 7.7583,7.28 L4.3393,8.289 C3.6363,8.496 3.0813,9.036 2.8543,9.733 C2.6263,10.43 2.7583,11.195 3.2063,11.777 L5.3793,14.602 C5.4803,14.734 5.5343,14.897 5.5293,15.063 L5.4313,18.627 C5.4113,19.36 5.7533,20.055 6.3463,20.486 C6.7323,20.766 7.1903,20.911 7.6543,20.911 C7.9043,20.911 8.1563,20.869 8.3983,20.783 L11.7563,19.588 C11.9133,19.532 12.0853,19.532 12.2423,19.588 L15.6013,20.783 C16.2923,21.029 17.0593,20.918 17.6533,20.486 C18.2463,20.055 18.5883,19.36 18.5683,18.627 L18.4703,15.063 C18.4653,14.898 18.5193,14.734 18.6203,14.602 L20.7943,11.777 C21.2423,11.195 21.3733,10.43 21.1463,9.733" }, void 0) }), void 0));
29
+ };
30
+ exports.default = Icon;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Information: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Information;
@@ -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 Information = 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: "M12.0001,9.6019 C11.3101,9.6019 10.7501,9.0419 10.7501,8.3519 C10.7501,7.6619 11.3101,7.1029 12.0001,7.1029 C12.6901,7.1029 13.2501,7.6619 13.2501,8.3519 C13.2501,9.0419 12.6901,9.6019 12.0001,9.6019 L12.0001,9.6019 Z M12.9981,16.2729 C12.9981,16.8239 12.5511,17.2709 12.0001,17.2709 C11.4501,17.2709 11.0031,16.8239 11.0031,16.2729 L11.0031,11.6859 C11.0031,11.1349 11.4501,10.6879 12.0001,10.6879 C12.5511,10.6879 12.9981,11.1349 12.9981,11.6859 L12.9981,16.2729 Z M12.0001,1.9999 C6.4771,1.9999 2.0001,6.4769 2.0001,11.9999 C2.0001,17.5229 6.4771,21.9999 12.0001,21.9999 C17.5231,21.9999 22.0001,17.5229 22.0001,11.9999 C22.0001,6.4769 17.5231,1.9999 12.0001,1.9999 L12.0001,1.9999 Z" }, void 0) }), void 0));
29
+ };
30
+ exports.default = Information;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const LightBulb: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default LightBulb;
@@ -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 LightBulb = 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: "M17.3455,3.753 C15.8015,2.279 13.7735,1.517 11.6355,1.62 C7.7015,1.8 4.4655,5.023 4.2695,8.956 C4.1785,10.764 4.6955,12.486 5.7635,13.936 C6.2065,14.536 6.5095,15.111 6.6905,15.693 C6.7905,16.013 6.9205,16.326 7.0765,16.623 C7.2065,16.87 7.4615,17.024 7.7405,17.024 L7.7415,17.024 L11.2495,17.019 L11.2495,11.559 L9.5965,11.559 C9.1815,11.559 8.8465,11.223 8.8465,10.809 C8.8465,10.395 9.1815,10.059 9.5965,10.059 L14.4045,10.059 C14.8185,10.059 15.1545,10.395 15.1545,10.809 C15.1545,11.223 14.8185,11.559 14.4045,11.559 L12.7495,11.559 L12.7495,17.017 L16.2665,17.012 C16.5455,17.012 16.8015,16.857 16.9305,16.61 C17.0775,16.327 17.2025,16.029 17.2995,15.725 C17.5005,15.092 17.7925,14.521 18.1665,14.028 C19.1965,12.674 19.7415,11.057 19.7415,9.352 C19.7415,7.217 18.8905,5.229 17.3455,3.753" }, void 0), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M8.3788,18.8647 L15.6208,18.8647 M9.3794,21.3113 L14.6204,21.3113" }, void 0)] }), void 0) }), void 0));
29
+ };
30
+ exports.default = LightBulb;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const List: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default List;
@@ -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 List = 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.2679,8.6949 L10.7789,8.6949 C10.3649,8.6949 10.0289,8.3589 10.0289,7.9449 C10.0289,7.5309 10.3649,7.1949 10.7789,7.1949 L16.2679,7.1949 C16.6819,7.1949 17.0179,7.5309 17.0179,7.9449 C17.0179,8.3589 16.6819,8.6949 16.2679,8.6949 M16.2679,12.7499 L10.7789,12.7499 C10.3649,12.7499 10.0289,12.4139 10.0289,11.9999 C10.0289,11.5859 10.3649,11.2499 10.7789,11.2499 L16.2679,11.2499 C16.6819,11.2499 17.0179,11.5859 17.0179,11.9999 C17.0179,12.4139 16.6819,12.7499 16.2679,12.7499 M16.2679,16.8039 L10.7789,16.8039 C10.3649,16.8039 10.0289,16.4679 10.0289,16.0539 C10.0289,15.6399 10.3649,15.3039 10.7789,15.3039 L16.2679,15.3039 C16.6819,15.3039 17.0179,15.6399 17.0179,16.0539 C17.0179,16.4679 16.6819,16.8039 16.2679,16.8039 M8.5599,8.2329 C8.5199,8.3239 8.4699,8.4039 8.3999,8.4729 C8.3199,8.5439 8.2399,8.6029 8.1499,8.6329 C8.0599,8.6739 7.9699,8.6929 7.8699,8.6929 C7.7699,8.6929 7.6699,8.6739 7.5799,8.6329 C7.4899,8.6029 7.3999,8.5439 7.3299,8.4729 C7.2599,8.4039 7.2099,8.3239 7.1699,8.2329 C7.1299,8.1429 7.1199,8.0439 7.1199,7.9429 C7.1199,7.7439 7.1999,7.5529 7.3299,7.4139 C7.3999,7.3429 7.4899,7.2939 7.5799,7.2539 C7.8499,7.1429 8.1799,7.2039 8.3999,7.4139 C8.5399,7.5529 8.6199,7.7539 8.6199,7.9429 C8.6199,8.0439 8.5999,8.1429 8.5599,8.2329 M7.1099,12.0039 C7.1099,11.9039 7.1299,11.8029 7.1699,11.7139 C7.2099,11.6239 7.2599,11.5339 7.3299,11.4729 C7.3999,11.4039 7.4899,11.3429 7.5799,11.3029 C7.7599,11.2329 7.9699,11.2329 8.1499,11.3029 C8.2399,11.3429 8.3299,11.4039 8.3899,11.4729 C8.4599,11.5339 8.5199,11.6239 8.5599,11.7139 C8.5999,11.8029 8.6099,11.9039 8.6099,12.0039 C8.6099,12.1029 8.5999,12.1929 8.5599,12.2839 C8.5199,12.3739 8.4699,12.4539 8.3899,12.5229 C8.2499,12.6739 8.0699,12.7539 7.8599,12.7539 C7.6599,12.7539 7.4699,12.6739 7.3299,12.5229 C7.1899,12.3829 7.1099,12.2039 7.1099,12.0039 M8.3899,16.5839 C8.3299,16.6539 8.2399,16.7139 8.1499,16.7439 C8.0599,16.7839 7.9699,16.8029 7.8699,16.8029 C7.6599,16.8029 7.4699,16.7229 7.3399,16.5839 C7.1899,16.4429 7.1099,16.2539 7.1099,16.0529 C7.1099,15.9539 7.1299,15.8529 7.1699,15.7629 C7.2099,15.6739 7.2599,15.5929 7.3399,15.5229 C7.3999,15.4539 7.4899,15.4039 7.5799,15.3639 C7.7599,15.2839 7.9699,15.2839 8.1499,15.3639 C8.2399,15.4039 8.3299,15.4539 8.3899,15.5229 C8.4699,15.5929 8.5199,15.6739 8.5599,15.7629 C8.5999,15.8529 8.6199,15.9539 8.6199,16.0529 C8.6199,16.2539 8.5399,16.4429 8.3899,16.5839 M17.2499,3.2499 L6.7499,3.2499 C4.8169,3.2499 3.2499,4.8169 3.2499,6.7499 L3.2499,17.2499 C3.2499,19.1829 4.8169,20.7499 6.7499,20.7499 L17.2499,20.7499 C19.1829,20.7499 20.7499,19.1829 20.7499,17.2499 L20.7499,6.7499 C20.7499,4.8169 19.1829,3.2499 17.2499,3.2499" }, void 0) }), void 0));
29
+ };
30
+ exports.default = List;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const MenuDesign: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default MenuDesign;
@@ -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 MenuDesign = 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: "M13.9586,13.5533 C13.6166,13.5533 13.3396,13.2763 13.3396,12.9343 C13.3396,12.5923 13.6166,12.3153 13.9586,12.3153 C14.3006,12.3153 14.5776,12.5923 14.5776,12.9343 C14.5776,13.2763 14.3006,13.5533 13.9586,13.5533 M13.9586,15.4723 C13.6166,15.4723 13.3396,15.1953 13.3396,14.8533 C13.3396,14.5113 13.6166,14.2343 13.9586,14.2343 C14.3006,14.2343 14.5776,14.5113 14.5776,14.8533 C14.5776,15.1953 14.3006,15.4723 13.9586,15.4723 M12.3326,12.4653 C11.8976,12.4653 11.5446,12.1123 11.5446,11.6763 C11.5446,11.2413 11.8976,10.8873 12.3326,10.8873 C12.7686,10.8873 13.1216,11.2413 13.1216,11.6763 C13.1216,12.1123 12.7686,12.4653 12.3326,12.4653 M10.2586,13.0403 C9.8586,13.0403 9.5336,12.7153 9.5336,12.3153 C9.5336,11.9143 9.8586,11.5893 10.2586,11.5893 C10.6596,11.5893 10.9846,11.9143 10.9846,12.3153 C10.9846,12.7153 10.6596,13.0403 10.2586,13.0403 M15.0436,10.6083 C14.1766,9.7443 12.9806,9.2943 11.7506,9.3563 C9.7716,9.4683 8.0906,10.9713 7.7526,12.9293 C7.7056,13.2043 7.6856,13.4843 7.6916,13.7623 C7.7066,14.3923 8.2106,14.8853 8.8376,14.8853 L8.9896,14.8853 C9.9736,14.8853 10.7746,15.6853 10.7746,16.6693 L10.7746,16.8223 C10.7746,17.4493 11.2676,17.9523 11.8976,17.9683 C11.9316,17.9693 11.9666,17.9693 12.0006,17.9693 C12.2446,17.9693 12.4916,17.9473 12.7346,17.9053 C14.6956,17.5663 16.1966,15.8803 16.3036,13.8973 C16.3696,12.6713 15.9106,11.4723 15.0436,10.6083 M21.5176,7.2035 C21.5166,5.1375 19.8346,3.4555 17.7676,3.4555 L6.2316,3.4555 C4.1636,3.4555 2.4816,5.1385 2.4816,7.2055 L2.4816,8.1845 C2.4816,8.5985 2.8176,8.9345 3.2316,8.9345 C3.5726,8.9345 3.8496,8.7025 3.9396,8.3905 L20.0596,8.3905 C20.1506,8.7025 20.4266,8.9345 20.7676,8.9345 C21.1826,8.9345 21.5176,8.5985 21.5176,8.1845 L21.5176,7.9575 L21.5176,7.9555 L21.5176,7.2055 C21.5176,7.2045 21.5176,7.2045 21.5176,7.2035 M8.7485,19.0438 L7.2445,19.0438 C6.8295,19.0438 6.4945,19.3798 6.4945,19.7938 C6.4945,20.2078 6.8295,20.5438 7.2445,20.5438 L8.7485,20.5438 C9.1635,20.5438 9.4985,20.2078 9.4985,19.7938 C9.4985,19.3798 9.1635,19.0438 8.7485,19.0438 M12.7612,19.0438 L11.2572,19.0438 C10.8422,19.0438 10.5072,19.3798 10.5072,19.7938 C10.5072,20.2078 10.8422,20.5438 11.2572,20.5438 L12.7612,20.5438 C13.1762,20.5438 13.5112,20.2078 13.5112,19.7938 C13.5112,19.3798 13.1762,19.0438 12.7612,19.0438 M3.9819,15.9999 L3.9819,14.4949 C3.9819,14.0809 3.6459,13.7449 3.2319,13.7449 C2.8179,13.7449 2.4819,14.0809 2.4819,14.4949 L2.4819,15.9999 C2.4819,16.4139 2.8179,16.7499 3.2319,16.7499 C3.6459,16.7499 3.9819,16.4139 3.9819,15.9999 M3.2319,12.7372 C3.6459,12.7372 3.9819,12.4012 3.9819,11.9872 L3.9819,10.4822 C3.9819,10.0682 3.6459,9.7322 3.2319,9.7322 C2.8179,9.7322 2.4819,10.0682 2.4819,10.4822 L2.4819,11.9872 C2.4819,12.4012 2.8179,12.7372 3.2319,12.7372 M5.1562,18.7714 C4.8252,18.5904 4.5422,18.3274 4.3382,18.0094 C4.1142,17.6624 3.6512,17.5594 3.3022,17.7844 C2.9532,18.0074 2.8522,18.4714 3.0762,18.8204 C3.4162,19.3494 3.8872,19.7884 4.4392,20.0874 C4.5522,20.1504 4.6762,20.1794 4.7972,20.1794 C5.0632,20.1794 5.3202,20.0384 5.4562,19.7884 C5.6542,19.4244 5.5202,18.9684 5.1562,18.7714 M20.7681,13.7264 C20.3541,13.7264 20.0181,14.0624 20.0181,14.4764 L20.0181,15.9814 C20.0181,16.3954 20.3541,16.7314 20.7681,16.7314 C21.1821,16.7314 21.5181,16.3954 21.5181,15.9814 L21.5181,14.4764 C21.5181,14.0624 21.1821,13.7264 20.7681,13.7264 M20.7681,9.7137 C20.3541,9.7137 20.0181,10.0497 20.0181,10.4637 L20.0181,11.9687 C20.0181,12.3827 20.3541,12.7187 20.7681,12.7187 C21.1821,12.7187 21.5181,12.3827 21.5181,11.9687 L21.5181,10.4637 C21.5181,10.0497 21.1821,9.7137 20.7681,9.7137 M20.7041,17.7665 C20.3541,17.5435 19.8911,17.6465 19.6691,17.9975 C19.4661,18.3175 19.1851,18.5815 18.8551,18.7645 C18.4931,18.9645 18.3621,19.4215 18.5621,19.7845 C18.6991,20.0315 18.9541,20.1705 19.2191,20.1705 C19.3421,20.1705 19.4661,20.1405 19.5811,20.0775 C20.1301,19.7735 20.5991,19.3315 20.9351,18.8005 C21.1581,18.4515 21.0541,17.9885 20.7041,17.7665 M16.7739,19.0438 L15.2699,19.0438 C14.8549,19.0438 14.5199,19.3798 14.5199,19.7938 C14.5199,20.2078 14.8549,20.5438 15.2699,20.5438 L16.7739,20.5438 C17.1889,20.5438 17.5239,20.2078 17.5239,19.7938 C17.5239,19.3798 17.1889,19.0438 16.7739,19.0438" }, void 0) }), void 0));
29
+ };
30
+ exports.default = MenuDesign;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const PostInquiry: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default PostInquiry;
@@ -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 PostInquiry = 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: "M14.4622,10.777 C14.3322,11.069 14.1242,11.367 13.8372,11.672 L13.1602,12.36 C12.9682,12.562 12.8502,12.786 12.7602,13.281 C12.6662,13.798 12.3662,14.105 11.8852,14.105 C11.3722,14.105 11.0282,13.732 11.0182,13.219 C11.0142,12.981 11.0252,12.735 11.1722,12.335 C11.2902,12.012 11.4852,11.728 11.7762,11.363 C12.0222,11.055 12.2882,10.853 12.4392,10.632 C12.5902,10.411 12.6662,10.168 12.6662,9.902 C12.6662,9.254 12.4312,9.001 11.9792,8.936 C11.7452,8.902 11.4992,8.978 11.3632,9.173 C11.2522,9.332 11.2392,9.416 11.1922,9.544 C11.0582,9.91 10.7322,10.13 10.3352,10.13 L10.2762,10.13 C9.5762,10.13 9.2022,9.439 9.3932,8.765 C9.4802,8.459 9.5842,8.25 9.8512,7.974 C10.3242,7.483 11.0202,7.167 11.8992,7.167 C12.7752,7.167 13.4542,7.478 13.9352,7.919 C14.4162,8.362 14.6562,8.99 14.6562,9.805 C14.6562,10.161 14.5912,10.485 14.4622,10.777 M12.5982,16.528 C12.3882,16.732 12.1262,16.833 11.8122,16.833 C11.4982,16.833 11.2352,16.732 11.0252,16.528 C10.8152,16.324 10.7112,16.063 10.7112,15.746 C10.7112,15.428 10.8152,15.168 11.0252,14.964 C11.2352,14.76 11.4982,14.658 11.8122,14.658 C12.1262,14.658 12.3882,14.76 12.5982,14.964 C12.8082,15.168 12.9132,15.428 12.9132,15.746 C12.9132,16.063 12.8082,16.324 12.5982,16.528 M19.4522,5.226 C17.2432,2.811 14.1002,1.654 10.8282,2.06 C6.5022,2.592 2.9782,5.967 2.2592,10.266 C1.8892,12.48 2.2442,14.669 3.2852,16.623 L2.1102,19.253 C1.7752,20.004 1.9352,20.865 2.5202,21.445 C2.8982,21.82 3.3912,22.017 3.8962,22.017 C4.1712,22.017 4.4502,21.957 4.7152,21.837 L7.2662,20.673 C9.5002,21.914 12.1002,22.246 14.6332,21.608 C18.2262,20.699 21.0502,17.775 21.8272,14.159 C22.5272,10.899 21.6622,7.643 19.4522,5.226" }, void 0) }), void 0));
29
+ };
30
+ exports.default = PostInquiry;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const ScrollingText: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default ScrollingText;
@@ -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 ScrollingText = 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: "none", stroke: color, strokeLinecap: "round", strokeWidth: "1.5", d: "M4,4.0043 L20,4.0043 M4,20.0048 L20,20.0048 M13.7427,8.9154 L19.8137,8.9154 M16.7782,8.9154 L16.7782,15.9864 M3.9181,8.9154 L9.9891,8.9154 M6.9536,8.9154 L6.9536,15.9864" }, void 0) }), void 0));
29
+ };
30
+ exports.default = ScrollingText;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const SellerPage: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default SellerPage;
@@ -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 SellerPage = 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: "M9.195,12.8463 L4.5195,12.8463 C3.87,12.8463 3.381,13.0113 3.0525,13.3443 C2.7255,13.6743 2.5605,14.1753 2.5605,14.8458 L2.5605,19.4403 C2.5605,20.1168 2.7255,20.6193 3.0525,20.9463 C3.381,21.2748 3.87,21.4398 4.5195,21.4398 L9.195,21.4398 C9.846,21.4398 10.3335,21.2748 10.662,20.9463 C10.989,20.6193 11.154,20.1168 11.154,19.4403 L11.154,14.8458 C11.154,14.1753 10.989,13.6743 10.662,13.3443 C10.3335,13.0113 9.846,12.8463 9.195,12.8463 M19.479,12.8463 L14.814,12.8463 C14.1585,12.8463 13.665,13.0113 13.338,13.3443 C13.0095,13.6743 12.846,14.1753 12.846,14.8458 L12.846,19.4403 C12.846,20.1168 13.0095,20.6193 13.338,20.9463 C13.665,21.2748 14.1585,21.4398 14.814,21.4398 L19.479,21.4398 C20.13,21.4398 20.6175,21.2748 20.946,20.9463 C21.2745,20.6193 21.438,20.1168 21.438,19.4403 L21.438,14.8458 C21.438,14.1753 21.2745,13.6743 20.946,13.3443 C20.6175,13.0113 20.13,12.8463 19.479,12.8463 M9.195,2.5623 L4.5195,2.5623 C3.87,2.5623 3.381,2.7258 3.0525,3.0543 C2.7255,3.3813 2.5605,3.8838 2.5605,4.5618 L2.5605,9.1443 C2.5605,9.8208 2.7255,10.3248 3.0525,10.6578 C3.381,10.9878 3.87,11.1543 4.5195,11.1543 L9.195,11.1543 C9.846,11.1543 10.3335,10.9878 10.662,10.6578 C10.989,10.3248 11.154,9.8208 11.154,9.1443 L11.154,4.5618 C11.154,3.8838 10.989,3.3813 10.662,3.0543 C10.3335,2.7258 9.846,2.5623 9.195,2.5623 M19.479,2.5623 L14.814,2.5623 C14.1585,2.5623 13.665,2.7258 13.338,3.0543 C13.0095,3.3813 12.846,3.8838 12.846,4.5618 L12.846,9.1443 C12.846,9.8208 13.0095,10.3248 13.338,10.6578 C13.665,10.9878 14.1585,11.1543 14.814,11.1543 L19.479,11.1543 C20.13,11.1543 20.6175,10.9878 20.946,10.6578 C21.2745,10.3248 21.438,9.8208 21.438,9.1443 L21.438,4.5618 C21.438,3.8838 21.2745,3.3813 20.946,3.0543 C20.6175,2.7258 20.13,2.5623 19.479,2.5623" }, void 0) }), void 0));
29
+ };
30
+ exports.default = SellerPage;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Slider: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Slider;
@@ -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 Slider = 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: "M2.4588,11.9792 L3.5908,10.7522 C3.8718,10.4482 3.8528,9.9732 3.5488,9.6932 C3.2448,9.4122 2.7708,9.4312 2.4888,9.7352 L0.8868,11.4702 C0.6218,11.7572 0.6218,12.2012 0.8868,12.4882 L2.5268,14.2642 C2.6748,14.4242 2.8768,14.5052 3.0788,14.5052 C3.2608,14.5052 3.4428,14.4402 3.5868,14.3062 C3.8918,14.0262 3.9108,13.5512 3.6298,13.2472 L2.4588,11.9792 Z M23.1131,11.4704 L21.5111,9.7354 C21.2301,9.4304 20.7561,9.4104 20.4511,9.6934 C20.1471,9.9734 20.1281,10.4484 20.4091,10.7524 L21.5411,11.9794 L20.3701,13.2464 C20.0901,13.5514 20.1091,14.0264 20.4131,14.3064 C20.5571,14.4404 20.7391,14.5054 20.9221,14.5054 C21.1231,14.5054 21.3251,14.4244 21.4731,14.2644 L23.1131,12.4884 C23.3781,12.2004 23.3781,11.7574 23.1131,11.4704 M16.7112,6.821 L7.2892,6.821 C5.7912,6.821 4.5732,8.04 4.5732,9.537 L4.5732,14.464 C4.5732,15.961 5.7912,17.179 7.2892,17.179 L16.7112,17.179 C18.2092,17.179 19.4272,15.961 19.4272,14.464 L19.4272,9.537 C19.4272,8.04 18.2092,6.821 16.7112,6.821" }, void 0) }), void 0));
29
+ };
30
+ exports.default = Slider;
@@ -9,10 +9,12 @@ declare const fillIcons: {
9
9
  readonly ic_align_top: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
10
10
  readonly ic_arrow_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
11
11
  readonly ic_arrow_up: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
12
+ readonly ic_audio: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
12
13
  readonly ic_bell: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
13
14
  readonly ic_bell_notification: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
14
15
  readonly ic_bookmark: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
15
16
  readonly ic_button: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
17
+ readonly ic_calendar: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
16
18
  readonly ic_call: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
17
19
  readonly ic_call_end: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
18
20
  readonly ic_camera: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
@@ -36,23 +38,29 @@ declare const fillIcons: {
36
38
  readonly ic_edit: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
37
39
  readonly ic_editor_left_side: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
38
40
  readonly ic_editor_right_side: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
41
+ readonly ic_embed: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
39
42
  readonly ic_eye: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
40
43
  readonly ic_eye_close: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
41
44
  readonly ic_face: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
42
45
  readonly ic_heart: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
43
46
  readonly ic_help_window: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
47
+ readonly ic_icon: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
44
48
  readonly ic_image: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
49
+ readonly ic_information: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
45
50
  readonly ic_item: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
46
51
  readonly ic_layer_backward: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
47
52
  readonly ic_layer_forward: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
48
53
  readonly ic_layout: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
54
+ readonly ic_light_bulb: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
49
55
  readonly ic_lightning: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
50
56
  readonly ic_links: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
57
+ readonly ic_list: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
51
58
  readonly ic_live: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
52
59
  readonly ic_login: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
53
60
  readonly ic_logo_insta: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
54
61
  readonly ic_logo_twitter: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
55
62
  readonly ic_logo_yt: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
63
+ readonly ic_menu_design: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
56
64
  readonly ic_mic_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
57
65
  readonly ic_mic_on: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
58
66
  readonly ic_moon: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
@@ -64,13 +72,17 @@ declare const fillIcons: {
64
72
  readonly ic_pin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
65
73
  readonly ic_plus_round: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
66
74
  readonly ic_post_free: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
75
+ readonly ic_post_inquiry: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
67
76
  readonly ic_post_notice: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
68
77
  readonly ic_post_social: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
69
78
  readonly ic_question: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
70
79
  readonly ic_reply: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
71
80
  readonly ic_richtext: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
81
+ readonly ic_scrolling_text: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
82
+ readonly ic_seller_page: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
72
83
  readonly ic_setting: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
73
84
  readonly ic_shape: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
85
+ readonly ic_slider: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
74
86
  readonly ic_speaker_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
75
87
  readonly ic_speaker_wave_1: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
76
88
  readonly ic_speaker_wave_2: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;