@liner-fe/design-token 2.0.5 → 2.0.7

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 (41) hide show
  1. package/README.md +5 -1
  2. package/lib/assets/ic-bold-16-quote-up.d.ts +2 -0
  3. package/lib/assets/ic-color-24-excel.d.ts +2 -0
  4. package/lib/assets/ic-color-24-html.d.ts +2 -0
  5. package/lib/assets/ic-color-24-pdf.d.ts +2 -0
  6. package/lib/assets/ic-color-24-ppt.d.ts +2 -0
  7. package/lib/assets/ic-color-24-text.d.ts +2 -0
  8. package/lib/assets/ic-color-24-word.d.ts +2 -0
  9. package/lib/assets/ic-line-24-select-text.d.ts +2 -0
  10. package/lib/assets/index.d.ts +12 -7
  11. package/lib/color.d.ts +7 -1
  12. package/lib/index.cjs +247 -117
  13. package/lib/index.cjs.map +4 -4
  14. package/lib/index.d.ts +1 -0
  15. package/lib/index.mjs +247 -117
  16. package/lib/index.mjs.map +4 -4
  17. package/lib/typography.d.ts +26 -0
  18. package/package.json +2 -1
  19. package/src/assets/ic-bold-16-android.tsx +3 -3
  20. package/src/assets/ic-bold-16-apple.tsx +2 -2
  21. package/src/assets/ic-bold-16-chrome.tsx +3 -3
  22. package/src/assets/ic-bold-16-quote-up.tsx +14 -0
  23. package/src/assets/ic-color-24-excel.tsx +11 -0
  24. package/src/assets/ic-color-24-html.tsx +25 -0
  25. package/src/assets/ic-color-24-pdf.tsx +16 -0
  26. package/src/assets/ic-color-24-ppt.tsx +11 -0
  27. package/src/assets/ic-color-24-text.tsx +25 -0
  28. package/src/assets/ic-color-24-word.tsx +13 -0
  29. package/src/assets/ic-line-16-mobile.tsx +2 -2
  30. package/src/assets/ic-line-24-select-text.tsx +21 -0
  31. package/src/assets/index.ts +12 -7
  32. package/src/color.ts +7 -1
  33. package/src/custom.d.ts +4 -0
  34. package/src/index.ts +1 -0
  35. package/src/typography.ts +50 -0
  36. package/lib/assets/ic-line-24-arrow-left.d.ts +0 -2
  37. package/lib/assets/ic-line-24-close.d.ts +0 -2
  38. package/lib/assets/ic-line-24-menu.d.ts +0 -2
  39. package/src/assets/ic-line-24-arrow-left.tsx +0 -12
  40. package/src/assets/ic-line-24-close.tsx +0 -12
  41. package/src/assets/ic-line-24-menu.tsx +0 -24
package/lib/index.mjs CHANGED
@@ -2,109 +2,171 @@ var __defProp = Object.defineProperty;
2
2
  var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
3
 
4
4
  // src/color.ts
5
- var color = {};
5
+ var color = {
6
+ blue100: "#05A0F5",
7
+ red: "#FF4D4D",
8
+ blue95: "#048FDB",
9
+ blue10: "#ECF5FF",
10
+ blue15: "#E2F1FF"
11
+ };
6
12
 
7
- // src/assets/ic-line-24-menu.tsx
13
+ // src/assets/ic-bold-24-globe.tsx
8
14
  import React from "react";
9
- var ICLine24Menu = /* @__PURE__ */ __name(() => /* @__PURE__ */ React.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React.createElement(
15
+ var ICBold24Globe = /* @__PURE__ */ __name(() => /* @__PURE__ */ React.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React.createElement(
10
16
  "path",
11
17
  {
12
- "fill-rule": "evenodd",
13
- "clip-rule": "evenodd",
14
- d: "M3.25 6C3.25 5.58579 3.58579 5.25 4 5.25H20C20.4142 5.25 20.75 5.58579 20.75 6C20.75 6.41421 20.4142 6.75 20 6.75H4C3.58579 6.75 3.25 6.41421 3.25 6Z",
18
+ d: "M7.65 20.91C7.62 20.91 7.58 20.93 7.55 20.93C5.61 19.97 4.03 18.38 3.06 16.44C3.06 16.41 3.08 16.37 3.08 16.34C4.3 16.7 5.56 16.97 6.81 17.18C7.03 18.44 7.29 19.69 7.65 20.91Z",
15
19
  fill: "black"
16
20
  }
17
21
  ), /* @__PURE__ */ React.createElement(
18
22
  "path",
19
23
  {
20
- "fill-rule": "evenodd",
21
- "clip-rule": "evenodd",
22
- d: "M3.25 12C3.25 11.5858 3.58579 11.25 4 11.25H20C20.4142 11.25 20.75 11.5858 20.75 12C20.75 12.4142 20.4142 12.75 20 12.75H4C3.58579 12.75 3.25 12.4142 3.25 12Z",
24
+ d: "M20.94 16.45C19.95 18.44 18.3 20.05 16.29 21.02C16.67 19.75 16.99 18.47 17.2 17.18C18.46 16.97 19.7 16.7 20.92 16.34C20.91 16.38 20.94 16.42 20.94 16.45Z",
23
25
  fill: "black"
24
26
  }
25
27
  ), /* @__PURE__ */ React.createElement(
26
28
  "path",
27
29
  {
28
- "fill-rule": "evenodd",
29
- "clip-rule": "evenodd",
30
- d: "M3.25 18C3.25 17.5858 3.58579 17.25 4 17.25H20C20.4142 17.25 20.75 17.5858 20.75 18C20.75 18.4142 20.4142 18.75 20 18.75H4C3.58579 18.75 3.25 18.4142 3.25 18Z",
30
+ d: "M21.02 7.71001C19.76 7.33001 18.49 7.02001 17.2 6.80001C16.99 5.51001 16.68 4.23001 16.29 2.98001C18.36 3.97001 20.03 5.64001 21.02 7.71001Z",
31
31
  fill: "black"
32
32
  }
33
- )), "ICLine24Menu");
33
+ ), /* @__PURE__ */ React.createElement(
34
+ "path",
35
+ {
36
+ d: "M7.64998 3.09C7.28998 4.31 7.02998 5.55 6.81998 6.81C5.52998 7.01 4.24998 7.33 2.97998 7.71C3.94998 5.7 5.55998 4.05 7.54998 3.06C7.57998 3.06 7.61998 3.09 7.64998 3.09Z",
37
+ fill: "black"
38
+ }
39
+ ), /* @__PURE__ */ React.createElement(
40
+ "path",
41
+ {
42
+ d: "M15.49 6.59C13.17 6.33 10.83 6.33 8.51001 6.59C8.76001 5.22 9.08001 3.85 9.53001 2.53C9.55001 2.45 9.54001 2.39 9.55001 2.31C10.34 2.12 11.15 2 12 2C12.84 2 13.66 2.12 14.44 2.31C14.45 2.39 14.45 2.45 14.47 2.53C14.92 3.86 15.24 5.22 15.49 6.59Z",
43
+ fill: "black"
44
+ }
45
+ ), /* @__PURE__ */ React.createElement(
46
+ "path",
47
+ {
48
+ d: "M6.59 15.49C5.21 15.24 3.85 14.92 2.53 14.47C2.45 14.45 2.39 14.46 2.31 14.45C2.12 13.66 2 12.85 2 12C2 11.16 2.12 10.34 2.31 9.56001C2.39 9.55001 2.45 9.55001 2.53 9.53001C3.86 9.09001 5.21 8.76001 6.59 8.51001C6.34 10.83 6.34 13.17 6.59 15.49Z",
49
+ fill: "black"
50
+ }
51
+ ), /* @__PURE__ */ React.createElement(
52
+ "path",
53
+ {
54
+ d: "M22 12C22 12.85 21.88 13.66 21.69 14.45C21.61 14.46 21.55 14.45 21.47 14.47C20.14 14.91 18.78 15.24 17.41 15.49C17.67 13.17 17.67 10.83 17.41 8.51001C18.78 8.76001 20.15 9.08001 21.47 9.53001C21.55 9.55001 21.61 9.56001 21.69 9.56001C21.88 10.35 22 11.16 22 12Z",
55
+ fill: "black"
56
+ }
57
+ ), /* @__PURE__ */ React.createElement(
58
+ "path",
59
+ {
60
+ d: "M15.49 17.41C15.24 18.79 14.92 20.15 14.47 21.47C14.45 21.55 14.45 21.61 14.44 21.69C13.66 21.88 12.84 22 12 22C11.15 22 10.34 21.88 9.55001 21.69C9.54001 21.61 9.55001 21.55 9.53001 21.47C9.09001 20.14 8.76001 18.79 8.51001 17.41C9.67001 17.54 10.83 17.63 12 17.63C13.17 17.63 14.34 17.54 15.49 17.41Z",
61
+ fill: "black"
62
+ }
63
+ ), /* @__PURE__ */ React.createElement(
64
+ "path",
65
+ {
66
+ d: "M15.7633 15.7633C13.2622 16.0789 10.7378 16.0789 8.23667 15.7633C7.92111 13.2622 7.92111 10.7378 8.23667 8.23667C10.7378 7.92111 13.2622 7.92111 15.7633 8.23667C16.0789 10.7378 16.0789 13.2622 15.7633 15.7633Z",
67
+ fill: "black"
68
+ }
69
+ )), "ICBold24Globe");
34
70
 
35
- // src/assets/ic-line-24-close.tsx
71
+ // src/assets/ic-color-24-word.tsx
36
72
  import React2 from "react";
37
- var ICLine24Close = /* @__PURE__ */ __name(() => /* @__PURE__ */ React2.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React2.createElement(
73
+ var ICColor24Word = /* @__PURE__ */ __name(() => /* @__PURE__ */ React2.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React2.createElement("rect", { width: "24", height: "24", rx: "6", fill: "#297DD6" }), /* @__PURE__ */ React2.createElement(
38
74
  "path",
39
75
  {
40
- "fill-rule": "evenodd",
41
- "clip-rule": "evenodd",
42
- d: "M6.53033 5.46967C6.23744 5.17678 5.76256 5.17678 5.46967 5.46967C5.17678 5.76256 5.17678 6.23744 5.46967 6.53033L10.9393 12L5.46968 17.4697C5.17678 17.7626 5.17678 18.2374 5.46968 18.5303C5.76257 18.8232 6.23745 18.8232 6.53034 18.5303L12 13.0607L17.4697 18.5303C17.7626 18.8232 18.2374 18.8232 18.5303 18.5303C18.8232 18.2374 18.8232 17.7626 18.5303 17.4697L13.0607 12L18.5303 6.53034C18.8232 6.23744 18.8232 5.76257 18.5303 5.46968C18.2374 5.17678 17.7626 5.17678 17.4697 5.46968L12 10.9393L6.53033 5.46967Z",
76
+ d: "M16.1389 8.4H16.0647L16.0432 8.47112L14.4866 13.6318L12.8409 8.46963L12.8187 8.4H12.7456H11.319H11.2459L11.2237 8.46963L9.57731 13.634L7.99778 8.47075L7.97614 8.4H7.90215H6H5.86149L5.90508 8.53147L8.72308 17.0315L8.7458 17.1H8.818H10.2564H10.3292L10.3516 17.0306L12.0121 11.8681L13.6837 17.0308L13.7061 17.1H13.7789H15.2114H15.2838L15.3064 17.0312L18.095 8.53117L18.1381 8.4H18H16.1389Z",
77
+ fill: "white",
78
+ stroke: "white",
79
+ "stroke-width": "0.2"
80
+ }
81
+ )), "ICColor24Word");
82
+
83
+ // src/assets/ic-bold-16-android.tsx
84
+ import React3 from "react";
85
+ var ICBold16Android = /* @__PURE__ */ __name(() => /* @__PURE__ */ React3.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React3.createElement("g", { "clip-path": "url(#clip0_175_148)" }, /* @__PURE__ */ React3.createElement(
86
+ "path",
87
+ {
88
+ d: "M11.7334 6.3199L12.96 4.1999C13.0667 3.99323 12.9867 3.7399 12.7867 3.63323C12.5934 3.53323 12.3534 3.59323 12.2334 3.7799L10.98 5.9399C9.07335 5.13323 6.92669 5.13323 5.02002 5.9399L3.76669 3.7799C3.64002 3.58657 3.38002 3.52657 3.18669 3.64657C3.00002 3.76657 2.94002 4.00657 3.04002 4.1999L4.26669 6.3199C2.51579 7.31961 1.28168 8.9988 0.831919 10.9318C0.699757 11.4998 1.16523 11.9999 1.74843 11.9999H14.2516C14.8348 11.9999 15.3003 11.4998 15.1681 10.9318C14.7184 8.9988 13.4843 7.31961 11.7334 6.3199ZM4.66669 10.1666C4.20669 10.1666 3.83335 9.79323 3.83335 9.33323C3.83335 8.87323 4.20669 8.4999 4.66669 8.4999C5.12669 8.4999 5.50002 8.87323 5.50002 9.33323C5.50002 9.79323 5.12669 10.1666 4.66669 10.1666ZM11.3334 10.1666C10.8734 10.1666 10.5 9.79323 10.5 9.33323C10.5 8.87323 10.8734 8.4999 11.3334 8.4999C11.7934 8.4999 12.1667 8.87323 12.1667 9.33323C12.1667 9.79323 11.7934 10.1666 11.3334 10.1666Z",
89
+ fill: "black"
90
+ }
91
+ )), /* @__PURE__ */ React3.createElement("defs", null, /* @__PURE__ */ React3.createElement("clipPath", { id: "clip0_175_148" }, /* @__PURE__ */ React3.createElement("rect", { width: "16", height: "16", fill: "white" })))), "ICBold16Android");
92
+
93
+ // src/assets/ic-bold-24-caution.tsx
94
+ import React4 from "react";
95
+ var ICBold24Caution = /* @__PURE__ */ __name(() => /* @__PURE__ */ React4.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React4.createElement(
96
+ "path",
97
+ {
98
+ d: "M12 2C6.49 2 2 6.49 2 12C2 17.51 6.49 22 12 22C17.51 22 22 17.51 22 12C22 6.49 17.51 2 12 2ZM11.25 8C11.25 7.59 11.59 7.25 12 7.25C12.41 7.25 12.75 7.59 12.75 8V13C12.75 13.41 12.41 13.75 12 13.75C11.59 13.75 11.25 13.41 11.25 13V8ZM12.92 16.38C12.87 16.51 12.8 16.61 12.71 16.71C12.61 16.8 12.5 16.87 12.38 16.92C12.26 16.97 12.13 17 12 17C11.87 17 11.74 16.97 11.62 16.92C11.5 16.87 11.39 16.8 11.29 16.71C11.2 16.61 11.13 16.51 11.08 16.38C11.03 16.26 11 16.13 11 16C11 15.87 11.03 15.74 11.08 15.62C11.13 15.5 11.2 15.39 11.29 15.29C11.39 15.2 11.5 15.13 11.62 15.08C11.86 14.98 12.14 14.98 12.38 15.08C12.5 15.13 12.61 15.2 12.71 15.29C12.8 15.39 12.87 15.5 12.92 15.62C12.97 15.74 13 15.87 13 16C13 16.13 12.97 16.26 12.92 16.38Z",
43
99
  fill: "black"
44
100
  }
45
- )), "ICLine24Close");
101
+ )), "ICBold24Caution");
46
102
 
47
103
  // src/assets/ic-bold-16-apple.tsx
48
- import React3 from "react";
49
- var ICBold16Apple = /* @__PURE__ */ __name(() => /* @__PURE__ */ React3.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React3.createElement(
104
+ import React5 from "react";
105
+ var ICBold16Apple = /* @__PURE__ */ __name(() => /* @__PURE__ */ React5.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React5.createElement(
50
106
  "path",
51
107
  {
52
108
  "fill-rule": "evenodd",
53
109
  "clip-rule": "evenodd",
54
- d: "M12.7333 12.7734C13.1266 12.1734 13.2733 11.8667 13.5733 11.1934C11.36 10.3534 11.0067 7.20001 13.1933 5.99335C12.5267 5.15335 11.5867 4.66669 10.7 4.66669C10.06 4.66669 9.61998 4.83336 9.22665 4.98669C8.89331 5.11336 8.59332 5.22668 8.21999 5.22668C7.81998 5.22668 7.46665 5.10003 7.09332 4.9667C6.68665 4.82003 6.25998 4.66669 5.72665 4.66669C4.73331 4.66669 3.67332 5.27335 2.99998 6.31335C2.05332 7.78002 2.21999 10.5267 3.74665 12.8734C4.29332 13.7134 5.02665 14.6534 5.97998 14.6667C6.37998 14.6734 6.63998 14.5534 6.92665 14.4267C7.25332 14.28 7.60665 14.12 8.22665 14.12C8.84665 14.1133 9.19332 14.28 9.51998 14.4267C9.79998 14.5534 10.0533 14.6734 10.4466 14.6667C11.4133 14.6534 12.1866 13.6134 12.7333 12.7734Z",
110
+ d: "M12.7333 12.7734C13.1266 12.1734 13.2733 11.8668 13.5733 11.1934C11.36 10.3534 11.0067 7.20007 13.1933 5.99341C12.5267 5.15341 11.5867 4.66675 10.7 4.66675C10.06 4.66675 9.61998 4.83342 9.22665 4.98676C8.89331 5.11342 8.59332 5.22675 8.21999 5.22675C7.81998 5.22675 7.46665 5.10009 7.09332 4.96676C6.68665 4.82009 6.25998 4.66675 5.72665 4.66675C4.73331 4.66675 3.67332 5.27342 2.99998 6.31342C2.05332 7.78008 2.21999 10.5267 3.74665 12.8734C4.29332 13.7134 5.02665 14.6534 5.97998 14.6667C6.37998 14.6734 6.63998 14.5534 6.92665 14.4268C7.25332 14.2801 7.60665 14.1201 8.22665 14.1201C8.84665 14.1134 9.19332 14.2801 9.51998 14.4268C9.79998 14.5534 10.0533 14.6734 10.4466 14.6667C11.4133 14.6534 12.1866 13.6134 12.7333 12.7734Z",
55
111
  fill: "black"
56
112
  }
57
- ), /* @__PURE__ */ React3.createElement(
113
+ ), /* @__PURE__ */ React5.createElement(
58
114
  "path",
59
115
  {
60
116
  "fill-rule": "evenodd",
61
117
  "clip-rule": "evenodd",
62
- d: "M10.56 1.33331C10.6666 2.06665 10.3666 2.79332 9.97332 3.29999C9.55332 3.84665 8.81998 4.27331 8.11332 4.24664C7.98665 3.53998 8.31332 2.81331 8.71332 2.32664C9.15998 1.79331 9.91331 1.37998 10.56 1.33331Z",
118
+ d: "M10.56 1.33325C10.6666 2.06659 10.3666 2.79326 9.97332 3.29993C9.55332 3.84659 8.81998 4.27325 8.11332 4.24658C7.98665 3.53992 8.31332 2.81325 8.71332 2.32658C9.15998 1.79325 9.91331 1.37992 10.56 1.33325Z",
63
119
  fill: "black"
64
120
  }
65
121
  )), "ICBold16Apple");
66
122
 
67
- // src/assets/ic-bold-16-chrome.tsx
68
- import React4 from "react";
69
- var ICBold16Chrome = /* @__PURE__ */ __name(() => /* @__PURE__ */ React4.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React4.createElement(
123
+ // src/assets/ic-bold-16-quote-up.tsx
124
+ import React6 from "react";
125
+ var ICBold16QuoteUp = /* @__PURE__ */ __name(() => /* @__PURE__ */ React6.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React6.createElement(
70
126
  "path",
71
127
  {
72
- d: "M7.88001 4.59998C9.78668 4.18665 11.72 4.12665 13.6333 4.43998C12.4533 2.57331 10.3733 1.33331 8.00001 1.33331C5.92668 1.33331 4.07335 2.27998 2.84668 3.76665C3.14001 4.63331 3.51335 5.45998 3.96001 6.24665C4.21335 6.69998 4.86001 6.67998 5.12001 6.23331C5.68668 5.27998 6.70668 4.63998 7.88001 4.59998Z",
128
+ d: "M5.39331 7.7534H2.26665C2.31998 4.64006 2.93331 4.12673 4.84665 2.9934C5.06665 2.86006 5.13998 2.58006 5.00665 2.3534C4.87998 2.1334 4.59331 2.06006 4.37331 2.1934C2.11998 3.52673 1.33331 4.34006 1.33331 8.2134V11.8067C1.33331 12.9467 2.25998 13.8667 3.39331 13.8667H5.39331C6.56665 13.8667 7.45331 12.9801 7.45331 11.8067V9.80673C7.45331 8.64006 6.56665 7.7534 5.39331 7.7534Z",
73
129
  fill: "black"
74
130
  }
75
- ), /* @__PURE__ */ React4.createElement(
131
+ ), /* @__PURE__ */ React6.createElement(
76
132
  "path",
77
133
  {
78
- d: "M5.14664 9.81335C3.8133 8.38669 2.7733 6.76002 2.05997 4.96002C1.05997 6.93336 1.06664 9.35335 2.28664 11.3867C3.3533 13.1667 5.1133 14.2734 7.01997 14.56C7.6133 13.86 8.1333 13.1134 8.57997 12.3334C8.83997 11.88 8.48664 11.34 7.96664 11.34C6.8533 11.3467 5.77997 10.8 5.14664 9.81335Z",
134
+ d: "M12.6066 7.7534H9.47998C9.53331 4.64006 10.1466 4.12673 12.06 2.9934C12.28 2.86006 12.3533 2.58006 12.22 2.3534C12.0866 2.1334 11.8066 2.06006 11.58 2.1934C9.32664 3.52673 8.53998 4.34006 8.53998 8.22006V11.8134C8.53998 12.9534 9.46664 13.8734 10.6 13.8734H12.6C13.7733 13.8734 14.66 12.9867 14.66 11.8134V9.8134C14.6666 8.64006 13.78 7.7534 12.6066 7.7534Z",
79
135
  fill: "black"
80
136
  }
81
- ), /* @__PURE__ */ React4.createElement(
137
+ )), "ICBold16QuoteUp");
138
+
139
+ // src/assets/ic-color-24-text.tsx
140
+ import React7 from "react";
141
+ var ICColor24Text = /* @__PURE__ */ __name(() => /* @__PURE__ */ React7.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React7.createElement("rect", { width: "24", height: "24", rx: "6", fill: "#647280" }), /* @__PURE__ */ React7.createElement(
82
142
  "path",
83
143
  {
84
- d: "M5.71332 8C5.71332 8.40667 5.81332 8.78667 6.01998 9.14667C6.42665 9.84667 7.17998 10.2867 7.99332 10.2867C8.80665 10.2867 9.56665 9.84667 9.96665 9.14667C10.1733 8.78667 10.28 8.40667 10.28 8C10.28 6.74 9.25332 5.72 7.99332 5.72C6.73998 5.71334 5.71332 6.74 5.71332 8Z",
85
- fill: "black"
144
+ d: "M16.1193 11.7783H15.188V10.4353H16.1193H16.1693V10.3853V9.05H17.5858V10.3853V10.4353H17.6358H18.8819V11.7783H17.6358H17.5858V11.8283V13.5232C17.5858 13.7766 17.6689 13.9862 17.8373 14.1471L17.8378 14.1475C18.005 14.3036 18.2098 14.3813 18.4491 14.3813C18.6034 14.3813 18.7456 14.3628 18.8752 14.3251L18.9482 15.5702C18.7586 15.6546 18.5177 15.6981 18.2235 15.6981C17.6046 15.6981 17.1089 15.5129 16.7315 15.1457C16.3584 14.776 16.1693 14.2636 16.1693 13.6019V11.8283V11.7783H16.1193Z",
145
+ fill: "white",
146
+ stroke: "#647280",
147
+ "stroke-width": "0.1"
86
148
  }
87
- ), /* @__PURE__ */ React4.createElement(
149
+ ), /* @__PURE__ */ React7.createElement(
88
150
  "path",
89
151
  {
90
- d: "M14.2267 5.61332C13.3134 5.41998 12.3867 5.31332 11.4667 5.29998C10.94 5.29332 10.64 5.86665 10.9 6.32665C11.1667 6.79998 11.32 7.34665 11.32 7.92665C11.32 8.48665 11.1734 9.03998 10.9 9.53332C10.2734 11.4533 9.34002 13.16 8.10669 14.6667C11.74 14.6067 14.6667 11.6467 14.6667 7.99998C14.6667 7.15998 14.5134 6.35332 14.2267 5.61332Z",
91
- fill: "black"
152
+ d: "M12.0482 14.2082L11.0661 15.6141H9.38305L11.2276 12.9746L11.2476 12.946L11.2277 12.9174L9.49833 10.4353H11.2026L12.0587 11.6627L12.0995 11.7212L12.1406 11.663L13.0072 10.4353H14.6904L12.9613 12.9068L12.9412 12.9355L12.9613 12.9642L14.8214 15.6141H13.1174L12.1301 14.2081L12.0891 14.1497L12.0482 14.2082Z",
153
+ fill: "white",
154
+ stroke: "#647280",
155
+ "stroke-width": "0.1"
92
156
  }
93
- )), "ICBold16Chrome");
94
-
95
- // src/assets/ic-bold-16-android.tsx
96
- import React5 from "react";
97
- var ICBold16Android = /* @__PURE__ */ __name(() => /* @__PURE__ */ React5.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React5.createElement("g", { "clip-path": "url(#clip0_10_74)" }, /* @__PURE__ */ React5.createElement(
157
+ ), /* @__PURE__ */ React7.createElement(
98
158
  "path",
99
159
  {
100
- d: "M11.7334 6.32002L12.96 4.20002C13.0667 3.99336 12.9867 3.74002 12.7867 3.63336C12.5934 3.53336 12.3534 3.59336 12.2334 3.78002L10.98 5.94002C9.07335 5.13336 6.92669 5.13336 5.02002 5.94002L3.76669 3.78002C3.64002 3.58669 3.38002 3.52669 3.18669 3.64669C3.00002 3.76669 2.94002 4.00669 3.04002 4.20002L4.26669 6.32002C2.51579 7.31973 1.28168 8.99892 0.831919 10.9319C0.699757 11.5 1.16523 12 1.74843 12H14.2516C14.8348 12 15.3003 11.5 15.1681 10.9319C14.7184 8.99892 13.4843 7.31973 11.7334 6.32002ZM4.66669 10.1667C4.20669 10.1667 3.83335 9.79336 3.83335 9.33336C3.83335 8.87336 4.20669 8.50002 4.66669 8.50002C5.12669 8.50002 5.50002 8.87336 5.50002 9.33336C5.50002 9.79336 5.12669 10.1667 4.66669 10.1667ZM11.3334 10.1667C10.8734 10.1667 10.5 9.79336 10.5 9.33336C10.5 8.87336 10.8734 8.50002 11.3334 8.50002C11.7934 8.50002 12.1667 8.87336 12.1667 9.33336C12.1667 9.79336 11.7934 10.1667 11.3334 10.1667Z",
101
- fill: "black"
160
+ d: "M5.98126 11.7783H5.05V10.4353H5.98126H6.03126V10.3853V9.05H7.44775V10.3853V10.4353H7.49775H8.74385V11.7783H7.49775H7.44775V11.8283V13.5232C7.44775 13.7766 7.53092 13.9862 7.69934 14.1471L7.69977 14.1475C7.867 14.3036 8.07182 14.3813 8.31109 14.3813C8.46539 14.3813 8.60756 14.3628 8.73721 14.3251L8.81016 15.5702C8.62058 15.6546 8.37974 15.6981 8.08546 15.6981C7.46661 15.6981 6.97094 15.5129 6.5935 15.1457C6.22044 14.776 6.03126 14.2636 6.03126 13.6019V11.8283V11.7783H5.98126Z",
161
+ fill: "white",
162
+ stroke: "#647280",
163
+ "stroke-width": "0.1"
102
164
  }
103
- )), /* @__PURE__ */ React5.createElement("defs", null, /* @__PURE__ */ React5.createElement("clipPath", { id: "clip0_10_74" }, /* @__PURE__ */ React5.createElement("rect", { width: "16", height: "16", fill: "white" })))), "ICBold16Android");
165
+ )), "ICColor24Text");
104
166
 
105
167
  // src/assets/ic-bold-24-info.tsx
106
- import React6 from "react";
107
- var ICBold24Info = /* @__PURE__ */ __name(() => /* @__PURE__ */ React6.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React6.createElement(
168
+ import React8 from "react";
169
+ var ICBold24Info = /* @__PURE__ */ __name(() => /* @__PURE__ */ React8.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React8.createElement(
108
170
  "path",
109
171
  {
110
172
  d: "M12 2C6.49 2 2 6.49 2 12C2 17.51 6.49 22 12 22C17.51 22 22 17.51 22 12C22 6.49 17.51 2 12 2ZM11.25 11.25C11.25 10.84 11.59 10.5 12 10.5C12.41 10.5 12.75 10.84 12.75 11.25V16.25C12.75 16.66 12.41 17 12 17C11.59 17 11.25 16.66 11.25 16.25V11.25ZM12.92 8.38C12.87 8.51 12.8 8.61 12.71 8.71C12.61 8.8 12.5 8.87 12.38 8.92C12.26 8.97 12.13 9 12 9C11.87 9 11.74 8.97 11.62 8.92C11.5 8.87 11.39 8.8 11.29 8.71C11.2 8.61 11.13 8.51 11.08 8.38C11.03 8.26 11 8.13 11 8C11 7.87 11.03 7.74 11.08 7.62C11.13 7.5 11.2 7.39 11.29 7.29C11.39 7.2 11.5 7.13 11.62 7.08C11.86 6.98 12.14 6.98 12.38 7.08C12.5 7.13 12.61 7.2 12.71 7.29C12.8 7.39 12.87 7.5 12.92 7.62C12.97 7.74 13 7.87 13 8C13 8.13 12.97 8.26 12.92 8.38Z",
@@ -112,33 +174,21 @@ var ICBold24Info = /* @__PURE__ */ __name(() => /* @__PURE__ */ React6.createEle
112
174
  }
113
175
  )), "ICBold24Info");
114
176
 
115
- // src/assets/ic-line-24-arrow-left.tsx
116
- import React7 from "react";
117
- var ICLine24ArrowLeft = /* @__PURE__ */ __name(() => /* @__PURE__ */ React7.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React7.createElement(
118
- "path",
119
- {
120
- "fill-rule": "evenodd",
121
- "clip-rule": "evenodd",
122
- d: "M15.5304 3.54967C15.8232 3.84256 15.8232 4.31744 15.5304 4.61033L9.01036 11.1303C8.53325 11.6074 8.53325 12.3926 9.01036 12.8697L15.5304 19.3897C15.8232 19.6826 15.8232 20.1574 15.5304 20.4503C15.2375 20.7432 14.7626 20.7432 14.4697 20.4503L7.9497 13.9303C6.8868 12.8674 6.8868 11.1326 7.9497 10.0697L14.4697 3.54967C14.7626 3.25678 15.2375 3.25678 15.5304 3.54967Z",
123
- fill: "black"
124
- }
125
- )), "ICLine24ArrowLeft");
126
-
127
177
  // src/assets/ic-bold-24-image.tsx
128
- import React8 from "react";
129
- var ICBold24Image = /* @__PURE__ */ __name(() => /* @__PURE__ */ React8.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React8.createElement(
178
+ import React9 from "react";
179
+ var ICBold24Image = /* @__PURE__ */ __name(() => /* @__PURE__ */ React9.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React9.createElement(
130
180
  "path",
131
181
  {
132
182
  d: "M2.57999 19.01L2.55999 19.03C2.28999 18.44 2.11999 17.77 2.04999 17.03C2.11999 17.76 2.30999 18.42 2.57999 19.01Z",
133
183
  fill: "black"
134
184
  }
135
- ), /* @__PURE__ */ React8.createElement(
185
+ ), /* @__PURE__ */ React9.createElement(
136
186
  "path",
137
187
  {
138
188
  d: "M9 10.38C10.3144 10.38 11.38 9.31443 11.38 8C11.38 6.68556 10.3144 5.62 9 5.62C7.68556 5.62 6.62 6.68556 6.62 8C6.62 9.31443 7.68556 10.38 9 10.38Z",
139
189
  fill: "black"
140
190
  }
141
- ), /* @__PURE__ */ React8.createElement(
191
+ ), /* @__PURE__ */ React9.createElement(
142
192
  "path",
143
193
  {
144
194
  d: "M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.19C2 17.28 2.19 18.23 2.56 19.03C3.42 20.93 5.26 22 7.81 22H16.19C19.83 22 22 19.83 22 16.19V13.9V7.81C22 4.17 19.83 2 16.19 2ZM20.37 12.5C19.59 11.83 18.33 11.83 17.55 12.5L13.39 16.07C12.61 16.74 11.35 16.74 10.57 16.07L10.23 15.79C9.52 15.17 8.39 15.11 7.59 15.65L3.85 18.16C3.63 17.6 3.5 16.95 3.5 16.19V7.81C3.5 4.99 4.99 3.5 7.81 3.5H16.19C19.01 3.5 20.5 4.99 20.5 7.81V12.61L20.37 12.5Z",
@@ -146,16 +196,6 @@ var ICBold24Image = /* @__PURE__ */ __name(() => /* @__PURE__ */ React8.createEl
146
196
  }
147
197
  )), "ICBold24Image");
148
198
 
149
- // src/assets/ic-bold-24-caution.tsx
150
- import React9 from "react";
151
- var ICBold24Caution = /* @__PURE__ */ __name(() => /* @__PURE__ */ React9.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React9.createElement(
152
- "path",
153
- {
154
- d: "M12 2C6.49 2 2 6.49 2 12C2 17.51 6.49 22 12 22C17.51 22 22 17.51 22 12C22 6.49 17.51 2 12 2ZM11.25 8C11.25 7.59 11.59 7.25 12 7.25C12.41 7.25 12.75 7.59 12.75 8V13C12.75 13.41 12.41 13.75 12 13.75C11.59 13.75 11.25 13.41 11.25 13V8ZM12.92 16.38C12.87 16.51 12.8 16.61 12.71 16.71C12.61 16.8 12.5 16.87 12.38 16.92C12.26 16.97 12.13 17 12 17C11.87 17 11.74 16.97 11.62 16.92C11.5 16.87 11.39 16.8 11.29 16.71C11.2 16.61 11.13 16.51 11.08 16.38C11.03 16.26 11 16.13 11 16C11 15.87 11.03 15.74 11.08 15.62C11.13 15.5 11.2 15.39 11.29 15.29C11.39 15.2 11.5 15.13 11.62 15.08C11.86 14.98 12.14 14.98 12.38 15.08C12.5 15.13 12.61 15.2 12.71 15.29C12.8 15.39 12.87 15.5 12.92 15.62C12.97 15.74 13 15.87 13 16C13 16.13 12.97 16.26 12.92 16.38Z",
155
- fill: "black"
156
- }
157
- )), "ICBold24Caution");
158
-
159
199
  // src/assets/ic-bold-24-chat.tsx
160
200
  import React10 from "react";
161
201
  var ICBold24Chat = /* @__PURE__ */ __name(() => /* @__PURE__ */ React10.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React10.createElement(
@@ -172,9 +212,37 @@ var ICBold24Chat = /* @__PURE__ */ __name(() => /* @__PURE__ */ React10.createEl
172
212
  }
173
213
  )), "ICBold24Chat");
174
214
 
175
- // src/assets/ic-line-16-mobile.tsx
215
+ // src/assets/ic-bold-16-chrome.tsx
176
216
  import React11 from "react";
177
- var ICLine16Mobile = /* @__PURE__ */ __name(() => /* @__PURE__ */ React11.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React11.createElement(
217
+ var ICBold16Chrome = /* @__PURE__ */ __name(() => /* @__PURE__ */ React11.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React11.createElement(
218
+ "path",
219
+ {
220
+ d: "M7.88001 4.59992C9.78668 4.18659 11.72 4.12659 13.6333 4.43992C12.4533 2.57325 10.3733 1.33325 8.00001 1.33325C5.92668 1.33325 4.07335 2.27992 2.84668 3.76659C3.14001 4.63325 3.51335 5.45992 3.96001 6.24658C4.21335 6.69992 4.86001 6.67992 5.12001 6.23325C5.68668 5.27992 6.70668 4.63992 7.88001 4.59992Z",
221
+ fill: "black"
222
+ }
223
+ ), /* @__PURE__ */ React11.createElement(
224
+ "path",
225
+ {
226
+ d: "M5.14664 9.81329C3.8133 8.38663 2.7733 6.75996 2.05997 4.95996C1.05997 6.93329 1.06664 9.35329 2.28664 11.3866C3.3533 13.1666 5.1133 14.2733 7.01997 14.56C7.6133 13.86 8.1333 13.1133 8.57997 12.3333C8.83997 11.88 8.48664 11.34 7.96664 11.34C6.8533 11.3466 5.77997 10.8 5.14664 9.81329Z",
227
+ fill: "black"
228
+ }
229
+ ), /* @__PURE__ */ React11.createElement(
230
+ "path",
231
+ {
232
+ d: "M5.71332 8C5.71332 8.40667 5.81332 8.78667 6.01998 9.14667C6.42665 9.84667 7.17998 10.2867 7.99332 10.2867C8.80665 10.2867 9.56665 9.84667 9.96665 9.14667C10.1733 8.78667 10.28 8.40667 10.28 8C10.28 6.74 9.25332 5.72 7.99332 5.72C6.73998 5.71334 5.71332 6.74 5.71332 8Z",
233
+ fill: "black"
234
+ }
235
+ ), /* @__PURE__ */ React11.createElement(
236
+ "path",
237
+ {
238
+ d: "M14.2267 5.61344C13.3134 5.42011 12.3867 5.31344 11.4667 5.30011C10.94 5.29344 10.64 5.86677 10.9 6.32677C11.1667 6.80011 11.32 7.34677 11.32 7.92677C11.32 8.48677 11.1734 9.04011 10.9 9.53344C10.2734 11.4534 9.34002 13.1601 8.10669 14.6668C11.74 14.6068 14.6667 11.6468 14.6667 8.00011C14.6667 7.16011 14.5134 6.35344 14.2267 5.61344Z",
239
+ fill: "black"
240
+ }
241
+ )), "ICBold16Chrome");
242
+
243
+ // src/assets/ic-line-16-mobile.tsx
244
+ import React12 from "react";
245
+ var ICLine16Mobile = /* @__PURE__ */ __name(() => /* @__PURE__ */ React12.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React12.createElement(
178
246
  "path",
179
247
  {
180
248
  d: "M14 4.5V11.5C14 14.3 13.25 15 10.25 15H5.75C2.75 15 2 14.3 2 11.5V4.5C2 1.7 2.75 1 5.75 1H10.25C13.25 1 14 1.7 14 4.5Z",
@@ -183,10 +251,10 @@ var ICLine16Mobile = /* @__PURE__ */ __name(() => /* @__PURE__ */ React11.create
183
251
  "stroke-linecap": "round",
184
252
  "stroke-linejoin": "round"
185
253
  }
186
- ), /* @__PURE__ */ React11.createElement("path", { d: "M9.5 3.45001H6.5", stroke: "black", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), /* @__PURE__ */ React11.createElement(
254
+ ), /* @__PURE__ */ React12.createElement("path", { d: "M9.5 3.44995H6.5", stroke: "black", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), /* @__PURE__ */ React12.createElement(
187
255
  "path",
188
256
  {
189
- d: "M8.00002 12.97C8.64206 12.97 9.16253 12.4842 9.16253 11.885C9.16253 11.2858 8.64206 10.8 8.00002 10.8C7.35799 10.8 6.83752 11.2858 6.83752 11.885C6.83752 12.4842 7.35799 12.97 8.00002 12.97Z",
257
+ d: "M8.00002 12.97C8.64206 12.97 9.16253 12.4843 9.16253 11.885C9.16253 11.2858 8.64206 10.8 8.00002 10.8C7.35799 10.8 6.83752 11.2858 6.83752 11.885C6.83752 12.4843 7.35799 12.97 8.00002 12.97Z",
190
258
  stroke: "black",
191
259
  "stroke-width": "1.5",
192
260
  "stroke-linecap": "round",
@@ -194,94 +262,156 @@ var ICLine16Mobile = /* @__PURE__ */ __name(() => /* @__PURE__ */ React11.create
194
262
  }
195
263
  )), "ICLine16Mobile");
196
264
 
197
- // src/assets/ic-bold-24-globe.tsx
198
- import React12 from "react";
199
- var ICBold24Globe = /* @__PURE__ */ __name(() => /* @__PURE__ */ React12.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React12.createElement(
265
+ // src/assets/ic-color-24-excel.tsx
266
+ import React13 from "react";
267
+ var ICColor24Excel = /* @__PURE__ */ __name(() => /* @__PURE__ */ React13.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React13.createElement("rect", { width: "24", height: "24", rx: "6", fill: "#22A162" }), /* @__PURE__ */ React13.createElement(
200
268
  "path",
201
269
  {
202
- d: "M7.65 20.91C7.62 20.91 7.58 20.93 7.55 20.93C5.61 19.97 4.03 18.38 3.06 16.44C3.06 16.41 3.08 16.37 3.08 16.34C4.3 16.7 5.56 16.97 6.81 17.18C7.03 18.44 7.29 19.69 7.65 20.91Z",
203
- fill: "black"
270
+ d: "M17 17H14.31L11.9776 13.7294L9.66021 17H7L10.6662 11.8605L7.20119 7H9.90611L12.0075 9.97071L14.1162 7H16.7541L13.3338 11.8326L17 17Z",
271
+ fill: "white"
204
272
  }
205
- ), /* @__PURE__ */ React12.createElement(
273
+ )), "ICColor24Excel");
274
+
275
+ // src/assets/ic-color-24-ppt.tsx
276
+ import React14 from "react";
277
+ var ICColor24Ppt = /* @__PURE__ */ __name(() => /* @__PURE__ */ React14.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React14.createElement("rect", { width: "24", height: "24", rx: "6", fill: "#FF4F44" }), /* @__PURE__ */ React14.createElement(
206
278
  "path",
207
279
  {
208
- d: "M20.94 16.45C19.95 18.44 18.3 20.05 16.29 21.02C16.67 19.75 16.99 18.47 17.2 17.18C18.46 16.97 19.7 16.7 20.92 16.34C20.91 16.38 20.94 16.42 20.94 16.45Z",
209
- fill: "black"
280
+ d: "M12.7326 7C13.823 7 14.7222 7.3324 15.4302 7.99721C16.1434 8.66202 16.5 9.50325 16.5 10.5209C16.5 11.5488 16.1434 12.4003 15.4302 13.0753C14.7222 13.7503 13.823 14.0879 12.7326 14.0879H10.8488V18H8.5V7H12.7326ZM12.7326 11.8556C13.1357 11.8556 13.469 11.7304 13.7326 11.4798C14.0013 11.2241 14.1357 10.9045 14.1357 10.5209C14.1357 10.1527 14.0013 9.84589 13.7326 9.60042C13.469 9.35495 13.1357 9.23222 12.7326 9.23222H10.8488V11.8556H12.7326Z",
281
+ fill: "white"
210
282
  }
211
- ), /* @__PURE__ */ React12.createElement(
283
+ )), "ICColor24Ppt");
284
+
285
+ // src/assets/ic-color-24-html.tsx
286
+ import React15 from "react";
287
+ var ICColor24Html = /* @__PURE__ */ __name(() => /* @__PURE__ */ React15.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React15.createElement("rect", { width: "24", height: "24", rx: "6", fill: "#FF4D4D" }), /* @__PURE__ */ React15.createElement(
212
288
  "path",
213
289
  {
214
- d: "M21.02 7.71001C19.76 7.33001 18.49 7.02001 17.2 6.80001C16.99 5.51001 16.68 4.23001 16.29 2.98001C18.36 3.97001 20.03 5.64001 21.02 7.71001Z",
215
- fill: "black"
290
+ d: "M14.7967 14.9213V15.0033L14.8696 14.9657L19.2299 12.7175L19.257 12.7035V12.673V11.4401V11.4097L19.23 11.3957L14.8696 9.14186L14.7967 9.10415V9.18628V10.8209V10.8519L14.8245 10.8657L17.2048 12.0427L14.8244 13.2252L14.7967 13.239V13.27V14.9213Z",
291
+ fill: "white",
292
+ stroke: "#FF4C4C",
293
+ "stroke-width": "0.1"
216
294
  }
217
- ), /* @__PURE__ */ React12.createElement(
295
+ ), /* @__PURE__ */ React15.createElement(
218
296
  "path",
219
297
  {
220
- d: "M7.64998 3.09C7.28998 4.31 7.02998 5.55 6.81998 6.81C5.52998 7.01 4.24998 7.33 2.97998 7.71C3.94998 5.7 5.55998 4.05 7.54998 3.06C7.57998 3.06 7.61998 3.09 7.64998 3.09Z",
221
- fill: "black"
298
+ d: "M9.65354 15.9801L9.62736 16.048H9.7002H11.209H11.2433L11.2556 16.016L14.3367 8.01602L14.3629 7.94805H14.29H12.7812H12.7469L12.7346 7.98008L9.65354 15.9801Z",
299
+ fill: "white",
300
+ stroke: "#FF4C4C",
301
+ "stroke-width": "0.1"
222
302
  }
223
- ), /* @__PURE__ */ React12.createElement(
303
+ ), /* @__PURE__ */ React15.createElement(
224
304
  "path",
225
305
  {
226
- d: "M15.49 6.59C13.17 6.33 10.83 6.33 8.51001 6.59C8.76001 5.22 9.08001 3.85 9.53001 2.53C9.55001 2.45 9.54001 2.39 9.55001 2.31C10.34 2.12 11.15 2 12 2C12.84 2 13.66 2.12 14.44 2.31C14.45 2.39 14.45 2.45 14.47 2.53C14.92 3.86 15.24 5.22 15.49 6.59Z",
227
- fill: "black"
306
+ d: "M9.12552 14.9657L9.19844 15.0033V14.9213V13.27V13.239L9.17068 13.2252L6.79033 12.0427L9.1706 10.8657L9.19844 10.8519V10.8209V9.18628V9.10415L9.12548 9.14186L4.76513 11.3957L4.73809 11.4097V11.4401V12.673V12.7035L4.76517 12.7175L9.12552 14.9657Z",
307
+ fill: "white",
308
+ stroke: "#FF4C4C",
309
+ "stroke-width": "0.1"
228
310
  }
229
- ), /* @__PURE__ */ React12.createElement(
311
+ )), "ICColor24Html");
312
+
313
+ // src/assets/ic-bold-24-file.tsx
314
+ import React16 from "react";
315
+ var ICBold24File = /* @__PURE__ */ __name(() => /* @__PURE__ */ React16.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React16.createElement(
230
316
  "path",
231
317
  {
232
- d: "M6.59 15.49C5.21 15.24 3.85 14.92 2.53 14.47C2.45 14.45 2.39 14.46 2.31 14.45C2.12 13.66 2 12.85 2 12C2 11.16 2.12 10.34 2.31 9.56001C2.39 9.55001 2.45 9.55001 2.53 9.53001C3.86 9.09001 5.21 8.76001 6.59 8.51001C6.34 10.83 6.34 13.17 6.59 15.49Z",
318
+ d: "M20.5 10.19H17.61C15.24 10.19 13.31 8.26 13.31 5.89V3C13.31 2.45 12.86 2 12.31 2H8.07C4.99 2 2.5 4 2.5 7.57V16.43C2.5 20 4.99 22 8.07 22H15.93C19.01 22 21.5 20 21.5 16.43V11.19C21.5 10.64 21.05 10.19 20.5 10.19Z",
233
319
  fill: "black"
234
320
  }
235
- ), /* @__PURE__ */ React12.createElement(
321
+ ), /* @__PURE__ */ React16.createElement(
236
322
  "path",
237
323
  {
238
- d: "M22 12C22 12.85 21.88 13.66 21.69 14.45C21.61 14.46 21.55 14.45 21.47 14.47C20.14 14.91 18.78 15.24 17.41 15.49C17.67 13.17 17.67 10.83 17.41 8.51001C18.78 8.76001 20.15 9.08001 21.47 9.53001C21.55 9.55001 21.61 9.56001 21.69 9.56001C21.88 10.35 22 11.16 22 12Z",
324
+ d: "M15.8 2.20999C15.39 1.79999 14.68 2.07999 14.68 2.64999V6.13999C14.68 7.59999 15.92 8.80999 17.43 8.80999C18.38 8.81999 19.7 8.81999 20.83 8.81999C21.4 8.81999 21.7 8.14999 21.3 7.74999C19.86 6.29999 17.28 3.68999 15.8 2.20999Z",
239
325
  fill: "black"
240
326
  }
241
- ), /* @__PURE__ */ React12.createElement(
327
+ )), "ICBold24File");
328
+
329
+ // src/assets/ic-line-24-select-text.tsx
330
+ import React17 from "react";
331
+ var ICLine24SelectText = /* @__PURE__ */ __name(() => /* @__PURE__ */ React17.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React17.createElement(
242
332
  "path",
243
333
  {
244
- d: "M15.49 17.41C15.24 18.79 14.92 20.15 14.47 21.47C14.45 21.55 14.45 21.61 14.44 21.69C13.66 21.88 12.84 22 12 22C11.15 22 10.34 21.88 9.55001 21.69C9.54001 21.61 9.55001 21.55 9.53001 21.47C9.09001 20.14 8.76001 18.79 8.51001 17.41C9.67001 17.54 10.83 17.63 12 17.63C13.17 17.63 14.34 17.54 15.49 17.41Z",
245
- fill: "black"
334
+ d: "M9.50002 20.3333H14.5C18.6667 20.3333 20.3334 18.6666 20.3334 14.5V9.49996C20.3334 5.33329 18.6667 3.66663 14.5 3.66663H9.50002C5.33335 3.66663 3.66669 5.33329 3.66669 9.49996V14.5C3.66669 18.6666 5.33335 20.3333 9.50002 20.3333Z",
335
+ stroke: "black",
336
+ "stroke-width": "1.5",
337
+ "stroke-linecap": "round",
338
+ "stroke-linejoin": "round"
246
339
  }
247
- ), /* @__PURE__ */ React12.createElement(
340
+ ), /* @__PURE__ */ React17.createElement(
248
341
  "path",
249
342
  {
250
- d: "M15.7633 15.7633C13.2622 16.0789 10.7378 16.0789 8.23667 15.7633C7.92111 13.2622 7.92111 10.7378 8.23667 8.23667C10.7378 7.92111 13.2622 7.92111 15.7633 8.23667C16.0789 10.7378 16.0789 13.2622 15.7633 15.7633Z",
251
- fill: "black"
343
+ d: "M7.83331 9.40837C10.4583 8.10004 13.5416 8.10004 16.1666 9.40837",
344
+ stroke: "black",
345
+ "stroke-width": "1.5",
346
+ "stroke-linecap": "round",
347
+ "stroke-linejoin": "round"
252
348
  }
253
- )), "ICBold24Globe");
349
+ ), /* @__PURE__ */ React17.createElement("path", { d: "M12 15.5833V8.60828", stroke: "black", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" })), "ICLine24SelectText");
254
350
 
255
- // src/assets/ic-bold-24-file.tsx
256
- import React13 from "react";
257
- var ICBold24File = /* @__PURE__ */ __name(() => /* @__PURE__ */ React13.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React13.createElement(
351
+ // src/assets/ic-color-24-pdf.tsx
352
+ import React18 from "react";
353
+ var ICColor24Pdf = /* @__PURE__ */ __name(() => /* @__PURE__ */ React18.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ React18.createElement("rect", { width: "24", height: "24", rx: "6", fill: "#FF4D4D" }), /* @__PURE__ */ React18.createElement("path", { d: "M15.4515 9.39844H19V10.5745H16.6761V11.783H18.7454V12.9591H16.6761V15.194H15.4515V9.39844Z", fill: "white" }), /* @__PURE__ */ React18.createElement(
258
354
  "path",
259
355
  {
260
- d: "M20.5 10.19H17.61C15.24 10.19 13.31 8.26 13.31 5.89V3C13.31 2.45 12.86 2 12.31 2H8.07C4.99 2 2.5 4 2.5 7.57V16.43C2.5 20 4.99 22 8.07 22H15.93C19.01 22 21.5 20 21.5 16.43V11.19C21.5 10.64 21.05 10.19 20.5 10.19Z",
261
- fill: "black"
356
+ d: "M11.802 9.39844C12.3516 9.39844 12.8501 9.52238 13.2974 9.77026C13.7473 10.0181 14.1003 10.3617 14.3562 10.8009C14.6122 11.24 14.7402 11.7304 14.7402 12.272C14.7402 12.8243 14.6122 13.3241 14.3562 13.7714C14.1003 14.216 13.7473 14.5649 13.2974 14.8182C12.8501 15.0688 12.3516 15.194 11.802 15.194H9.81757V9.39844H11.802ZM11.8868 14.018C12.3449 14.018 12.7235 13.8522 13.0225 13.5208C13.3243 13.1894 13.4752 12.7731 13.4752 12.272C13.4752 11.7789 13.3256 11.3734 13.0266 11.0555C12.7302 10.7349 12.3503 10.5745 11.8868 10.5745H11.0422V14.018H11.8868Z",
357
+ fill: "white"
262
358
  }
263
- ), /* @__PURE__ */ React13.createElement(
359
+ ), /* @__PURE__ */ React18.createElement(
264
360
  "path",
265
361
  {
266
- d: "M15.8 2.20999C15.39 1.79999 14.68 2.07999 14.68 2.64999V6.13999C14.68 7.59999 15.92 8.80999 17.43 8.80999C18.38 8.81999 19.7 8.81999 20.83 8.81999C21.4 8.81999 21.7 8.14999 21.3 7.74999C19.86 6.29999 17.28 3.68999 15.8 2.20999Z",
267
- fill: "black"
362
+ d: "M7.2067 9.39844C7.77521 9.39844 8.24403 9.57357 8.61316 9.92384C8.98499 10.2741 9.1709 10.7173 9.1709 11.2535C9.1709 11.7951 8.98499 12.2437 8.61316 12.5994C8.24403 12.955 7.77521 13.1328 7.2067 13.1328H6.2246V15.194H5V9.39844H7.2067ZM7.2067 11.9568C7.41686 11.9568 7.59065 11.8907 7.72806 11.7587C7.86817 11.624 7.93822 11.4556 7.93822 11.2535C7.93822 11.0595 7.86817 10.8979 7.72806 10.7685C7.59065 10.6392 7.41686 10.5745 7.2067 10.5745H6.2246V11.9568H7.2067Z",
363
+ fill: "white"
268
364
  }
269
- )), "ICBold24File");
365
+ )), "ICColor24Pdf");
366
+
367
+ // src/typography.ts
368
+ var typography = {
369
+ "Body-16-400": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 22;\n font-weight: 400;\n font-size: 16;\n ",
370
+ "Body-15-400": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 20;\n font-weight: 400;\n font-size: 15;\n ",
371
+ "Paragraph-16-400": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 28;\n font-weight: 400;\n font-size: 16;\n ",
372
+ "Paragraph-15-400": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 26;\n font-weight: 400;\n font-size: 15;\n ",
373
+ "Caption-13-400": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 18;\n font-weight: 400;\n font-size: 13;\n ",
374
+ "Caption-11-400": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 14.299999237060547;\n font-weight: 400;\n font-size: 11;\n ",
375
+ "Title-32-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 41.599998474121094;\n font-weight: 500;\n font-size: 32;\n ",
376
+ "Title-24-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 32;\n font-weight: 500;\n font-size: 24;\n ",
377
+ "Title-20-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 26;\n font-weight: 500;\n font-size: 20;\n ",
378
+ "Body-16-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 22;\n font-weight: 500;\n font-size: 16;\n ",
379
+ "Body-15-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 20;\n font-weight: 500;\n font-size: 15;\n ",
380
+ "Paragraph-16-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 28;\n font-weight: 500;\n font-size: 16;\n ",
381
+ "Paragraph-15-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 26;\n font-weight: 500;\n font-size: 15;\n ",
382
+ "Caption-13-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 18;\n font-weight: 500;\n font-size: 13;\n ",
383
+ "Caption-11-500": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 14.299999237060547;\n font-weight: 500;\n font-size: 11;\n ",
384
+ "Title-32-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 41.599998474121094;\n font-weight: 700;\n font-size: 32;\n ",
385
+ "Title-24-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 32;\n font-weight: 700;\n font-size: 24;\n ",
386
+ "Title-20-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 26;\n font-weight: 700;\n font-size: 20;\n ",
387
+ "Body-16-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 22;\n font-weight: 700;\n font-size: 16;\n ",
388
+ "Body-15-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 20;\n font-weight: 700;\n font-size: 15;\n ",
389
+ "Paragraph-16-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 28;\n font-weight: 700;\n font-size: 16;\n ",
390
+ "Paragraph-15-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 26;\n font-weight: 700;\n font-size: 15;\n ",
391
+ "Caption-13-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 18;\n font-weight: 700;\n font-size: 13;\n ",
392
+ "Caption-11-700": "\n font-family: 'Pretendard JP Variable', 'Pretendard JP', Pretendard, sans-serif;\n line-height: 14.299999237060547;\n font-weight: 700;\n font-size: 11;\n "
393
+ };
270
394
  export {
271
395
  ICBold16Android,
272
396
  ICBold16Apple,
273
397
  ICBold16Chrome,
398
+ ICBold16QuoteUp,
274
399
  ICBold24Caution,
275
400
  ICBold24Chat,
276
401
  ICBold24File,
277
402
  ICBold24Globe,
278
403
  ICBold24Image,
279
404
  ICBold24Info,
405
+ ICColor24Excel,
406
+ ICColor24Html,
407
+ ICColor24Pdf,
408
+ ICColor24Ppt,
409
+ ICColor24Text,
410
+ ICColor24Word,
280
411
  ICLine16Mobile,
281
- ICLine24ArrowLeft,
282
- ICLine24Close,
283
- ICLine24Menu,
284
- color
412
+ ICLine24SelectText,
413
+ color,
414
+ typography
285
415
  };
286
416
  /*! For license information please see index.mjs.LEGAL.txt */
287
417
  //# sourceMappingURL=index.mjs.map