gd-design-library 0.3.4 → 0.3.5

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 (383) hide show
  1. package/README.md +2 -0
  2. package/assets/icons/account_circle.js +17 -1
  3. package/assets/icons/arrow-down.js +15 -1
  4. package/assets/icons/arrow-forward.js +17 -1
  5. package/assets/icons/attachment.js +17 -1
  6. package/assets/icons/check.js +16 -1
  7. package/assets/icons/chevron-left.js +17 -1
  8. package/assets/icons/chevron-right.js +17 -1
  9. package/assets/icons/content-copy.js +17 -1
  10. package/assets/icons/cross.js +16 -1
  11. package/assets/icons/delete_outlined.js +17 -1
  12. package/assets/icons/dot.js +16 -1
  13. package/assets/icons/edit.js +17 -1
  14. package/assets/icons/error_outline.js +22 -1
  15. package/assets/icons/eye.js +17 -1
  16. package/assets/icons/favorite.js +17 -1
  17. package/assets/icons/favorite_outlined.js +17 -1
  18. package/assets/icons/file-copy.js +16 -1
  19. package/assets/icons/filter.js +17 -1
  20. package/assets/icons/folder.js +17 -1
  21. package/assets/icons/folderOpen.js +17 -1
  22. package/assets/icons/home.js +17 -1
  23. package/assets/icons/keyboard-arrow-down.js +12 -1
  24. package/assets/icons/local_shipping.js +17 -1
  25. package/assets/icons/minus.js +16 -1
  26. package/assets/icons/mobile_menu_button.js +17 -1
  27. package/assets/icons/paymentCard.js +17 -1
  28. package/assets/icons/plus.js +16 -1
  29. package/assets/icons/portrait.js +17 -1
  30. package/assets/icons/processing.js +17 -1
  31. package/assets/icons/ruler.js +17 -1
  32. package/assets/icons/search.js +17 -1
  33. package/assets/icons/shopping_bag.js +17 -1
  34. package/assets/icons/slash.js +17 -1
  35. package/assets/icons/star.js +16 -1
  36. package/assets/icons/starOutlined.js +16 -1
  37. package/assets/icons/thumb-down.js +17 -1
  38. package/assets/icons/thumb-up.js +17 -1
  39. package/assets/icons/toast_error.js +20 -1
  40. package/assets/icons/toast_info.js +16 -1
  41. package/assets/icons/toast_success.js +20 -1
  42. package/assets/icons/toast_warning.js +16 -1
  43. package/assets/icons/upload.js +17 -1
  44. package/assets/icons/volume-up.js +17 -1
  45. package/assets/icons/wifiTethering.js +17 -1
  46. package/assets/svg/checkbox_bg_checked.svg.js +5 -2
  47. package/assets/svg/checkbox_border.svg.js +5 -2
  48. package/assets/svg/checkbox_disabled_bg_checked.svg.js +5 -2
  49. package/assets/svg/radio_bg.svg.js +5 -2
  50. package/assets/svg/radio_bg_checked.svg.js +5 -2
  51. package/components/core/Breadcrumbs/Breadcrumbs.js +34 -1
  52. package/components/core/Breadcrumbs/BreadcrumbsStyled.js +58 -1
  53. package/components/core/Breadcrumbs/constants.js +4 -1
  54. package/components/core/Button/Button.js +43 -1
  55. package/components/core/Button/ButtonStyled.js +53 -1
  56. package/components/core/Button/constants.js +4 -1
  57. package/components/core/Dropdown/Dropdown.js +38 -1
  58. package/components/core/Dropdown/DropdownStyled.js +20 -1
  59. package/components/core/Dropdown/constants.js +4 -1
  60. package/components/core/Dropdown/hooks/useDropdown.js +12 -1
  61. package/components/core/DropdownItem/DropdownItem.js +38 -1
  62. package/components/core/DropdownItem/DropdownItemStyled.js +17 -1
  63. package/components/core/DropdownItem/constants.js +4 -1
  64. package/components/core/Form/Form.js +48 -1
  65. package/components/core/Form/FormStyled.js +16 -1
  66. package/components/core/Form/constants.js +4 -1
  67. package/components/core/Form/utils.js +34 -1
  68. package/components/core/Icon/Icon.js +33 -1
  69. package/components/core/Icon/constants.js +92 -1
  70. package/components/core/Image/Image.js +39 -1
  71. package/components/core/Image/ImageStyled.js +53 -1
  72. package/components/core/Image/constants.js +4 -1
  73. package/components/core/InlineNotification/InlineNotification.js +38 -1
  74. package/components/core/InlineNotification/InlineNotificationStyled.js +29 -1
  75. package/components/core/InlineNotification/constants.js +21 -1
  76. package/components/core/Input/Input.js +72 -1
  77. package/components/core/Input/InputAdornment/InputAdornment.js +18 -1
  78. package/components/core/Input/InputAdornment/InputAdornmentStyled.js +15 -1
  79. package/components/core/Input/InputAdornment/constants.js +4 -1
  80. package/components/core/Input/InputHelper/InputHelper.js +22 -1
  81. package/components/core/Input/InputHelper/InputHelperStyled.js +17 -1
  82. package/components/core/Input/InputHelper/constants.js +4 -1
  83. package/components/core/Input/InputStyled.js +18 -1
  84. package/components/core/Input/InputWrapper/InputWrapper.js +22 -1
  85. package/components/core/Input/InputWrapper/InputWrapperStyled.js +21 -1
  86. package/components/core/Input/InputWrapper/constants.js +5 -1
  87. package/components/core/Input/constants.js +18 -1
  88. package/components/core/Input/useInputHandlers.js +31 -1
  89. package/components/core/InputFile/InputFile.js +40 -1
  90. package/components/core/InputFile/InputFileStyled.js +27 -1
  91. package/components/core/InputFile/constants.js +6 -1
  92. package/components/core/Label/Label.js +27 -1
  93. package/components/core/Label/LabelStyled.js +17 -1
  94. package/components/core/Label/constants.js +4 -1
  95. package/components/core/Link/Link.js +43 -1
  96. package/components/core/Link/LinkStyled.js +22 -1
  97. package/components/core/Link/constants.js +4 -1
  98. package/components/core/List/List.js +45 -1
  99. package/components/core/List/ListStyled.js +31 -1
  100. package/components/core/List/constants.js +4 -1
  101. package/components/core/Loader/Loader.js +28 -1
  102. package/components/core/Loader/LoaderStyled.js +41 -1
  103. package/components/core/Loader/constants.js +6 -1
  104. package/components/core/Loader/utils.js +37 -1
  105. package/components/core/Menu/Menu.js +100 -1
  106. package/components/core/Menu/MenuStyled.js +31 -1
  107. package/components/core/Menu/constants.js +24 -1
  108. package/components/core/Modal/Modal.js +47 -1
  109. package/components/core/Modal/ModalStyled.js +76 -1
  110. package/components/core/Modal/constants.js +4 -1
  111. package/components/core/Portal/Portal.d.ts +1 -2
  112. package/components/core/Portal/Portal.js +19 -1
  113. package/components/core/Portal/index.d.ts +1 -1
  114. package/components/core/Scroll/Scroll.js +40 -1
  115. package/components/core/Scroll/ScrollBar.js +68 -1
  116. package/components/core/Scroll/ScrollStyled.js +56 -1
  117. package/components/core/Scroll/constants.js +6 -1
  118. package/components/core/Scroll/utils.js +41 -1
  119. package/components/core/Select/Select.js +145 -1
  120. package/components/core/Select/SelectStyled.js +70 -1
  121. package/components/core/Select/constants.js +5 -1
  122. package/components/core/Select/hooks/useSelectContext.js +12 -1
  123. package/components/core/Separator/Separator.js +36 -1
  124. package/components/core/Separator/SeparatorStyled.js +61 -1
  125. package/components/core/Separator/constants.js +4 -1
  126. package/components/core/Skeleton/Skeleton.js +24 -1
  127. package/components/core/Skeleton/SkeletonStyled.js +28 -1
  128. package/components/core/Skeleton/constants.js +6 -1
  129. package/components/core/Slider/Slider.js +35 -1
  130. package/components/core/Slider/SliderStyled.js +20 -1
  131. package/components/core/Slider/constants.js +6 -1
  132. package/components/core/Snackbar/Snackbar.js +46 -1
  133. package/components/core/Snackbar/SnackbarManager.js +48 -1
  134. package/components/core/Snackbar/SnackbarStyled.js +109 -5
  135. package/components/core/Snackbar/constants.js +10 -1
  136. package/components/core/Switch/Switch.js +36 -1
  137. package/components/core/Switch/SwitchStyled.js +56 -1
  138. package/components/core/Switch/constants.js +4 -1
  139. package/components/core/Textarea/Textarea.js +41 -1
  140. package/components/core/Textarea/Textarea.types.d.ts +1 -3
  141. package/components/core/Textarea/Textarea.types.js +6 -1
  142. package/components/core/Textarea/TextareaStyled.js +29 -1
  143. package/components/core/Textarea/constants.js +4 -1
  144. package/components/core/Textarea/hooks/useDynamicHeightAdjustment.js +8 -1
  145. package/components/core/Textarea/hooks/useResizeObserver.js +24 -1
  146. package/components/core/Toggle/Toggle.js +37 -1
  147. package/components/core/Toggle/ToggleStyled.js +18 -1
  148. package/components/core/Toggle/constants.js +4 -1
  149. package/components/core/Tooltip/Tooltip.js +40 -1
  150. package/components/core/Tooltip/Tooltip.types.js +4 -1
  151. package/components/core/Tooltip/TooltipStyled.js +23 -1
  152. package/components/core/Tooltip/constants.js +6 -1
  153. package/components/core/Tooltip/utils.js +64 -1
  154. package/components/core/Typography/Typography.js +26 -1
  155. package/components/core/Typography/TypographyStyled.js +32 -1
  156. package/components/core/Typography/constants.js +4 -1
  157. package/components/core/Wrapper/Wrapper.js +20 -1
  158. package/components/core/Wrapper/WrapperStyled.js +23 -1
  159. package/components/core/Wrapper/constants.js +4 -1
  160. package/components/core/index.d.ts +1 -1
  161. package/components/core/types/roles.types.js +4 -1
  162. package/components/domainSpecific/Accordion/Accordion.js +35 -1
  163. package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.js +21 -1
  164. package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.js +29 -1
  165. package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.js +26 -1
  166. package/components/domainSpecific/Accordion/AccordionStyled.js +39 -1
  167. package/components/domainSpecific/Accordion/constants.js +7 -1
  168. package/components/domainSpecific/Accordion/hooks/useAccordion.js +12 -1
  169. package/components/domainSpecific/Avatar/Avatar.js +44 -1
  170. package/components/domainSpecific/Avatar/AvatarStyled.js +63 -1
  171. package/components/domainSpecific/Avatar/constants.js +6 -1
  172. package/components/domainSpecific/Card/Card.js +47 -1
  173. package/components/domainSpecific/Card/CardButton/CardButton.js +25 -1
  174. package/components/domainSpecific/Card/CardButton/CardButtonStyled.js +18 -1
  175. package/components/domainSpecific/Card/CardButton/constants.js +4 -1
  176. package/components/domainSpecific/Card/CardCounter/CardCounter.js +26 -1
  177. package/components/domainSpecific/Card/CardCounter/CardCounterStyled.js +17 -1
  178. package/components/domainSpecific/Card/CardCounter/constants.js +4 -1
  179. package/components/domainSpecific/Card/CardDescription/CardDescription.js +24 -1
  180. package/components/domainSpecific/Card/CardDescription/CardDescriptionStyled.js +24 -1
  181. package/components/domainSpecific/Card/CardDescription/constants.js +10 -1
  182. package/components/domainSpecific/Card/CardImage/CardImage.js +26 -1
  183. package/components/domainSpecific/Card/CardImage/CardImageStyled.js +18 -1
  184. package/components/domainSpecific/Card/CardImage/constants.js +4 -1
  185. package/components/domainSpecific/Card/CardPrice/CardPrice.js +22 -1
  186. package/components/domainSpecific/Card/CardPrice/CardPriceStyled.js +18 -1
  187. package/components/domainSpecific/Card/CardPrice/constants.js +4 -1
  188. package/components/domainSpecific/Card/CardRating/CardRating.js +30 -1
  189. package/components/domainSpecific/Card/CardRating/CardRatingStyled.js +18 -1
  190. package/components/domainSpecific/Card/CardRating/constants.js +6 -1
  191. package/components/domainSpecific/Card/CardTitle/CardTitle.js +25 -1
  192. package/components/domainSpecific/Card/CardTitle/CardTitleStyled.js +24 -1
  193. package/components/domainSpecific/Card/CardTitle/constants.js +10 -1
  194. package/components/domainSpecific/Card/CartStyled.js +26 -1
  195. package/components/domainSpecific/Card/constants.js +4 -1
  196. package/components/domainSpecific/Carousel/Carousel.js +137 -1
  197. package/components/domainSpecific/Carousel/Carousel.types.js +6 -1
  198. package/components/domainSpecific/Carousel/CarouselStyled.js +143 -1
  199. package/components/domainSpecific/Carousel/constants.js +4 -1
  200. package/components/domainSpecific/ChatBubble/ChatBubble.js +26 -1
  201. package/components/domainSpecific/ChatBubble/ChatBubbleStyled.js +43 -1
  202. package/components/domainSpecific/ChatBubble/constants.js +4 -1
  203. package/components/domainSpecific/ContentCarousel/ContentCarousel.js +69 -1
  204. package/components/domainSpecific/ContentCarousel/ContentCarouselStyled.js +32 -1
  205. package/components/domainSpecific/ContentCarousel/constants.js +4 -1
  206. package/components/domainSpecific/Counter/Counter.js +55 -1
  207. package/components/domainSpecific/Counter/CounterStyled.js +27 -1
  208. package/components/domainSpecific/Counter/constants.js +8 -1
  209. package/components/domainSpecific/DragAndDropFiles/DragAndDropFiles.js +48 -1
  210. package/components/domainSpecific/DragAndDropFiles/DragAndDropFilesStyled.js +16 -1
  211. package/components/domainSpecific/DragAndDropFiles/constants.js +4 -1
  212. package/components/domainSpecific/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.js +49 -1
  213. package/components/domainSpecific/Header/Header.js +88 -1
  214. package/components/domainSpecific/Header/HeaderStyled.js +136 -1
  215. package/components/domainSpecific/Header/constants.js +4 -1
  216. package/components/domainSpecific/Price/Price.js +23 -1
  217. package/components/domainSpecific/Price/PriceStyled.js +42 -1
  218. package/components/domainSpecific/Price/constants.js +4 -1
  219. package/components/domainSpecific/ProgressBar/ProgressBar.js +29 -1
  220. package/components/domainSpecific/ProgressBar/ProgressBarStyled.js +70 -1
  221. package/components/domainSpecific/ProgressBar/constants.js +7 -1
  222. package/components/domainSpecific/RadioGroup/RadioGroup.js +54 -1
  223. package/components/domainSpecific/RadioGroup/RadioGroup.types.js +4 -1
  224. package/components/domainSpecific/RadioGroup/RadioGroupItem/RadioGroupItem.js +37 -1
  225. package/components/domainSpecific/RadioGroup/RadioGroupStyled.js +130 -1
  226. package/components/domainSpecific/RadioGroup/constants.js +5 -1
  227. package/components/domainSpecific/Rating/Rating.js +63 -1
  228. package/components/domainSpecific/Rating/RatingStyled.js +61 -1
  229. package/components/domainSpecific/Rating/constants.js +9 -1
  230. package/components/domainSpecific/Search/Search.js +58 -1
  231. package/components/domainSpecific/Search/SearchStyled.js +16 -1
  232. package/components/domainSpecific/Search/constants.js +7 -1
  233. package/components/domainSpecific/SearchModal/SearchInput/SearchInput.js +26 -1
  234. package/components/domainSpecific/SearchModal/SearchInput/SearchInputStyled.js +25 -1
  235. package/components/domainSpecific/SearchModal/SearchInput/constants.js +6 -1
  236. package/components/domainSpecific/SearchModal/SearchItems/SearchItems.js +48 -1
  237. package/components/domainSpecific/SearchModal/SearchItems/SearchItemsStyled.js +82 -1
  238. package/components/domainSpecific/SearchModal/SearchItems/constants.js +10 -1
  239. package/components/domainSpecific/SearchModal/SearchItems/utils.js +7 -1
  240. package/components/domainSpecific/SearchModal/SearchLoader/SearchLoader.js +20 -1
  241. package/components/domainSpecific/SearchModal/SearchLoader/SearchLoaderStyled.js +14 -1
  242. package/components/domainSpecific/SearchModal/SearchLoader/constants.js +4 -1
  243. package/components/domainSpecific/SearchModal/SearchModal.js +39 -1
  244. package/components/domainSpecific/SearchModal/SearchModalStyled.js +29 -1
  245. package/components/domainSpecific/SearchModal/constants.js +8 -1
  246. package/components/domainSpecific/Stepper/Stepper.js +42 -1
  247. package/components/domainSpecific/Stepper/StepperStyled.js +58 -1
  248. package/components/domainSpecific/Stepper/constants.js +4 -1
  249. package/components/domainSpecific/Stepper/utils.js +37 -1
  250. package/components/domainSpecific/Tabs/Tabs.js +40 -1
  251. package/components/domainSpecific/Tabs/TabsStyled.js +79 -1
  252. package/components/domainSpecific/Tabs/constants.js +6 -1
  253. package/components/index.types.js +4 -1
  254. package/components/layout/ChatContainer/ChatContainer.js +51 -1
  255. package/components/layout/ChatContainer/ChatContainer.types.d.ts +1 -6
  256. package/components/layout/ChatContainer/ChatContainerStyled.js +71 -1
  257. package/components/layout/ChatContainer/constants.js +4 -1
  258. package/components/layout/Column/Column.js +26 -1
  259. package/components/layout/Column/ColumnStyled.js +36 -1
  260. package/components/layout/Column/constants.js +4 -1
  261. package/components/layout/FlexContainer/FlexContainer.js +25 -1
  262. package/components/layout/FlexContainer/FlexContainerStyled.js +27 -1
  263. package/components/layout/FlexContainer/constants.js +4 -1
  264. package/components/layout/FlexContainer/utils.js +18 -1
  265. package/components/layout/Row/Row.js +26 -1
  266. package/components/layout/Row/RowStyled.js +36 -1
  267. package/components/layout/Row/constants.js +4 -1
  268. package/components/templates/SkeletonSearch/SkeletonSearch.js +30 -1
  269. package/components/templates/SkeletonSearch/SkeletonSearchStyled.js +97 -1
  270. package/components/templates/SkeletonSearch/constants.js +5 -1
  271. package/components/widget/DragAndDrop/DragAndDrop.js +74 -1
  272. package/components/widget/DragAndDrop/DragAndDropStyled.js +61 -1
  273. package/components/widget/DragAndDrop/constants.js +4 -1
  274. package/components/widget/DragAndDrop/utils/validators.js +17 -1
  275. package/constants/keyboard.js +10 -1
  276. package/constants/positioning.js +11 -1
  277. package/constants/timers.js +5 -1
  278. package/hooks/useAutoFocus/useAutoFocus.js +11 -1
  279. package/hooks/useCarousel/useCarousel.js +61 -1
  280. package/hooks/useClickOutside/useClickOutside.js +15 -1
  281. package/hooks/useKeyControls/useKeyControls.js +19 -1
  282. package/hooks/useMediaQuery/useMediaQuery.js +14 -1
  283. package/hooks/useTheme/useTheme.js +47 -1
  284. package/index.js +351 -1
  285. package/package.json +17 -2
  286. package/stories/components/TokenViewer/TokenViewer.d.ts +2 -0
  287. package/stories/components/TokenViewer/TokenViewer.types.d.ts +12 -0
  288. package/stories/components/TokenViewer/TokenViewerStyled.d.ts +11 -0
  289. package/stories/components/TokenViewer/index.d.ts +1 -0
  290. package/tokens/accordion.js +72 -1
  291. package/tokens/animations.js +63 -1
  292. package/tokens/avatar.d.ts +22 -15
  293. package/tokens/avatar.js +153 -1
  294. package/tokens/borders.js +17 -1
  295. package/tokens/breadcrumbs.js +37 -1
  296. package/tokens/button.js +146 -1
  297. package/tokens/card.js +187 -1
  298. package/tokens/carousel.js +216 -1
  299. package/tokens/chat.js +118 -1
  300. package/tokens/chatbubble.js +56 -1
  301. package/tokens/colors.js +157 -1
  302. package/tokens/column.js +9 -1
  303. package/tokens/constants.js +4 -1
  304. package/tokens/counter.js +37 -1
  305. package/tokens/cursors.js +20 -1
  306. package/tokens/defaultTheme.d.ts +22 -15
  307. package/tokens/defaultTheme.js +113 -1
  308. package/tokens/display.js +19 -1
  309. package/tokens/draganddrop.js +87 -1
  310. package/tokens/draganddropfiles.js +6 -1
  311. package/tokens/flexContainer.js +13 -1
  312. package/tokens/font.js +52 -1
  313. package/tokens/form.js +6 -1
  314. package/tokens/header.js +123 -1
  315. package/tokens/icon.js +32 -1
  316. package/tokens/image.js +40 -1
  317. package/tokens/index.d.ts +22 -15
  318. package/tokens/index.js +142 -1
  319. package/tokens/inlineNotification.js +75 -1
  320. package/tokens/input.js +192 -1
  321. package/tokens/inputfile.js +12 -1
  322. package/tokens/label.js +9 -1
  323. package/tokens/link.js +66 -1
  324. package/tokens/list.js +87 -1
  325. package/tokens/loader.js +141 -1
  326. package/tokens/menu.js +19 -1
  327. package/tokens/modal.js +108 -1
  328. package/tokens/price.js +32 -1
  329. package/tokens/progressbar.js +60 -1
  330. package/tokens/radiogroup.js +103 -2
  331. package/tokens/radius.js +14 -1
  332. package/tokens/rating.js +73 -1
  333. package/tokens/reset.js +4 -1
  334. package/tokens/row.js +8 -1
  335. package/tokens/scroll.js +99 -1
  336. package/tokens/search.js +45 -1
  337. package/tokens/searchModal.js +159 -1
  338. package/tokens/select.js +99 -1
  339. package/tokens/separator.js +63 -1
  340. package/tokens/shadow.js +24 -1
  341. package/tokens/skeleton.js +77 -1
  342. package/tokens/slider.js +45 -1
  343. package/tokens/snackbar.js +167 -1
  344. package/tokens/spacing.js +13 -1
  345. package/tokens/stepper.js +147 -1
  346. package/tokens/switch.js +76 -1
  347. package/tokens/tabs.js +108 -1
  348. package/tokens/textarea.js +45 -1
  349. package/tokens/toggle.js +19 -1
  350. package/tokens/tooltip.js +69 -1
  351. package/tokens/types/index.types.js +4 -1
  352. package/tokens/typography.js +134 -1
  353. package/tokens/utils.js +85 -1
  354. package/tokens/values.js +73 -1
  355. package/tokens/wrapper.js +34 -1
  356. package/types/accesability.js +4 -1
  357. package/types/button.js +7 -1
  358. package/types/card.js +5 -1
  359. package/types/chat.js +4 -1
  360. package/types/common.js +5 -1
  361. package/types/cursors.js +4 -1
  362. package/types/input.js +6 -1
  363. package/types/label.js +4 -1
  364. package/types/layout.js +4 -1
  365. package/types/link.js +5 -1
  366. package/types/list.js +4 -1
  367. package/types/separator.js +5 -1
  368. package/types/skeleton.js +4 -1
  369. package/types/snackbar.js +5 -1
  370. package/types/stepper.js +5 -1
  371. package/types/typography.js +6 -1
  372. package/types/wrapper.js +4 -1
  373. package/utils/animationFrame.js +17 -1
  374. package/utils/common.js +4 -1
  375. package/utils/date.js +11 -1
  376. package/utils/focus.js +54 -1
  377. package/utils/helpers.js +42 -1
  378. package/utils/layout.js +32 -1
  379. package/utils/math.js +11 -1
  380. package/utils/setInRange.js +11 -1
  381. package/utils/uniqueKeys.js +4 -1
  382. package/components/layout/ChatContainer/ChatContainer.types.js +0 -1
  383. /package/{gd-design-library.css → assets/styles.css} +0 -0
package/README.md CHANGED
@@ -152,6 +152,8 @@ Wrap your app in the `ThemeProvider` with `isDefault` to apply default GD global
152
152
 
153
153
  ```tsx
154
154
  import { ThemeProvider } from 'gd-design-library';
155
+ // OPTIONAL: default GD global styles, reset, font.
156
+ import 'gd-design-library/styles.css';
155
157
 
156
158
  function App() {
157
159
  return (
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),r=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:C,height:l}=r.icon.size[s.SizeVariant.Sm],u=({width:t=C,height:i=l,fillSvg:n="none",fill:o="currentColor",...c})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 24 24",fill:n,xmlns:"http://www.w3.org/2000/svg",...c,children:e.jsx("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:o})});exports.AccountCircleIcon=u;
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 }) });
15
+ export {
16
+ f as AccountCircleIcon
17
+ };
@@ -1 +1,15 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),r=require("../../tokens/icon.js"),{width:s,height:c}=r.icon.size.xs,l=({width:t=s,height:o=c,fillSvg:n="none",fill:i="currentColor"})=>e.jsx("svg",{width:t,height:o,viewBox:"0 0 24 24",fill:n,xmlns:"http://www.w3.org/2000/svg",children:e.jsx("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:i})});exports.ArrowDownIcon=l;
1
+ "use client";
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 }) });
13
+ export {
14
+ c as ArrowDownIcon
15
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:l,height:u}=c.icon.size[s.SizeVariant.Sm],d=({width:o=l,height:r=u,fillSvg:t="none",fill:i="currentColor",...n})=>e.jsx("svg",{width:o,height:r,viewBox:"0 0 16 16",fill:t,xmlns:"http://www.w3.org/2000/svg",...n,children:e.jsx("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:i})});exports.ArrowForwardIcon=d;
1
+ "use client";
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 }) });
15
+ export {
16
+ d as ArrowForwardIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@emotion/react/jsx-runtime"),C=require("../../tokens/icon.js"),r=require("../../types/common.js"),{width:s,height:l}=C.icon.size[r.SizeVariant.Sm],u=({width:e=s,height:n=l,fillSvg:i="none",fill:o="currentColor",...c})=>t.jsx("svg",{width:e,height:n,viewBox:"0 0 11 22",fill:i,xmlns:"http://www.w3.org/2000/svg",...c,children:t.jsx("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})});exports.AttachmentIcon=u;
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 }) });
15
+ export {
16
+ a as AttachmentIcon
17
+ };
@@ -1 +1,16 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),s=require("../../tokens/icon.js"),{width:r,height:l}=s.icon.size.xs,h=({width:t=r,height:i=l,fillSvg:n="none",fill:o="currentColor",...c})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 18 13",fill:n,xmlns:"http://www.w3.org/2000/svg",...c,children:e.jsx("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:o})});exports.CheckIcon=h;
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",
11
+ fill: n = "currentColor",
12
+ ...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 }) });
14
+ export {
15
+ d as CheckIcon
16
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),s=require("../../tokens/icon.js"),c=require("../../types/common.js"),{width:l,height:a}=s.icon.size[c.SizeVariant.Xs],h=({width:t=l,height:n=a,fillSvg:o="none",fill:r="currentColor",...i})=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:t,height:n,viewBox:"0 0 7 12",fill:o,...i,children:e.jsx("g",{transform:"translate(7 0) scale(-1 1)",children:e.jsx("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})})});exports.ChevronLeftIcon=h;
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 }) }) });
15
+ export {
16
+ d as ChevronLeftIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),s=require("../../tokens/icon.js"),c=require("../../types/common.js"),{width:h,height:l}=s.icon.size[c.SizeVariant.Xs],u=({width:t=h,height:i=l,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 7 12",fill:n,xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("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:o})});exports.ChevronRightIcon=u;
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",
12
+ 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 }) });
15
+ export {
16
+ f as ChevronRightIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:l,height:u}=c.icon.size[s.SizeVariant.Sm],d=({width:t=l,height:n=u,fillSvg:o="none",fill:i="currentColor",...r})=>e.jsx("svg",{width:t,height:n,fill:o,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("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:i})});exports.ContentCopyIcon=d;
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 }) });
15
+ export {
16
+ p as ContentCopyIcon
17
+ };
@@ -1 +1,16 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),r=require("../../tokens/icon.js"),{width:c,height:L}=r.icon.size.xs,l=({width:t=c,height:o=L,fillSvg:s="none",fill:i="currentColor",...n})=>e.jsx("svg",{width:t,height:o,viewBox:"0 0 14 14",fill:s,xmlns:"http://www.w3.org/2000/svg",...n,children:e.jsx("path",{d:"M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z",fill:i})});exports.CrossIcon=l;
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: n,
6
+ height: h
7
+ } = s.size.xs, d = ({
8
+ width: o = n,
9
+ height: e = h,
10
+ fillSvg: i = "none",
11
+ fill: L = "currentColor",
12
+ ...r
13
+ }) => /* @__PURE__ */ t("svg", { width: o, height: e, viewBox: "0 0 14 14", fill: i, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z", fill: L }) });
14
+ export {
15
+ d as CrossIcon
16
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),l=require("../../types/common.js"),{width:s,height:u}=c.icon.size[l.SizeVariant.Sm],d=({width:t=s,height:i=u,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:t,height:i,viewBox:"0 0 16 16",fill:n,...r,children:e.jsx("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:o})});exports.DeleteOutlinedIcon=d;
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,
11
+ fillSvg: o = "none",
12
+ fill: r = "currentColor",
13
+ ...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 }) });
15
+ export {
16
+ V as DeleteOutlinedIcon
17
+ };
@@ -1 +1,16 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),{width:r,height:l}=c.icon.size.xs,u=({width:e=r,height:o=l,fillSvg:i="none",fill:n="currentColor",...s})=>t.jsx("svg",{width:e,height:o,viewBox:"0 0 6 6",fill:i,xmlns:"http://www.w3.org/2000/svg",...s,children:t.jsx("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})});exports.DotIcon=u;
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",
11
+ fill: n = "currentColor",
12
+ ...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 }) });
14
+ export {
15
+ w as DotIcon
16
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../types/common.js"),s=require("../../tokens/icon.js"),{width:l,height:u}=s.icon.size[c.SizeVariant.Sm],d=({width:t=l,height:i=u,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:n,...r,children:e.jsx("path",{d:"M2 11.4999V13.9999H4.5L11.8733 6.62656L9.37333 4.12656L2 11.4999ZM14.2733 4.22656L11.7733 1.72656L10.0867 3.4199L12.5867 5.9199L14.2733 4.22656Z",fill:o})});exports.EditIcon=d;
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], f = ({
9
+ width: i = m,
10
+ height: o = s,
11
+ fillSvg: e = "none",
12
+ fill: r = "currentColor",
13
+ ...n
14
+ }) => /* @__PURE__ */ t("svg", { width: i, height: o, viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: e, ...n, children: /* @__PURE__ */ t("path", { d: "M2 11.4999V13.9999H4.5L11.8733 6.62656L9.37333 4.12656L2 11.4999ZM14.2733 4.22656L11.7733 1.72656L10.0867 3.4199L12.5867 5.9199L14.2733 4.22656Z", fill: r }) });
15
+ export {
16
+ f as EditIcon
17
+ };
@@ -1 +1,22 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("@emotion/react/jsx-runtime"),c=require("../../tokens/colors.js"),s=require("../../tokens/icon.js"),{width:l,height:u}=s.icon.size.lg,{icon:{error:C}}=c.colors,d=({width:e=l,height:r=u,color:g=C,fillSvg:t="none",fill:n="currentColor",...i})=>o.jsx("svg",{width:e,height:r,viewBox:"0 0 24 24",fill:t,xmlns:"http://www.w3.org/2000/svg",...i,children:o.jsx("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:n})});exports.ErrorOutlineIcon=d;
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",
18
+ ...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 }) });
20
+ export {
21
+ p as ErrorOutlineIcon
22
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:C,height:l}=c.icon.size[s.SizeVariant.Sm],u=({width:t=C,height:i=l,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{width:t,height:i,fill:n,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("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:o})});exports.EyeIcon=u;
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 }) });
15
+ export {
16
+ f as EyeIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:l,height:u}=c.icon.size[s.SizeVariant.Sm],a=({width:t=l,height:i=u,fillSvg:o="none",fill:n="currentColor",...r})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 24 24",fill:o,xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("path",{d:"M13.3499 20.13C12.5899 20.82 11.4199 20.82 10.6599 20.12L10.5499 20.02C5.29991 15.27 1.86991 12.16 1.99991 8.27998C2.05991 6.57998 2.92991 4.94998 4.33991 3.98998C6.97991 2.18998 10.2399 3.02998 11.9999 5.08998C13.7599 3.02998 17.0199 2.17998 19.6599 3.98998C21.0699 4.94998 21.9399 6.57998 21.9999 8.27998C22.1399 12.16 18.6999 15.27 13.4499 20.04L13.3499 20.13Z",fill:n})});exports.FavoriteIcon=a;
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], d = ({
9
+ width: o = m,
10
+ height: i = s,
11
+ fillSvg: e = "none",
12
+ fill: r = "currentColor",
13
+ ...n
14
+ }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 24 24", fill: e, xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ t("path", { d: "M13.3499 20.13C12.5899 20.82 11.4199 20.82 10.6599 20.12L10.5499 20.02C5.29991 15.27 1.86991 12.16 1.99991 8.27998C2.05991 6.57998 2.92991 4.94998 4.33991 3.98998C6.97991 2.18998 10.2399 3.02998 11.9999 5.08998C13.7599 3.02998 17.0199 2.17998 19.6599 3.98998C21.0699 4.94998 21.9399 6.57998 21.9999 8.27998C22.1399 12.16 18.6999 15.27 13.4499 20.04L13.3499 20.13Z", fill: r }) });
15
+ export {
16
+ d as FavoriteIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:l,height:u}=c.icon.size[s.SizeVariant.Sm],C=({width:t=l,height:i=u,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:t,height:i,viewBox:"0 0 24 24",fill:n,...r,children:e.jsx("path",{d:"M10.9997 2C9.83967 2 8.72634 2.54 7.99967 3.39333C7.27301 2.54 6.15967 2 4.99967 2C2.94634 2 1.33301 3.61333 1.33301 5.66667C1.33301 8.18667 3.59967 10.24 7.03301 13.36L7.99967 14.2333L8.96634 13.3533C12.3997 10.24 14.6663 8.18667 14.6663 5.66667C14.6663 3.61333 13.053 2 10.9997 2ZM8.06634 12.3667L7.99967 12.4333L7.93301 12.3667C4.75967 9.49333 2.66634 7.59333 2.66634 5.66667C2.66634 4.33333 3.66634 3.33333 4.99967 3.33333C6.02634 3.33333 7.02634 3.99333 7.37967 4.90667H8.62634C8.97301 3.99333 9.97301 3.33333 10.9997 3.33333C12.333 3.33333 13.333 4.33333 13.333 5.66667C13.333 7.59333 11.2397 9.49333 8.06634 12.3667Z",fill:o})});exports.FavoriteOutlinedIcon=C;
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], a = ({
9
+ width: i = h,
10
+ height: o = m,
11
+ fillSvg: e = "none",
12
+ 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: "M10.9997 2C9.83967 2 8.72634 2.54 7.99967 3.39333C7.27301 2.54 6.15967 2 4.99967 2C2.94634 2 1.33301 3.61333 1.33301 5.66667C1.33301 8.18667 3.59967 10.24 7.03301 13.36L7.99967 14.2333L8.96634 13.3533C12.3997 10.24 14.6663 8.18667 14.6663 5.66667C14.6663 3.61333 13.053 2 10.9997 2ZM8.06634 12.3667L7.99967 12.4333L7.93301 12.3667C4.75967 9.49333 2.66634 7.59333 2.66634 5.66667C2.66634 4.33333 3.66634 3.33333 4.99967 3.33333C6.02634 3.33333 7.02634 3.99333 7.37967 4.90667H8.62634C8.97301 3.99333 9.97301 3.33333 10.9997 3.33333C12.333 3.33333 13.333 4.33333 13.333 5.66667C13.333 7.59333 11.2397 9.49333 8.06634 12.3667Z", fill: r }) });
15
+ export {
16
+ a as FavoriteOutlinedIcon
17
+ };
@@ -1 +1,16 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),l=require("../../tokens/icon.js"),{width:r,height:c}=l.icon.size.xl,u=({width:t=r,height:o=c,fillSvg:i="none",fill:n="currentColor",...s})=>e.jsx("svg",{width:t,height:o,viewBox:"0 0 32 32",fill:i,...s,xmlns:"http://www.w3.org/2000/svg",children:e.jsx("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})});exports.FileCopyIcon=u;
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 }) });
14
+ export {
15
+ g as FileCopyIcon
16
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:l,height:C}=c.icon.size[s.SizeVariant.Sm],u=({width:t=l,height:i=C,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:t,height:i,viewBox:"0 0 24 24",fill:n,...r,children:e.jsx("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:o})});exports.FilterIcon=u;
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",
12
+ 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 }) });
15
+ export {
16
+ d as FilterIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../types/common.js"),s=require("../../tokens/icon.js"),{width:l,height:u}=s.icon.size[c.SizeVariant.Sm],d=({width:t=l,height:o=u,fillSvg:i="none",fill:n="currentColor",...r})=>e.jsx("svg",{width:t,height:o,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:i,...r,children:e.jsx("path",{d:"M6.66665 2.66675H1.33331V13.3334H14.6666V4.00008H7.99998L6.66665 2.66675Z",fill:n})});exports.FolderIcon=d;
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",
13
+ ...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 }) });
15
+ export {
16
+ p as FolderIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../types/common.js"),s=require("../../tokens/icon.js"),{width:l,height:u}=s.icon.size[c.SizeVariant.Sm],d=({width:t=l,height:n=u,fillSvg:o="none",fill:i="currentColor",...r})=>e.jsx("svg",{width:t,height:n,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:o,...r,children:e.jsx("path",{d:"M14.6666 4.00008H7.99998L6.66665 2.66675H1.33331V13.3334H14.6666V4.00008ZM13.3333 12.0001H2.66665V5.33341H13.3333V12.0001Z",fill:i})});exports.FolderOpenIcon=d;
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 }) });
15
+ export {
16
+ f as FolderOpenIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:l,height:u}=c.icon.size[s.SizeVariant.Lg],d=({width:t=l,height:o=u,fillSvg:i="none",fill:n="currentColor",...r})=>e.jsx("svg",{width:t,height:o,viewBox:"0 0 20 17",fill:i,xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("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})});exports.HomeIcon=d;
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,
11
+ 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 }) });
15
+ export {
16
+ d as HomeIcon
17
+ };
@@ -1 +1,12 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("@emotion/react/jsx-runtime"),c=({width:e=24,height:r=24,fillSvg:n="none",fill:t="currentColor",...s})=>o.jsx("svg",{width:e,height:r,viewBox:"0 0 24 24",fill:n,xmlns:"http://www.w3.org/2000/svg",...s,children:o.jsx("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:t})});exports.KeyboardArrowDownIcon=c;
1
+ "use client";
2
+ import { jsx as o } from "@emotion/react/jsx-runtime";
3
+ const s = ({
4
+ width: r = 24,
5
+ height: n = 24,
6
+ fillSvg: e = "none",
7
+ fill: t = "currentColor",
8
+ ...w
9
+ }) => /* @__PURE__ */ o("svg", { width: r, height: n, viewBox: "0 0 24 24", fill: e, xmlns: "http://www.w3.org/2000/svg", ...w, 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: t }) });
10
+ export {
11
+ s as KeyboardArrowDownIcon
12
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),r=require("../../types/common.js"),{width:s,height:l}=c.icon.size[r.SizeVariant.Xs],u=({width:i=s,height:t=l,fillSvg:n="none",fill:o="currentColor",...C})=>e.jsx("svg",{width:i,height:t,viewBox:"0 0 17 16",fill:n,xmlns:"http://www.w3.org/2000/svg",...C,children:e.jsx("path",{d:"M13.5001 5.33335H11.8334V4.00002C11.8334 3.26669 11.2334 2.66669 10.5001 2.66669H2.50008C1.76675 2.66669 1.16675 3.26669 1.16675 4.00002V10C1.16675 10.7334 1.76675 11.3334 2.50008 11.3334C2.50008 12.44 3.39341 13.3334 4.50008 13.3334C5.60675 13.3334 6.50008 12.44 6.50008 11.3334H10.5001C10.5001 12.44 11.3934 13.3334 12.5001 13.3334C13.6067 13.3334 14.5001 12.44 14.5001 11.3334H15.1667C15.5334 11.3334 15.8334 11.0334 15.8334 10.6667V8.44669C15.8334 8.16002 15.7401 7.88002 15.5667 7.64669L14.0334 5.60002C13.9067 5.43335 13.7067 5.33335 13.5001 5.33335ZM4.50008 12C4.13341 12 3.83341 11.7 3.83341 11.3334C3.83341 10.9667 4.13341 10.6667 4.50008 10.6667C4.86675 10.6667 5.16675 10.9667 5.16675 11.3334C5.16675 11.7 4.86675 12 4.50008 12ZM13.5001 6.33335L14.8067 8.00002H11.8334V6.33335H13.5001ZM12.5001 12C12.1334 12 11.8334 11.7 11.8334 11.3334C11.8334 10.9667 12.1334 10.6667 12.5001 10.6667C12.8667 10.6667 13.1667 10.9667 13.1667 11.3334C13.1667 11.7 12.8667 12 12.5001 12Z",fill:o})});exports.LocalShippingIcon=u;
1
+ "use client";
2
+ import { jsx as C } 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: s
8
+ } = n.size[h.Xs], H = ({
9
+ width: t = l,
10
+ height: i = s,
11
+ fillSvg: o = "none",
12
+ fill: e = "currentColor",
13
+ ...r
14
+ }) => /* @__PURE__ */ C("svg", { width: t, height: i, viewBox: "0 0 17 16", fill: o, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ C("path", { d: "M13.5001 5.33335H11.8334V4.00002C11.8334 3.26669 11.2334 2.66669 10.5001 2.66669H2.50008C1.76675 2.66669 1.16675 3.26669 1.16675 4.00002V10C1.16675 10.7334 1.76675 11.3334 2.50008 11.3334C2.50008 12.44 3.39341 13.3334 4.50008 13.3334C5.60675 13.3334 6.50008 12.44 6.50008 11.3334H10.5001C10.5001 12.44 11.3934 13.3334 12.5001 13.3334C13.6067 13.3334 14.5001 12.44 14.5001 11.3334H15.1667C15.5334 11.3334 15.8334 11.0334 15.8334 10.6667V8.44669C15.8334 8.16002 15.7401 7.88002 15.5667 7.64669L14.0334 5.60002C13.9067 5.43335 13.7067 5.33335 13.5001 5.33335ZM4.50008 12C4.13341 12 3.83341 11.7 3.83341 11.3334C3.83341 10.9667 4.13341 10.6667 4.50008 10.6667C4.86675 10.6667 5.16675 10.9667 5.16675 11.3334C5.16675 11.7 4.86675 12 4.50008 12ZM13.5001 6.33335L14.8067 8.00002H11.8334V6.33335H13.5001ZM12.5001 12C12.1334 12 11.8334 11.7 11.8334 11.3334C11.8334 10.9667 12.1334 10.6667 12.5001 10.6667C12.8667 10.6667 13.1667 10.9667 13.1667 11.3334C13.1667 11.7 12.8667 12 12.5001 12Z", fill: e }) });
15
+ export {
16
+ H as LocalShippingIcon
17
+ };
@@ -1 +1,16 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),{width:r,height:u}=c.icon.size.xs,l=({width:t=r,height:i=u,fillSvg:n="none",fill:o="currentColor",...s})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 14 2",fill:n,xmlns:"http://www.w3.org/2000/svg",...s,children:e.jsx("path",{d:"M13 2H1C0.45 2 0 1.55 0 1C0 0.45 0.45 0 1 0H13C13.55 0 14 0.45 14 1C14 1.55 13.55 2 13 2Z",fill:o})});exports.MinusIcon=l;
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: i = l,
10
+ fillSvg: e = "none",
11
+ fill: n = "currentColor",
12
+ ...r
13
+ }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 14 2", fill: e, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M13 2H1C0.45 2 0 1.55 0 1C0 0.45 0.45 0 1 0H13C13.55 0 14 0.45 14 1C14 1.55 13.55 2 13 2Z", fill: n }) });
14
+ export {
15
+ w as MinusIcon
16
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),s=require("../../tokens/icon.js"),c=require("../../types/common.js"),{width:l,height:u}=s.icon.size[c.SizeVariant.Xs],C=({width:t=l,height:i=u,fillSvg:n="none",fill:o="currentColor",...r})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 40 40",fill:n,xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("path",{d:"M12 26H28C28.55 26 29 25.55 29 25C29 24.45 28.55 24 28 24H12C11.45 24 11 24.45 11 25C11 25.55 11.45 26 12 26ZM12 21H28C28.55 21 29 20.55 29 20C29 19.45 28.55 19 28 19H12C11.45 19 11 19.45 11 20C11 20.55 11.45 21 12 21ZM11 15C11 15.55 11.45 16 12 16H28C28.55 16 29 15.55 29 15C29 14.45 28.55 14 28 14H12C11.45 14 11 14.45 11 15Z",fill:o})});exports.MobileMenuIcon=C;
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: s,
7
+ height: h
8
+ } = n.size[l.Xs], d = ({
9
+ width: o = s,
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 40 40", fill: e, xmlns: "http://www.w3.org/2000/svg", ...C, children: /* @__PURE__ */ t("path", { d: "M12 26H28C28.55 26 29 25.55 29 25C29 24.45 28.55 24 28 24H12C11.45 24 11 24.45 11 25C11 25.55 11.45 26 12 26ZM12 21H28C28.55 21 29 20.55 29 20C29 19.45 28.55 19 28 19H12C11.45 19 11 19.45 11 20C11 20.55 11.45 21 12 21ZM11 15C11 15.55 11.45 16 12 16H28C28.55 16 29 15.55 29 15C29 14.45 28.55 14 28 14H12C11.45 14 11 14.45 11 15Z", fill: r }) });
15
+ export {
16
+ d as MobileMenuIcon
17
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),s=require("../../types/common.js"),{width:a,height:l}=c.icon.size[s.SizeVariant.Sm],u=({width:t=a,height:n=l,fillSvg:i="none",fill:o="currentColor",...r})=>e.jsx("svg",{width:t,height:n,fill:i,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...r,children:e.jsx("path",{d:"M22 4H2.01L2 20H22V4ZM20 18H4V12H20V18ZM20 8H4V6H20V8Z",fill:o})});exports.PaymentCardIcon=u;
1
+ "use client";
2
+ import { jsx as t } from "@emotion/react/jsx-runtime";
3
+ import { icon as m } from "../../tokens/icon.js";
4
+ import { SizeVariant as h } from "../../types/common.js";
5
+ const {
6
+ width: l,
7
+ height: s
8
+ } = m.size[h.Sm], H = ({
9
+ width: o = l,
10
+ height: i = s,
11
+ fillSvg: e = "none",
12
+ fill: r = "currentColor",
13
+ ...n
14
+ }) => /* @__PURE__ */ t("svg", { width: o, height: i, fill: e, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...n, children: /* @__PURE__ */ t("path", { d: "M22 4H2.01L2 20H22V4ZM20 18H4V12H20V18ZM20 8H4V6H20V8Z", fill: r }) });
15
+ export {
16
+ H as PaymentCardIcon
17
+ };
@@ -1 +1,16 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@emotion/react/jsx-runtime"),c=require("../../tokens/icon.js"),{width:l,height:r}=c.icon.size.xs,u=({width:t=l,height:i=r,fillSvg:n="none",fill:o="currentColor",...s})=>e.jsx("svg",{width:t,height:i,viewBox:"0 0 14 14",fill:n,xmlns:"http://www.w3.org/2000/svg",...s,children:e.jsx("path",{d:"M13 8H8V13C8 13.55 7.55 14 7 14C6.45 14 6 13.55 6 13V8H1C0.45 8 0 7.55 0 7C0 6.45 0.45 6 1 6H6V1C6 0.45 6.45 0 7 0C7.55 0 8 0.45 8 1V6H13C13.55 6 14 6.45 14 7C14 7.55 13.55 8 13 8Z",fill:o})});exports.PlusIcon=u;
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: l,
6
+ height: C
7
+ } = s.size.xs, d = ({
8
+ width: o = l,
9
+ height: e = C,
10
+ fillSvg: i = "none",
11
+ fill: n = "currentColor",
12
+ ...r
13
+ }) => /* @__PURE__ */ t("svg", { width: o, height: e, viewBox: "0 0 14 14", fill: i, xmlns: "http://www.w3.org/2000/svg", ...r, children: /* @__PURE__ */ t("path", { d: "M13 8H8V13C8 13.55 7.55 14 7 14C6.45 14 6 13.55 6 13V8H1C0.45 8 0 7.55 0 7C0 6.45 0.45 6 1 6H6V1C6 0.45 6.45 0 7 0C7.55 0 8 0.45 8 1V6H13C13.55 6 14 6.45 14 7C14 7.55 13.55 8 13 8Z", fill: n }) });
14
+ export {
15
+ d as PlusIcon
16
+ };
@@ -1 +1,17 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@emotion/react/jsx-runtime"),c=require("../../types/common.js"),s=require("../../tokens/icon.js"),{width:l,height:u}=s.icon.size[c.SizeVariant.Sm],a=({width:e=l,height:i=u,fillSvg:o="none",fill:n="currentColor",...r})=>t.jsx("svg",{width:e,height:i,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:o,...r,children:t.jsx("path",{d:"M8 8.16667C8.82667 8.16667 9.5 7.49333 9.5 6.66667C9.5 5.84 8.82667 5.16667 8 5.16667C7.17333 5.16667 6.5 5.84 6.5 6.66667C6.5 7.49333 7.17333 8.16667 8 8.16667ZM11 10.8333C11 9.83333 9 9.33333 8 9.33333C7 9.33333 5 9.83333 5 10.8333V11.3333H11V10.8333ZM14 2H2V14H14V2ZM12.6667 12.6667H3.33333V3.33333H12.6667V12.6667Z",fill:n})});exports.PortraitIcon=a;
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], a = ({
9
+ width: o = m,
10
+ height: i = s,
11
+ fillSvg: r = "none",
12
+ fill: e = "currentColor",
13
+ ...n
14
+ }) => /* @__PURE__ */ t("svg", { width: o, height: i, viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: r, ...n, children: /* @__PURE__ */ t("path", { d: "M8 8.16667C8.82667 8.16667 9.5 7.49333 9.5 6.66667C9.5 5.84 8.82667 5.16667 8 5.16667C7.17333 5.16667 6.5 5.84 6.5 6.66667C6.5 7.49333 7.17333 8.16667 8 8.16667ZM11 10.8333C11 9.83333 9 9.33333 8 9.33333C7 9.33333 5 9.83333 5 10.8333V11.3333H11V10.8333ZM14 2H2V14H14V2ZM12.6667 12.6667H3.33333V3.33333H12.6667V12.6667Z", fill: e }) });
15
+ export {
16
+ a as PortraitIcon
17
+ };