gd-design-library 1.0.2 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. package/README.md +2 -2
  2. package/ai/README.md +210 -16
  3. package/ai/schemas/components/Accordion.d.ts +84 -0
  4. package/ai/schemas/components/Button.d.ts +12 -0
  5. package/ai/schemas/components/ChatContainer.d.ts +0 -8
  6. package/ai/schemas/components/Column.d.ts +5 -5
  7. package/ai/schemas/components/InputFile.d.ts +17 -5
  8. package/ai/schemas/components/Menu.d.ts +37 -0
  9. package/ai/schemas/components/Row.d.ts +6 -6
  10. package/ai/schemas/components/Scroll.d.ts +7 -0
  11. package/ai/schemas/components/Typography.d.ts +0 -21
  12. package/assets/icons/account_circle.d.ts +1 -3
  13. package/assets/icons/account_circle.js +7 -14
  14. package/assets/icons/arrow-down.d.ts +2 -3
  15. package/assets/icons/arrow-down.js +6 -11
  16. package/assets/icons/arrow-forward.d.ts +1 -3
  17. package/assets/icons/arrow-forward.js +6 -13
  18. package/assets/icons/attachment.d.ts +1 -3
  19. package/assets/icons/attachment.js +7 -14
  20. package/assets/icons/check.d.ts +1 -3
  21. package/assets/icons/check.js +5 -11
  22. package/assets/icons/chevron-left.d.ts +1 -3
  23. package/assets/icons/chevron-left.js +7 -14
  24. package/assets/icons/chevron-right.d.ts +1 -3
  25. package/assets/icons/chevron-right.js +6 -13
  26. package/assets/icons/content-copy.d.ts +1 -3
  27. package/assets/icons/content-copy.js +7 -14
  28. package/assets/icons/delete_outlined.d.ts +1 -3
  29. package/assets/icons/delete_outlined.js +5 -12
  30. package/assets/icons/dot.d.ts +1 -3
  31. package/assets/icons/dot.js +5 -11
  32. package/assets/icons/error_outline.d.ts +1 -4
  33. package/assets/icons/error_outline.js +6 -18
  34. package/assets/icons/eye.d.ts +1 -3
  35. package/assets/icons/eye.js +7 -14
  36. package/assets/icons/file-copy.d.ts +1 -3
  37. package/assets/icons/file-copy.js +7 -13
  38. package/assets/icons/filter.d.ts +1 -3
  39. package/assets/icons/filter.js +6 -13
  40. package/assets/icons/folder.d.ts +1 -3
  41. package/assets/icons/folder.js +6 -13
  42. package/assets/icons/folderOpen.d.ts +1 -3
  43. package/assets/icons/folderOpen.js +7 -14
  44. package/assets/icons/home.d.ts +1 -3
  45. package/assets/icons/home.js +6 -13
  46. package/assets/icons/local_shipping.d.ts +1 -3
  47. package/assets/icons/local_shipping.js +4 -11
  48. package/assets/icons/minus.d.ts +1 -3
  49. package/assets/icons/minus.js +7 -13
  50. package/assets/icons/mobile_menu_button.d.ts +1 -3
  51. package/assets/icons/mobile_menu_button.js +7 -14
  52. package/assets/icons/paymentCard.d.ts +1 -3
  53. package/assets/icons/paymentCard.js +6 -13
  54. package/assets/icons/plus.d.ts +1 -3
  55. package/assets/icons/plus.js +5 -11
  56. package/assets/icons/portrait.d.ts +1 -3
  57. package/assets/icons/portrait.js +5 -12
  58. package/assets/icons/processing.d.ts +1 -3
  59. package/assets/icons/processing.js +6 -13
  60. package/assets/icons/ruler.d.ts +1 -3
  61. package/assets/icons/ruler.js +6 -13
  62. package/assets/icons/search.d.ts +1 -3
  63. package/assets/icons/search.js +6 -13
  64. package/assets/icons/shopping_bag.d.ts +1 -3
  65. package/assets/icons/shopping_bag.js +7 -14
  66. package/assets/icons/slash.d.ts +1 -3
  67. package/assets/icons/slash.js +6 -13
  68. package/assets/icons/star.d.ts +1 -3
  69. package/assets/icons/star.js +6 -12
  70. package/assets/icons/starOutlined.d.ts +1 -3
  71. package/assets/icons/starOutlined.js +5 -11
  72. package/assets/icons/toast_error.d.ts +1 -3
  73. package/assets/icons/toast_error.js +9 -15
  74. package/assets/icons/toast_info.d.ts +1 -3
  75. package/assets/icons/toast_info.js +7 -13
  76. package/assets/icons/toast_warning.d.ts +1 -3
  77. package/assets/icons/toast_warning.js +7 -13
  78. package/assets/icons/upload.d.ts +1 -3
  79. package/assets/icons/upload.js +6 -13
  80. package/assets/icons/volume-up.d.ts +1 -3
  81. package/assets/icons/volume-up.js +6 -13
  82. package/assets/icons/wifiTethering.d.ts +1 -3
  83. package/assets/icons/wifiTethering.js +4 -11
  84. package/components/core/Button/Button.js +30 -27
  85. package/components/core/Button/Button.types.d.ts +2 -2
  86. package/components/core/Button/ButtonStyled.js +40 -39
  87. package/components/core/Dropdown/Dropdown.d.ts +1 -1
  88. package/components/core/Dropdown/Dropdown.js +16 -16
  89. package/components/core/Dropdown/Dropdown.types.d.ts +3 -3
  90. package/components/core/Dropdown/DropdownStyled.js +13 -14
  91. package/components/core/Icon/Icon.js +41 -33
  92. package/components/core/Icon/Icon.types.d.ts +2 -1
  93. package/components/core/Icon/constants.d.ts +37 -109
  94. package/components/core/Input/Input.d.ts +1 -1
  95. package/components/core/InputFile/InputFile.d.ts +0 -32
  96. package/components/core/InputFile/InputFile.js +47 -33
  97. package/components/core/InputFile/InputFileStyled.js +24 -22
  98. package/components/core/Loader/Loader.js +19 -17
  99. package/components/core/Loader/Loader.types.d.ts +3 -1
  100. package/components/core/Loader/LoaderStyled.js +34 -30
  101. package/components/core/Menu/Menu.d.ts +2 -2
  102. package/components/core/Menu/Menu.js +113 -93
  103. package/components/core/Menu/Menu.types.d.ts +16 -11
  104. package/components/core/Menu/MenuStyled.d.ts +1 -1
  105. package/components/core/Menu/constants.js +4 -12
  106. package/components/core/Modal/Modal.js +60 -36
  107. package/components/core/Modal/ModalStyled.js +21 -22
  108. package/components/core/Scroll/Scroll.d.ts +6 -0
  109. package/components/core/Scroll/Scroll.js +53 -31
  110. package/components/core/Scroll/Scroll.types.d.ts +5 -0
  111. package/components/core/Scroll/ScrollBar.js +45 -43
  112. package/components/core/Scroll/ScrollStyled.js +46 -42
  113. package/components/core/Scroll/constants.d.ts +2 -0
  114. package/components/core/Scroll/constants.js +6 -4
  115. package/components/core/Select/Select.js +162 -134
  116. package/components/core/Select/Select.types.d.ts +2 -4
  117. package/components/core/Snackbar/Snackbar.js +60 -37
  118. package/components/core/Snackbar/Snackbar.types.d.ts +1 -2
  119. package/components/core/Snackbar/SnackbarManager.js +45 -30
  120. package/components/core/Snackbar/SnackbarStyled.d.ts +5 -5
  121. package/components/core/Snackbar/SnackbarStyled.js +111 -101
  122. package/components/core/Textarea/Textarea.d.ts +4 -0
  123. package/components/core/Tooltip/Tooltip.js +68 -44
  124. package/components/core/Tooltip/TooltipStyled.js +26 -27
  125. package/components/core/Tooltip/utils.js +47 -45
  126. package/components/core/Typography/Typography.js +18 -18
  127. package/components/core/Typography/Typography.types.d.ts +3 -3
  128. package/components/core/Typography/TypographyStyled.js +28 -29
  129. package/components/domainSpecific/Accordion/Accordion.d.ts +1 -1
  130. package/components/domainSpecific/Accordion/Accordion.js +19 -17
  131. package/components/domainSpecific/Accordion/Accordion.types.d.ts +7 -4
  132. package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.d.ts +1 -1
  133. package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.js +13 -12
  134. package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.d.ts +1 -1
  135. package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.js +15 -14
  136. package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.d.ts +1 -1
  137. package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.js +18 -16
  138. package/components/domainSpecific/Accordion/AccordionStyled.js +44 -35
  139. package/components/domainSpecific/Card/Card.js +31 -27
  140. package/components/domainSpecific/Card/CardTitle/constants.js +4 -4
  141. package/components/domainSpecific/Header/Header.js +4 -4
  142. package/components/domainSpecific/SearchModal/SearchModal.js +0 -1
  143. package/components/domainSpecific/SearchModal/SearchModal.types.d.ts +1 -1
  144. package/components/index.types.d.ts +1 -0
  145. package/components/layout/ChatContainer/ChatContainer.d.ts +1 -1
  146. package/components/layout/ChatContainer/ChatContainer.js +58 -41
  147. package/components/layout/ChatContainer/ChatContainer.types.d.ts +8 -5
  148. package/components/layout/ChatContainer/ChatContainerStyled.d.ts +2 -0
  149. package/components/layout/ChatContainer/ChatContainerStyled.js +105 -84
  150. package/components/layout/Column/Column.types.d.ts +3 -1
  151. package/components/layout/Column/ColumnStyled.js +23 -23
  152. package/components/layout/FlexContainer/FlexContainerStyled.js +7 -8
  153. package/components/layout/Row/Row.d.ts +1 -1
  154. package/components/layout/Row/Row.js +20 -20
  155. package/components/layout/Row/Row.types.d.ts +3 -1
  156. package/components/layout/Row/RowStyled.js +26 -26
  157. package/constants/index.d.ts +0 -1
  158. package/hooks/index.d.ts +1 -0
  159. package/hooks/useLogger/NoOpLogger.d.ts +11 -0
  160. package/hooks/useLogger/NoOpLogger.js +15 -0
  161. package/hooks/useLogger/index.d.ts +2 -0
  162. package/hooks/useLogger/useLogger.d.ts +4 -0
  163. package/hooks/useLogger/useLogger.js +27 -0
  164. package/hooks/useLogger/useLogger.types.d.ts +30 -0
  165. package/hooks/useTheme/NoOpTheme.d.ts +4050 -0
  166. package/hooks/useTheme/NoOpTheme.js +15 -0
  167. package/hooks/useTheme/useTheme.d.ts +3 -4
  168. package/hooks/useTheme/useTheme.js +62 -41
  169. package/hooks/useTheme/useTheme.types.d.ts +3 -2
  170. package/index.d.ts +4 -0
  171. package/index.js +354 -350
  172. package/llms.txt +39 -19
  173. package/package.json +1 -1
  174. package/tokens/accordion.d.ts +9 -3
  175. package/tokens/accordion.js +14 -11
  176. package/tokens/button.d.ts +17 -19
  177. package/tokens/button.js +54 -56
  178. package/tokens/card.d.ts +2 -3
  179. package/tokens/card.js +50 -53
  180. package/tokens/carousel.d.ts +2 -2
  181. package/tokens/carousel.js +8 -9
  182. package/tokens/chat.d.ts +69 -48
  183. package/tokens/chat.js +86 -68
  184. package/tokens/constants.d.ts +0 -1
  185. package/tokens/constants.js +1 -1
  186. package/tokens/defaultTheme.d.ts +199 -112
  187. package/tokens/defaultTheme.js +27 -25
  188. package/tokens/header.d.ts +1 -1
  189. package/tokens/header.js +3 -4
  190. package/tokens/index.d.ts +175 -104
  191. package/tokens/index.js +102 -101
  192. package/tokens/input.d.ts +2 -2
  193. package/tokens/input.js +25 -26
  194. package/tokens/inputfile.d.ts +1 -1
  195. package/tokens/inputfile.js +4 -4
  196. package/tokens/link.d.ts +5 -0
  197. package/tokens/loader.d.ts +3 -0
  198. package/tokens/loader.js +3 -0
  199. package/tokens/menu.d.ts +1 -0
  200. package/tokens/menu.js +1 -0
  201. package/tokens/modal.d.ts +6 -4
  202. package/tokens/modal.js +42 -60
  203. package/tokens/scroll.d.ts +19 -2
  204. package/tokens/scroll.js +23 -7
  205. package/tokens/select.d.ts +9 -7
  206. package/tokens/select.js +30 -29
  207. package/tokens/snackbar.d.ts +36 -20
  208. package/tokens/snackbar.js +92 -93
  209. package/tokens/stepper.d.ts +1 -1
  210. package/tokens/stepper.js +3 -3
  211. package/tokens/tabs.d.ts +1 -1
  212. package/tokens/tabs.js +1 -1
  213. package/tokens/textarea.d.ts +4 -0
  214. package/tokens/tooltip.d.ts +5 -1
  215. package/tokens/tooltip.js +23 -21
  216. package/tokens/typography.js +114 -116
  217. package/tokens/values.d.ts +5 -1
  218. package/tokens/values.js +12 -8
  219. package/tokens/wrapper.d.ts +2 -2
  220. package/tokens/wrapper.js +7 -7
  221. package/tokens/zIndex.d.ts +9 -0
  222. package/tokens/zIndex.js +12 -0
  223. package/types/index.d.ts +0 -1
  224. package/types/styles.d.ts +1 -0
  225. package/utils/helpers.js +14 -15
  226. package/CHANGELOG.md +0 -177
  227. package/constants/positioning.d.ts +0 -9
  228. package/constants/positioning.js +0 -11
  229. package/types/chat.d.ts +0 -5
  230. package/types/chat.js +0 -4
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as n } from "../../tokens/icon.js";
4
- import { SizeVariant as c } from "../../types/common.js";
5
- const {
6
- width: l,
7
- height: h
8
- } = n.size[c.Sm], f = ({
9
- width: o = l,
10
- height: i = h,
11
- fillSvg: e = "none",
12
- fill: r = "currentColor",
13
- ...C
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 24 24", fill: e, xmlns: "http://www.w3.org/2000/svg", ...C, children: /* @__PURE__ */ t("path", { d: "M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 5C13.66 5 15 6.34 15 8C15 9.66 13.66 11 12 11C10.34 11 9 9.66 9 8C9 6.34 10.34 5 12 5ZM12 19.2C9.5 19.2 7.29 17.92 6 15.98C6.03 13.99 10 12.9 12 12.9C13.99 12.9 17.97 13.99 18 15.98C16.71 17.92 14.5 19.2 12 19.2Z", fill: r }) });
2
+ import { jsx as C } from "@emotion/react/jsx-runtime";
3
+ const c = ({
4
+ fillSvg: o = "none",
5
+ fill: n = "currentColor",
6
+ ...r
7
+ }) => /* @__PURE__ */ C("svg", { viewBox: "0 0 24 24", fill: o, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ C("path", { d: "M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 5C13.66 5 15 6.34 15 8C15 9.66 13.66 11 12 11C10.34 11 9 9.66 9 8C9 6.34 10.34 5 12 5ZM12 19.2C9.5 19.2 7.29 17.92 6 15.98C6.03 13.99 10 12.9 12 12.9C13.99 12.9 17.97 13.99 18 15.98C16.71 17.92 14.5 19.2 12 19.2Z", fill: n }) });
15
8
  export {
16
- f as AccountCircleIcon
9
+ c as AccountCircleIcon
17
10
  };
@@ -1,6 +1,5 @@
1
- export declare const ArrowDownIcon: ({ width, height, fillSvg, fill, }: {
2
- width?: number | undefined;
3
- height?: number | undefined;
1
+ export declare const ArrowDownIcon: ({ fillSvg, fill, ...rest }: {
2
+ [x: string]: any;
4
3
  fillSvg?: string | undefined;
5
4
  fill?: string | undefined;
6
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,15 +1,10 @@
1
1
  "use client";
2
2
  import { jsx as o } from "@emotion/react/jsx-runtime";
3
- import { icon as n } from "../../tokens/icon.js";
4
- const {
5
- width: s,
6
- height: h
7
- } = n.size.xs, c = ({
8
- width: t = s,
9
- height: e = h,
10
- fillSvg: i = "none",
11
- fill: r = "currentColor"
12
- }) => /* @__PURE__ */ o("svg", { width: t, height: e, viewBox: "0 0 24 24", fill: i, xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ o("path", { d: "M8.11997 9.29006L12 13.1701L15.88 9.29006C16.27 8.90006 16.9 8.90006 17.29 9.29006C17.68 9.68006 17.68 10.3101 17.29 10.7001L12.7 15.2901C12.31 15.6801 11.68 15.6801 11.29 15.2901L6.69997 10.7001C6.30997 10.3101 6.30997 9.68006 6.69997 9.29006C7.08997 8.91006 7.72997 8.90006 8.11997 9.29006Z", fill: r }) });
3
+ const w = ({
4
+ fillSvg: r = "none",
5
+ fill: n = "currentColor",
6
+ ...t
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 24 24", fill: r, xmlns: "http://www.w3.org/2000/svg", ...t, children: /* @__PURE__ */ o("path", { d: "M8.11997 9.29006L12 13.1701L15.88 9.29006C16.27 8.90006 16.9 8.90006 17.29 9.29006C17.68 9.68006 17.68 10.3101 17.29 10.7001L12.7 15.2901C12.31 15.6801 11.68 15.6801 11.29 15.2901L6.69997 10.7001C6.30997 10.3101 6.30997 9.68006 6.69997 9.29006C7.08997 8.91006 7.72997 8.90006 8.11997 9.29006Z", fill: n }) });
13
8
  export {
14
- c as ArrowDownIcon
9
+ w as ArrowDownIcon
15
10
  };
@@ -1,7 +1,5 @@
1
- export declare const ArrowForwardIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const ArrowForwardIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
2
  import { jsx as o } from "@emotion/react/jsx-runtime";
3
- import { icon as h } from "../../tokens/icon.js";
4
- import { SizeVariant as l } from "../../types/common.js";
5
- const {
6
- width: m,
7
- height: s
8
- } = h.size[l.Sm], d = ({
9
- width: t = m,
10
- height: r = s,
11
- fillSvg: i = "none",
12
- fill: e = "currentColor",
13
- ...n
14
- }) => /* @__PURE__ */ o("svg", { width: t, height: r, viewBox: "0 0 16 16", fill: i, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ o("path", { d: "M1 8.99997H12.17L7.29 13.88C6.9 14.27 6.9 14.91 7.29 15.3C7.68 15.69 8.31 15.69 8.7 15.3L15.29 8.70997C15.68 8.31997 15.68 7.68997 15.29 7.29997L8.71 0.699971C8.32 0.309971 7.69 0.309971 7.3 0.699971C6.91 1.08997 6.91 1.71997 7.3 2.10997L12.17 6.99997H1C0.45 6.99997 0 7.44997 0 7.99997C0 8.54997 0.45 8.99997 1 8.99997Z", fill: e }) });
3
+ const e = ({
4
+ fillSvg: r = "none",
5
+ fill: n = "currentColor",
6
+ ...t
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 16 16", fill: r, xmlns: "http://www.w3.org/2000/svg", ...t, children: /* @__PURE__ */ o("path", { d: "M1 8.99997H12.17L7.29 13.88C6.9 14.27 6.9 14.91 7.29 15.3C7.68 15.69 8.31 15.69 8.7 15.3L15.29 8.70997C15.68 8.31997 15.68 7.68997 15.29 7.29997L8.71 0.699971C8.32 0.309971 7.69 0.309971 7.3 0.699971C6.91 1.08997 6.91 1.71997 7.3 2.10997L12.17 6.99997H1C0.45 6.99997 0 7.44997 0 7.99997C0 8.54997 0.45 8.99997 1 8.99997Z", fill: n }) });
15
8
  export {
16
- d as ArrowForwardIcon
9
+ e as ArrowForwardIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const AttachmentIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const AttachmentIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as n } from "../../tokens/icon.js";
4
- import { SizeVariant as h } from "../../types/common.js";
5
- const {
6
- width: m,
7
- height: V
8
- } = n.size[h.Sm], a = ({
9
- width: C = m,
10
- height: o = V,
11
- fillSvg: i = "none",
12
- fill: e = "currentColor",
13
- ...r
14
- }) => /* @__PURE__ */ t("svg", { width: C, height: o, viewBox: "0 0 11 22", fill: i, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M9.5 5.75002V16.33C9.5 18.42 7.97 20.28 5.89 20.48C3.5 20.71 1.5 18.84 1.5 16.5V4.14002C1.5 2.83002 2.44 1.64002 3.74 1.51002C5.24 1.36002 6.5 2.53002 6.5 4.00002V14.5C6.5 15.05 6.05 15.5 5.5 15.5C4.95 15.5 4.5 15.05 4.5 14.5V5.75002C4.5 5.34002 4.16 5.00002 3.75 5.00002C3.34 5.00002 3 5.34002 3 5.75002V14.36C3 15.67 3.94 16.86 5.24 16.99C6.74 17.14 8 15.97 8 14.5V4.17002C8 2.08002 6.47 0.220024 4.39 0.0200239C2.01 -0.209976 0 1.66002 0 4.00002V16.27C0 19.14 2.1 21.71 4.96 21.98C8.25 22.28 11 19.72 11 16.5V5.75002C11 5.34002 10.66 5.00002 10.25 5.00002C9.84 5.00002 9.5 5.34002 9.5 5.75002Z", fill: e }) });
2
+ import { jsx as C } from "@emotion/react/jsx-runtime";
3
+ const r = ({
4
+ fillSvg: t = "none",
5
+ fill: o = "currentColor",
6
+ ...n
7
+ }) => /* @__PURE__ */ C("svg", { viewBox: "0 0 11 22", fill: t, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ C("path", { d: "M9.5 5.75002V16.33C9.5 18.42 7.97 20.28 5.89 20.48C3.5 20.71 1.5 18.84 1.5 16.5V4.14002C1.5 2.83002 2.44 1.64002 3.74 1.51002C5.24 1.36002 6.5 2.53002 6.5 4.00002V14.5C6.5 15.05 6.05 15.5 5.5 15.5C4.95 15.5 4.5 15.05 4.5 14.5V5.75002C4.5 5.34002 4.16 5.00002 3.75 5.00002C3.34 5.00002 3 5.34002 3 5.75002V14.36C3 15.67 3.94 16.86 5.24 16.99C6.74 17.14 8 15.97 8 14.5V4.17002C8 2.08002 6.47 0.220024 4.39 0.0200239C2.01 -0.209976 0 1.66002 0 4.00002V16.27C0 19.14 2.1 21.71 4.96 21.98C8.25 22.28 11 19.72 11 16.5V5.75002C11 5.34002 10.66 5.00002 10.25 5.00002C9.84 5.00002 9.5 5.34002 9.5 5.75002Z", fill: o }) });
15
8
  export {
16
- a as AttachmentIcon
9
+ r as AttachmentIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const CheckIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const CheckIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,16 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as h } from "../../tokens/icon.js";
4
- const {
5
- width: s,
6
- height: c
7
- } = h.size.xs, d = ({
8
- width: o = s,
9
- height: e = c,
10
- fillSvg: i = "none",
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const C = ({
4
+ fillSvg: e = "none",
11
5
  fill: n = "currentColor",
12
6
  ...r
13
- }) => /* @__PURE__ */ t("svg", { width: o, height: e, viewBox: "0 0 18 13", fill: i, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M6.00001 10.1699L2.53001 6.69995C2.14002 6.30995 1.51001 6.30995 1.12001 6.69995C0.730015 7.08995 0.730015 7.71995 1.12001 8.10995L5.30001 12.2899C5.69001 12.6799 6.32001 12.6799 6.71001 12.2899L17.29 1.70995C17.68 1.31995 17.68 0.689946 17.29 0.299946C16.9 -0.0900537 16.27 -0.0900537 15.88 0.299946L6.00001 10.1699Z", fill: n }) });
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 18 13", fill: e, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ o("path", { d: "M6.00001 10.1699L2.53001 6.69995C2.14002 6.30995 1.51001 6.30995 1.12001 6.69995C0.730015 7.08995 0.730015 7.71995 1.12001 8.10995L5.30001 12.2899C5.69001 12.6799 6.32001 12.6799 6.71001 12.2899L17.29 1.70995C17.68 1.31995 17.68 0.689946 17.29 0.299946C16.9 -0.0900537 16.27 -0.0900537 15.88 0.299946L6.00001 10.1699Z", fill: n }) });
14
8
  export {
15
- d as CheckIcon
9
+ C as CheckIcon
16
10
  };
@@ -1,7 +1,5 @@
1
- export declare const ChevronLeftIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const ChevronLeftIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as s } from "../../tokens/icon.js";
4
- import { SizeVariant as l } from "../../types/common.js";
5
- const {
6
- width: h,
7
- height: a
8
- } = s.size[l.Xs], d = ({
9
- width: e = h,
10
- height: o = a,
11
- fillSvg: r = "none",
12
- fill: i = "currentColor",
13
- ...n
14
- }) => /* @__PURE__ */ t("svg", { xmlns: "http://www.w3.org/2000/svg", width: e, height: o, viewBox: "0 0 7 12", fill: r, ...n, children: /* @__PURE__ */ t("g", { transform: "translate(7 0) scale(-1 1)", children: /* @__PURE__ */ t("path", { d: "M0.289998 0.710022C-0.100002 1.10002 -0.100002 1.73002 0.289998 2.12002L4.17 6.00002L0.289998 9.88002C-0.100002 10.27 -0.100002 10.9 0.289998 11.29C0.679998 11.68 1.31 11.68 1.7 11.29L6.29 6.70002C6.68 6.31002 6.68 5.68002 6.29 5.29002L1.7 0.700022C1.32 0.320022 0.679998 0.320022 0.289998 0.710022Z", fill: i }) }) });
2
+ import { jsx as r } from "@emotion/react/jsx-runtime";
3
+ const l = ({
4
+ fillSvg: e = "none",
5
+ fill: n = "currentColor",
6
+ ...o
7
+ }) => /* @__PURE__ */ r("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 7 12", fill: e, ...o, children: /* @__PURE__ */ r("g", { transform: "translate(7 0) scale(-1 1)", children: /* @__PURE__ */ r("path", { d: "M0.289998 0.710022C-0.100002 1.10002 -0.100002 1.73002 0.289998 2.12002L4.17 6.00002L0.289998 9.88002C-0.100002 10.27 -0.100002 10.9 0.289998 11.29C0.679998 11.68 1.31 11.68 1.7 11.29L6.29 6.70002C6.68 6.31002 6.68 5.68002 6.29 5.29002L1.7 0.700022C1.32 0.320022 0.679998 0.320022 0.289998 0.710022Z", fill: n }) }) });
15
8
  export {
16
- d as ChevronLeftIcon
9
+ l as ChevronLeftIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const ChevronRightIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const ChevronRightIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as h } from "../../tokens/icon.js";
4
- import { SizeVariant as s } from "../../types/common.js";
5
- const {
6
- width: l,
7
- height: c
8
- } = h.size[s.Xs], f = ({
9
- width: o = l,
10
- height: i = c,
11
- fillSvg: e = "none",
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const C = ({
4
+ fillSvg: n = "none",
12
5
  fill: r = "currentColor",
13
- ...n
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 7 12", fill: e, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ t("path", { d: "M0.289998 0.710022C-0.100002 1.10002 -0.100002 1.73002 0.289998 2.12002L4.17 6.00002L0.289998 9.88002C-0.100002 10.27 -0.100002 10.9 0.289998 11.29C0.679998 11.68 1.31 11.68 1.7 11.29L6.29 6.70002C6.68 6.31002 6.68 5.68002 6.29 5.29002L1.7 0.700022C1.32 0.320022 0.679998 0.320022 0.289998 0.710022Z", fill: r }) });
6
+ ...t
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 7 12", fill: n, xmlns: "http://www.w3.org/2000/svg", ...t, children: /* @__PURE__ */ o("path", { d: "M0.289998 0.710022C-0.100002 1.10002 -0.100002 1.73002 0.289998 2.12002L4.17 6.00002L0.289998 9.88002C-0.100002 10.27 -0.100002 10.9 0.289998 11.29C0.679998 11.68 1.31 11.68 1.7 11.29L6.29 6.70002C6.68 6.31002 6.68 5.68002 6.29 5.29002L1.7 0.700022C1.32 0.320022 0.679998 0.320022 0.289998 0.710022Z", fill: r }) });
15
8
  export {
16
- f as ChevronRightIcon
9
+ C as ChevronRightIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const ContentCopyIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const ContentCopyIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as h } from "../../tokens/icon.js";
4
- import { SizeVariant as l } from "../../types/common.js";
5
- const {
6
- width: m,
7
- height: s
8
- } = h.size[l.Sm], p = ({
9
- width: o = m,
10
- height: i = s,
11
- fillSvg: e = "none",
12
- fill: n = "currentColor",
13
- ...r
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: i, fill: e, viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M10.6667 0.666748H1.33337V11.3334H2.66671V2.00008H10.6667V0.666748ZM14 3.33341H4.00004V15.3334H14V3.33341ZM12.6667 14.0001H5.33337V4.66675H12.6667V14.0001Z", fill: n }) });
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const H = ({
4
+ fillSvg: n = "none",
5
+ fill: t = "currentColor",
6
+ ...e
7
+ }) => /* @__PURE__ */ o("svg", { fill: n, viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ o("path", { d: "M10.6667 0.666748H1.33337V11.3334H2.66671V2.00008H10.6667V0.666748ZM14 3.33341H4.00004V15.3334H14V3.33341ZM12.6667 14.0001H5.33337V4.66675H12.6667V14.0001Z", fill: t }) });
15
8
  export {
16
- p as ContentCopyIcon
9
+ H as ContentCopyIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const DeleteOutlinedIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const DeleteOutlinedIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as l } from "../../tokens/icon.js";
4
- import { SizeVariant as H } from "../../types/common.js";
5
- const {
6
- width: h,
7
- height: m
8
- } = l.size[H.Sm], V = ({
9
- width: e = h,
10
- height: i = m,
2
+ import { jsx as e } from "@emotion/react/jsx-runtime";
3
+ const r = ({
11
4
  fillSvg: o = "none",
12
- fill: r = "currentColor",
5
+ fill: t = "currentColor",
13
6
  ...n
14
- }) => /* @__PURE__ */ t("svg", { xmlns: "http://www.w3.org/2000/svg", width: e, height: i, viewBox: "0 0 16 16", fill: o, ...n, children: /* @__PURE__ */ t("path", { d: "M3.99967 14H11.9997V4.66667H3.99967V14ZM5.33301 6H10.6663V12.6667H5.33301V6ZM10.333 2.66667L9.66634 2H6.33301L5.66634 2.66667H3.33301V4H12.6663V2.66667H10.333Z", fill: r }) });
7
+ }) => /* @__PURE__ */ e("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: o, ...n, children: /* @__PURE__ */ e("path", { d: "M3.99967 14H11.9997V4.66667H3.99967V14ZM5.33301 6H10.6663V12.6667H5.33301V6ZM10.333 2.66667L9.66634 2H6.33301L5.66634 2.66667H3.33301V4H12.6663V2.66667H10.333Z", fill: t }) });
15
8
  export {
16
- V as DeleteOutlinedIcon
9
+ r as DeleteOutlinedIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const DotIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const DotIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,16 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as s } from "../../tokens/icon.js";
4
- const {
5
- width: h,
6
- height: l
7
- } = s.size.xs, w = ({
8
- width: o = h,
9
- height: e = l,
10
- fillSvg: i = "none",
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const l = ({
4
+ fillSvg: t = "none",
11
5
  fill: n = "currentColor",
12
6
  ...r
13
- }) => /* @__PURE__ */ t("svg", { width: o, height: e, viewBox: "0 0 6 6", fill: i, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M2.99998 5.66665C4.47274 5.66665 5.66665 4.47274 5.66665 2.99998C5.66665 1.52722 4.47274 0.333313 2.99998 0.333313C1.52722 0.333313 0.333313 1.52722 0.333313 2.99998C0.333313 4.47274 1.52722 5.66665 2.99998 5.66665Z", fill: n }) });
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 6 6", fill: t, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ o("path", { d: "M2.99998 5.66665C4.47274 5.66665 5.66665 4.47274 5.66665 2.99998C5.66665 1.52722 4.47274 0.333313 2.99998 0.333313C1.52722 0.333313 0.333313 1.52722 0.333313 2.99998C0.333313 4.47274 1.52722 5.66665 2.99998 5.66665Z", fill: n }) });
14
8
  export {
15
- w as DotIcon
9
+ l as DotIcon
16
10
  };
@@ -1,8 +1,5 @@
1
- export declare const ErrorOutlineIcon: ({ width, height, color, fillSvg, fill, ...rest }: {
1
+ export declare const ErrorOutlineIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
- color?: string | undefined;
6
3
  fillSvg?: string | undefined;
7
4
  fill?: string | undefined;
8
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,22 +1,10 @@
1
1
  "use client";
2
- import { jsx as o } from "@emotion/react/jsx-runtime";
3
- import { colors as C } from "../../tokens/colors.js";
4
- import { icon as l } from "../../tokens/icon.js";
5
- const {
6
- width: c,
7
- height: s
8
- } = l.size.lg, {
9
- icon: {
10
- error: h
11
- }
12
- } = C, p = ({
13
- width: r = c,
14
- height: t = s,
15
- color: m = h,
16
- fillSvg: i = "none",
17
- fill: e = "currentColor",
2
+ import { jsx as C } from "@emotion/react/jsx-runtime";
3
+ const e = ({
4
+ fillSvg: o = "none",
5
+ fill: r = "currentColor",
18
6
  ...n
19
- }) => /* @__PURE__ */ o("svg", { width: r, height: t, viewBox: "0 0 24 24", fill: i, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ o("path", { d: "M12 7C12.55 7 13 7.45 13 8V12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12V8C11 7.45 11.45 7 12 7ZM11.99 2C6.47 2 2 6.48 2 12C2 17.52 6.47 22 11.99 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 11.99 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20ZM13 17H11V15H13V17Z", fill: e }) });
7
+ }) => /* @__PURE__ */ C("svg", { viewBox: "0 0 24 24", fill: o, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ C("path", { d: "M12 7C12.55 7 13 7.45 13 8V12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12V8C11 7.45 11.45 7 12 7ZM11.99 2C6.47 2 2 6.48 2 12C2 17.52 6.47 22 11.99 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 11.99 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20ZM13 17H11V15H13V17Z", fill: r }) });
20
8
  export {
21
- p as ErrorOutlineIcon
9
+ e as ErrorOutlineIcon
22
10
  };
@@ -1,7 +1,5 @@
1
- export declare const EyeIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const EyeIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as n } from "../../tokens/icon.js";
4
- import { SizeVariant as h } from "../../types/common.js";
5
- const {
6
- width: l,
7
- height: m
8
- } = n.size[h.Sm], f = ({
9
- width: o = l,
10
- height: i = m,
11
- fillSvg: e = "none",
12
- fill: r = "currentColor",
13
- ...C
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: i, fill: e, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...C, children: /* @__PURE__ */ t("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12C2.73 16.39 7 19.5 12 19.5C17 19.5 21.27 16.39 23 12C21.27 7.61 17 4.5 12 4.5ZM12 17C9.24 17 7 14.76 7 12C7 9.24 9.24 7 12 7C14.76 7 17 9.24 17 12C17 14.76 14.76 17 12 17ZM12 9C10.34 9 9 10.34 9 12C9 13.66 10.34 15 12 15C13.66 15 15 13.66 15 12C15 10.34 13.66 9 12 9Z", fill: r }) });
2
+ import { jsx as C } from "@emotion/react/jsx-runtime";
3
+ const t = ({
4
+ fillSvg: o = "none",
5
+ fill: e = "currentColor",
6
+ ...n
7
+ }) => /* @__PURE__ */ C("svg", { fill: o, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ C("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12C2.73 16.39 7 19.5 12 19.5C17 19.5 21.27 16.39 23 12C21.27 7.61 17 4.5 12 4.5ZM12 17C9.24 17 7 14.76 7 12C7 9.24 9.24 7 12 7C14.76 7 17 9.24 17 12C17 14.76 14.76 17 12 17ZM12 9C10.34 9 9 10.34 9 12C9 13.66 10.34 15 12 15C13.66 15 15 13.66 15 12C15 10.34 13.66 9 12 9Z", fill: e }) });
15
8
  export {
16
- f as EyeIcon
9
+ t as EyeIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const FileCopyIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const FileCopyIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,16 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as r } from "../../tokens/icon.js";
4
- const {
5
- width: s,
6
- height: w
7
- } = r.size.xl, g = ({
8
- width: o = s,
9
- height: e = w,
10
- fillSvg: i = "none",
11
- fill: l = "currentColor",
12
- ...n
13
- }) => /* @__PURE__ */ t("svg", { width: o, height: e, viewBox: "0 0 32 32", fill: i, ...n, xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ t("path", { xmlns: "http://www.w3.org/2000/svg", d: "M21.3334 1.33325H2.66675V22.6666H5.33341V3.99992H21.3334V1.33325ZM20.0001 6.66658L28.0001 14.6666V30.6666H8.00008V6.66658H20.0001ZM18.6667 15.9999H26.0001L18.6667 8.66658V15.9999Z", fill: l }) });
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const e = ({
4
+ fillSvg: t = "none",
5
+ fill: n = "currentColor",
6
+ ...r
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 32 32", fill: t, ...r, xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ o("path", { xmlns: "http://www.w3.org/2000/svg", d: "M21.3334 1.33325H2.66675V22.6666H5.33341V3.99992H21.3334V1.33325ZM20.0001 6.66658L28.0001 14.6666V30.6666H8.00008V6.66658H20.0001ZM18.6667 15.9999H26.0001L18.6667 8.66658V15.9999Z", fill: n }) });
14
8
  export {
15
- g as FileCopyIcon
9
+ e as FileCopyIcon
16
10
  };
@@ -1,7 +1,5 @@
1
- export declare const FilterIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const FilterIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as n } from "../../tokens/icon.js";
4
- import { SizeVariant as l } from "../../types/common.js";
5
- const {
6
- width: h,
7
- height: m
8
- } = n.size[l.Sm], d = ({
9
- width: i = h,
10
- height: o = m,
11
- fillSvg: e = "none",
2
+ import { jsx as C } from "@emotion/react/jsx-runtime";
3
+ const n = ({
4
+ fillSvg: o = "none",
12
5
  fill: r = "currentColor",
13
- ...C
14
- }) => /* @__PURE__ */ t("svg", { xmlns: "http://www.w3.org/2000/svg", width: i, height: o, viewBox: "0 0 24 24", fill: e, ...C, children: /* @__PURE__ */ t("path", { d: "M11 18H13C13.55 18 14 17.55 14 17C14 16.45 13.55 16 13 16H11C10.45 16 10 16.45 10 17C10 17.55 10.45 18 11 18ZM3 7C3 7.55 3.45 8 4 8H20C20.55 8 21 7.55 21 7C21 6.45 20.55 6 20 6H4C3.45 6 3 6.45 3 7ZM7 13H17C17.55 13 18 12.55 18 12C18 11.45 17.55 11 17 11H7C6.45 11 6 11.45 6 12C6 12.55 6.45 13 7 13Z", fill: r }) });
6
+ ...t
7
+ }) => /* @__PURE__ */ C("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: o, ...t, children: /* @__PURE__ */ C("path", { d: "M11 18H13C13.55 18 14 17.55 14 17C14 16.45 13.55 16 13 16H11C10.45 16 10 16.45 10 17C10 17.55 10.45 18 11 18ZM3 7C3 7.55 3.45 8 4 8H20C20.55 8 21 7.55 21 7C21 6.45 20.55 6 20 6H4C3.45 6 3 6.45 3 7ZM7 13H17C17.55 13 18 12.55 18 12C18 11.45 17.55 11 17 11H7C6.45 11 6 11.45 6 12C6 12.55 6.45 13 7 13Z", fill: r }) });
15
8
  export {
16
- d as FilterIcon
9
+ n as FilterIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const FolderIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const FolderIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as l } from "../../tokens/icon.js";
4
- import { SizeVariant as h } from "../../types/common.js";
5
- const {
6
- width: m,
7
- height: s
8
- } = l.size[h.Sm], p = ({
9
- width: o = m,
10
- height: i = s,
11
- fillSvg: e = "none",
12
- fill: r = "currentColor",
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const l = ({
4
+ fillSvg: r = "none",
5
+ fill: e = "currentColor",
13
6
  ...n
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: e, ...n, children: /* @__PURE__ */ t("path", { d: "M6.66665 2.66675H1.33331V13.3334H14.6666V4.00008H7.99998L6.66665 2.66675Z", fill: r }) });
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: r, ...n, children: /* @__PURE__ */ o("path", { d: "M6.66665 2.66675H1.33331V13.3334H14.6666V4.00008H7.99998L6.66665 2.66675Z", fill: e }) });
15
8
  export {
16
- p as FolderIcon
9
+ l as FolderIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const FolderOpenIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const FolderOpenIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as l } from "../../tokens/icon.js";
4
- import { SizeVariant as h } from "../../types/common.js";
5
- const {
6
- width: m,
7
- height: s
8
- } = l.size[h.Sm], f = ({
9
- width: o = m,
10
- height: e = s,
11
- fillSvg: i = "none",
12
- fill: r = "currentColor",
13
- ...n
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: e, viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: i, ...n, children: /* @__PURE__ */ t("path", { d: "M14.6666 4.00008H7.99998L6.66665 2.66675H1.33331V13.3334H14.6666V4.00008ZM13.3333 12.0001H2.66665V5.33341H13.3333V12.0001Z", fill: r }) });
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const l = ({
4
+ fillSvg: e = "none",
5
+ fill: n = "currentColor",
6
+ ...r
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: e, ...r, children: /* @__PURE__ */ o("path", { d: "M14.6666 4.00008H7.99998L6.66665 2.66675H1.33331V13.3334H14.6666V4.00008ZM13.3333 12.0001H2.66665V5.33341H13.3333V12.0001Z", fill: n }) });
15
8
  export {
16
- f as FolderOpenIcon
9
+ l as FolderOpenIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const HomeIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const HomeIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,17 +1,10 @@
1
1
  "use client";
2
- import { jsx as t } from "@emotion/react/jsx-runtime";
3
- import { icon as h } from "../../tokens/icon.js";
4
- import { SizeVariant as l } from "../../types/common.js";
5
- const {
6
- width: m,
7
- height: s
8
- } = h.size[l.Lg], d = ({
9
- width: o = m,
10
- height: i = s,
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const C = ({
11
4
  fillSvg: e = "none",
12
- fill: r = "currentColor",
13
- ...n
14
- }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 20 17", fill: e, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ t("path", { d: "M8 16V11H12V16C12 16.55 12.45 17 13 17H16C16.55 17 17 16.55 17 16V8.99997H18.7C19.16 8.99997 19.38 8.42997 19.03 8.12997L10.67 0.599971C10.29 0.259971 9.71 0.259971 9.33 0.599971L0.969999 8.12997C0.629999 8.42997 0.839999 8.99997 1.3 8.99997H3V16C3 16.55 3.45 17 4 17H7C7.55 17 8 16.55 8 16Z", fill: r }) });
5
+ fill: n = "currentColor",
6
+ ...r
7
+ }) => /* @__PURE__ */ o("svg", { viewBox: "0 0 20 17", fill: e, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ o("path", { d: "M8 16V11H12V16C12 16.55 12.45 17 13 17H16C16.55 17 17 16.55 17 16V8.99997H18.7C19.16 8.99997 19.38 8.42997 19.03 8.12997L10.67 0.599971C10.29 0.259971 9.71 0.259971 9.33 0.599971L0.969999 8.12997C0.629999 8.42997 0.839999 8.99997 1.3 8.99997H3V16C3 16.55 3.45 17 4 17H7C7.55 17 8 16.55 8 16Z", fill: n }) });
15
8
  export {
16
- d as HomeIcon
9
+ C as HomeIcon
17
10
  };
@@ -1,7 +1,5 @@
1
- export declare const LocalShippingIcon: ({ width, height, fillSvg, fill, ...rest }: {
1
+ export declare const LocalShippingIcon: ({ fillSvg, fill, ...rest }: {
2
2
  [x: string]: any;
3
- width?: number | undefined;
4
- height?: number | undefined;
5
3
  fillSvg?: string | undefined;
6
4
  fill?: string | undefined;
7
5
  }) => import("@emotion/react/jsx-runtime").JSX.Element;