@julseb-lib/react 0.1.3 → 0.1.4

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 (1231) hide show
  1. package/.editorconfig +7 -0
  2. package/.prettierrc +5 -0
  3. package/README.md +1 -1
  4. package/eslint.config.js +177 -0
  5. package/index.html +14 -0
  6. package/package.json +41 -67
  7. package/plop/actions/index.ts +1 -0
  8. package/plop/actions/run-command.ts +21 -0
  9. package/plop/generators/component.ts +87 -0
  10. package/plop/generators/demo.ts +38 -0
  11. package/plop/generators/generator.ts +49 -0
  12. package/plop/generators/index.ts +6 -0
  13. package/plop/generators/preview.ts +58 -0
  14. package/plop/generators/subtype.ts +25 -0
  15. package/plop/partials/index.ts +2 -0
  16. package/plop/partials/kebab-name.ts +7 -0
  17. package/plop/partials/pascal-name.ts +7 -0
  18. package/plop/plopfile.ts +32 -0
  19. package/plop/templates/__preview__/preview-props.hbs +34 -0
  20. package/plop/templates/__preview__/preview.hbs +25 -0
  21. package/plop/templates/component/__preview__/preview.hbs +21 -0
  22. package/plop/templates/component/index.ts.hbs +1 -0
  23. package/plop/templates/component/types.ts.hbs +5 -0
  24. package/plop/templates/component/{{ pascalCase name }}.tsx.hbs +32 -0
  25. package/plop/templates/demo.hbs +9 -0
  26. package/plop/templates/generator.hbs +16 -0
  27. package/plop/templates/subtypes.hbs +3 -0
  28. package/plop/utils/addClosingBrackets.ts +13 -0
  29. package/plop/utils/addOpenBrackets.ts +13 -0
  30. package/plop/utils/all-components.ts +72 -0
  31. package/plop/utils/constants.ts +1 -0
  32. package/plop/utils/index.ts +5 -0
  33. package/plop/utils/surround-brackets.ts +12 -0
  34. package/public/favicon.svg +24 -0
  35. package/public/images/cover-img.avif +0 -0
  36. package/public/images/image-card.jpg +0 -0
  37. package/public/images/logo-fajny-css-white.svg +37 -0
  38. package/public/images/logo-fajny-css.svg +35 -0
  39. package/public/images/pic-avatar.jpg +0 -0
  40. package/public/images/slideshow-1.avif +0 -0
  41. package/public/images/slideshow-2.avif +0 -0
  42. package/public/images/slideshow-3.avif +0 -0
  43. package/public/images/slideshow-4.avif +0 -0
  44. package/public/vite.svg +1 -0
  45. package/src/App.tsx +6 -0
  46. package/src/components/ComponentPreview.tsx +46 -0
  47. package/src/components/GridItem.tsx +9 -0
  48. package/src/components/index.ts +4 -0
  49. package/src/components/layout/BasePage.tsx +27 -0
  50. package/src/components/layout/CoverLayout.tsx +97 -0
  51. package/src/components/layout/Nav.tsx +63 -0
  52. package/src/components/layout/Page.tsx +24 -0
  53. package/src/data/components.tsx +220 -0
  54. package/src/data/french-cities.ts +8683 -0
  55. package/src/data/index.ts +3 -0
  56. package/src/data/previews/styles/Colors.preview.tsx +94 -0
  57. package/src/data/previews/styles/Overlays.preview.tsx +48 -0
  58. package/src/data/previews/styles/Radiuses.preview.tsx +49 -0
  59. package/src/data/previews/styles/Shadows.preview.tsx +49 -0
  60. package/src/data/previews/styles/Spacers.preview.tsx +50 -0
  61. package/src/data/previews/styles/Theme.preview.tsx +32 -0
  62. package/src/data/site-data.ts +4 -0
  63. package/src/data/styles/colors.ts +1985 -0
  64. package/src/data/styles/index.ts +5 -0
  65. package/src/data/styles/overlays.ts +47 -0
  66. package/src/data/styles/radiuses.ts +68 -0
  67. package/src/data/styles/shadows.ts +61 -0
  68. package/src/data/styles/spacers.ts +54 -0
  69. package/src/data/types/index.ts +1 -0
  70. package/src/data/types/variables.ts +7 -0
  71. package/src/lib/Variables.ts +201 -0
  72. package/src/lib/components/Accordion/Accordion.tsx +73 -0
  73. package/src/lib/components/Accordion/AccordionContent.tsx +55 -0
  74. package/src/lib/components/Accordion/AccordionItem.tsx +66 -0
  75. package/src/lib/components/Accordion/AccordionTitle.tsx +79 -0
  76. package/src/lib/components/Accordion/__preview__/Accordion.preview.tsx +107 -0
  77. package/src/lib/components/Accordion/subtypes.ts +26 -0
  78. package/src/lib/components/Accordion/types.ts +37 -0
  79. package/src/lib/components/Alert/Alert.tsx +57 -0
  80. package/src/lib/components/Alert/__preview__/Alert.preview.tsx +72 -0
  81. package/src/lib/components/Alert/types.ts +8 -0
  82. package/src/lib/components/Aside/Aside.tsx +58 -0
  83. package/src/lib/components/Aside/__preview__/Aside.preview.tsx +59 -0
  84. package/src/lib/components/Aside/types.ts +6 -0
  85. package/src/lib/components/Autocomplete/Autocomplete.tsx +222 -0
  86. package/src/lib/components/Autocomplete/__preview__/Autocomplete.preview.tsx +181 -0
  87. package/src/lib/components/Autocomplete/__preview__/Preview.tsx +17 -0
  88. package/src/lib/components/Autocomplete/types.ts +35 -0
  89. package/src/lib/components/Avatar/Avatar.tsx +97 -0
  90. package/src/lib/components/Avatar/AvatarFn.tsx +44 -0
  91. package/src/lib/components/Avatar/__preview__/Avatar.preview.tsx +107 -0
  92. package/src/lib/components/Avatar/types.ts +37 -0
  93. package/src/lib/components/BackToTop/BackToTop.tsx +95 -0
  94. package/src/lib/components/BackToTop/__preview__/BackToTop.preview.tsx +115 -0
  95. package/src/lib/components/BackToTop/types.ts +9 -0
  96. package/src/lib/components/Badge/Badge.tsx +61 -0
  97. package/src/lib/components/Badge/__preview__/Badge.preview.tsx +84 -0
  98. package/src/lib/components/Badge/types.ts +7 -0
  99. package/src/lib/components/Breadcrumbs/Breadcrumbs.tsx +72 -0
  100. package/src/lib/components/Breadcrumbs/__preview__/Breadcrumbs.preview.tsx +55 -0
  101. package/src/lib/components/Breadcrumbs/types.ts +5 -0
  102. package/src/lib/components/Burger/Burger.tsx +103 -0
  103. package/src/lib/components/Burger/__preview__/Burger.preview.tsx +55 -0
  104. package/src/lib/components/Burger/__preview__/Preview.tsx +11 -0
  105. package/src/lib/components/Burger/types.ts +11 -0
  106. package/src/lib/components/Button/Button.tsx +108 -0
  107. package/src/lib/components/Button/__preview__/Button.preview.tsx +182 -0
  108. package/src/lib/components/Button/types.ts +30 -0
  109. package/src/lib/components/ButtonGroup/ButtonGroup.tsx +124 -0
  110. package/src/lib/components/ButtonGroup/__preview__/ButtonGroup.preview.tsx +101 -0
  111. package/src/lib/components/ButtonGroup/types.ts +28 -0
  112. package/src/lib/components/ButtonIcon/ButtonFn.tsx +74 -0
  113. package/src/lib/components/ButtonIcon/ButtonIcon.tsx +127 -0
  114. package/src/lib/components/ButtonIcon/__preview__/ButtonIcon.preview.tsx +239 -0
  115. package/src/lib/components/ButtonIcon/types.ts +52 -0
  116. package/src/lib/components/CodeContainer/CodeContainer.tsx +108 -0
  117. package/src/lib/components/CodeContainer/__preview__/CodeContainer.preview.tsx +280 -0
  118. package/src/lib/components/CodeContainer/types.ts +230 -0
  119. package/src/lib/components/Cover/Cover.tsx +91 -0
  120. package/src/lib/components/Cover/__preview__/Cover.preview.tsx +154 -0
  121. package/src/lib/components/Cover/types.ts +10 -0
  122. package/src/lib/components/DragList/DragList.tsx +111 -0
  123. package/src/lib/components/DragList/DragListItem.tsx +113 -0
  124. package/src/lib/components/DragList/__preview__/Draglist.preview.tsx +156 -0
  125. package/src/lib/components/DragList/types.ts +55 -0
  126. package/src/lib/components/Drawer/Drawer.tsx +145 -0
  127. package/src/lib/components/Drawer/__preview__/Drawer.preview.tsx +159 -0
  128. package/src/lib/components/Drawer/types.ts +24 -0
  129. package/src/lib/components/Dropdown/Dropdown.tsx +89 -0
  130. package/src/lib/components/Dropdown/DropdownItem.tsx +49 -0
  131. package/src/lib/components/Dropdown/__preview__/Dropdown.preview.tsx +83 -0
  132. package/src/lib/components/Dropdown/__preview__/Preview.tsx +52 -0
  133. package/src/lib/components/Dropdown/index.ts +2 -0
  134. package/src/lib/components/Dropdown/types.ts +35 -0
  135. package/src/lib/components/Fade/Fade.tsx +62 -0
  136. package/src/lib/components/Fade/__preview__/Fade.preview.tsx +33 -0
  137. package/src/lib/components/Fieldset/Fieldset.tsx +85 -0
  138. package/src/lib/components/Fieldset/__preview__/Fieldset.preview.tsx +99 -0
  139. package/src/lib/components/Fieldset/__preview__/Preview.tsx +70 -0
  140. package/src/lib/components/Fieldset/types.ts +15 -0
  141. package/src/lib/components/Flexbox/Flexbox.tsx +99 -0
  142. package/src/lib/components/Flexbox/__preview__/Flexbox.preview.tsx +155 -0
  143. package/src/lib/components/Flexbox/types.ts +23 -0
  144. package/src/lib/components/Form/Form.tsx +83 -0
  145. package/src/lib/components/Form/__preview__/Form.preview.tsx +124 -0
  146. package/src/lib/components/Form/types.ts +32 -0
  147. package/src/lib/components/Grid/Grid.tsx +98 -0
  148. package/src/lib/components/Grid/__preview__/Grid.preview.tsx +146 -0
  149. package/src/lib/components/Grid/types.ts +20 -0
  150. package/src/lib/components/Header/Header.tsx +232 -0
  151. package/src/lib/components/Header/HeaderSearch.tsx +50 -0
  152. package/src/lib/components/Header/__preview__/Header.preview.tsx +33 -0
  153. package/src/lib/components/Header/subtypes.ts +28 -0
  154. package/src/lib/components/Header/types.ts +57 -0
  155. package/src/lib/components/Highlight/Highlight.tsx +45 -0
  156. package/src/lib/components/Highlight/__preview__/Highlight.preview.tsx +60 -0
  157. package/src/lib/components/Highlight/types.ts +9 -0
  158. package/src/lib/components/Hr/Hr.tsx +48 -0
  159. package/src/lib/components/Hr/__preview__/Hr.preview.tsx +75 -0
  160. package/src/lib/components/Hr/types.ts +8 -0
  161. package/src/lib/components/IconMenu/IconMenu.module.css +240 -0
  162. package/src/lib/components/IconMenu/IconMenu.tsx +101 -0
  163. package/src/lib/components/IconMenu/IconMenuItem.tsx +51 -0
  164. package/src/lib/components/IconMenu/__preview__/IconMenu.preview.tsx +55 -0
  165. package/src/lib/components/IconMenu/index.ts +1 -0
  166. package/src/lib/components/IconMenu/types.ts +48 -0
  167. package/src/lib/components/Image/Image.tsx +92 -0
  168. package/src/lib/components/Image/__preview__/Image.preview.tsx +71 -0
  169. package/src/lib/components/Image/types.ts +25 -0
  170. package/src/lib/components/Input/Input.tsx +130 -0
  171. package/src/lib/components/Input/__preview__/Input.preview.tsx +237 -0
  172. package/src/lib/components/Input/__preview__/Previews.tsx +67 -0
  173. package/src/lib/components/Input/classes.ts +1 -0
  174. package/src/lib/components/Input/subtypes.ts +173 -0
  175. package/src/lib/components/Input/templates/ColorInput.tsx +40 -0
  176. package/src/lib/components/Input/templates/DateInput.tsx +63 -0
  177. package/src/lib/components/Input/templates/FileInput.tsx +42 -0
  178. package/src/lib/components/Input/templates/PasswordInput.tsx +73 -0
  179. package/src/lib/components/Input/templates/SearchInput.tsx +89 -0
  180. package/src/lib/components/Input/templates/SelectInput.tsx +79 -0
  181. package/src/lib/components/Input/templates/TextInput.tsx +58 -0
  182. package/src/lib/components/Input/templates/TextareaInput.tsx +27 -0
  183. package/src/lib/components/Input/templates/TimeInput.tsx +67 -0
  184. package/src/lib/components/Input/types.ts +22 -0
  185. package/src/lib/components/InputCheck/InputCheck.tsx +161 -0
  186. package/src/lib/components/InputCheck/__preview__/InputCheck.preview.tsx +84 -0
  187. package/src/lib/components/InputCheck/__preview__/Previews.tsx +136 -0
  188. package/src/lib/components/InputCheck/types.ts +27 -0
  189. package/src/lib/components/InputComponents/InputButton.tsx +26 -0
  190. package/src/lib/components/InputComponents/InputIcon.tsx +28 -0
  191. package/src/lib/components/InputComponents/InputList.tsx +53 -0
  192. package/src/lib/components/InputComponents/InputListItem.tsx +68 -0
  193. package/src/lib/components/InputComponents/InputPrefix.tsx +15 -0
  194. package/src/lib/components/InputComponents/InputSuffix.tsx +15 -0
  195. package/src/lib/components/InputComponents/InputValidation.tsx +32 -0
  196. package/src/lib/components/InputComponents/InputWithListWrapper.tsx +29 -0
  197. package/src/lib/components/InputComponents/InputWrapper.tsx +45 -0
  198. package/src/lib/components/InputComponents/classes.ts +101 -0
  199. package/src/lib/components/InputComponents/index.ts +11 -0
  200. package/src/lib/components/InputComponents/types.ts +63 -0
  201. package/src/lib/components/InputContainer/InputContainer.tsx +149 -0
  202. package/src/lib/components/InputContainer/types.ts +11 -0
  203. package/src/lib/components/InputCounter/InputCounter.tsx +141 -0
  204. package/src/lib/components/InputCounter/__preview__/InputCounter.preview.tsx +153 -0
  205. package/src/lib/components/InputCounter/__preview__/Preview.tsx +13 -0
  206. package/src/lib/components/InputCounter/types.ts +45 -0
  207. package/src/lib/components/InputImage/EmptyContainer.tsx +17 -0
  208. package/src/lib/components/InputImage/HoverContainer.tsx +21 -0
  209. package/src/lib/components/InputImage/InputImage.tsx +104 -0
  210. package/src/lib/components/InputImage/__preview__/InputImage.preview.tsx +133 -0
  211. package/src/lib/components/InputImage/__preview__/Preview.tsx +29 -0
  212. package/src/lib/components/InputImage/subtypes.ts +7 -0
  213. package/src/lib/components/InputImage/types.ts +24 -0
  214. package/src/lib/components/InputPhone/InputPhone.tsx +256 -0
  215. package/src/lib/components/InputPhone/__preview__/InputPhone.preview.tsx +165 -0
  216. package/src/lib/components/InputPhone/__preview__/Preview.tsx +42 -0
  217. package/src/lib/components/InputPhone/types.ts +32 -0
  218. package/src/lib/components/InputPin/InputPin.tsx +119 -0
  219. package/src/lib/components/InputPin/__preview__/InputPin.preview.tsx +154 -0
  220. package/src/lib/components/InputPin/types.ts +22 -0
  221. package/src/lib/components/InputSlider/InputSlider.tsx +176 -0
  222. package/src/lib/components/InputSlider/__preview__/InputSlider.preview.tsx +128 -0
  223. package/src/lib/components/InputSlider/__preview__/Preview.tsx +17 -0
  224. package/src/lib/components/InputSlider/types.ts +22 -0
  225. package/src/lib/components/Key/Key.tsx +84 -0
  226. package/src/lib/components/Key/__preview__/Key.preview.tsx +80 -0
  227. package/src/lib/components/Key/types.ts +16 -0
  228. package/src/lib/components/Linkify/Linkify.tsx +67 -0
  229. package/src/lib/components/Linkify/__preview__/Linkify.preview.tsx +33 -0
  230. package/src/lib/components/Linkify/types.ts +8 -0
  231. package/src/lib/components/ListGroup/ListGroup.tsx +96 -0
  232. package/src/lib/components/ListGroup/ListGroupItem.tsx +86 -0
  233. package/src/lib/components/ListGroup/ListGroupTitle.tsx +84 -0
  234. package/src/lib/components/ListGroup/__preview__/ListGroup.preview.tsx +246 -0
  235. package/src/lib/components/ListGroup/index.ts +3 -0
  236. package/src/lib/components/ListGroup/types.ts +69 -0
  237. package/src/lib/components/Loader/Loader.tsx +38 -0
  238. package/src/lib/components/Loader/__preview__/Loader.preview.tsx +38 -0
  239. package/src/lib/components/Loader/templates/LoaderOne.tsx +27 -0
  240. package/src/lib/components/Loader/templates/LoaderThree.tsx +47 -0
  241. package/src/lib/components/Loader/templates/LoaderTwo.tsx +61 -0
  242. package/src/lib/components/Loader/types.ts +13 -0
  243. package/src/lib/components/Loader/utils/gen-border-bottom.ts +95 -0
  244. package/src/lib/components/Main/Main.tsx +63 -0
  245. package/src/lib/components/Main/__preview__/Main.preview.tsx +67 -0
  246. package/src/lib/components/Main/types.ts +12 -0
  247. package/src/lib/components/MarkdownContainer/MarkdownContainer.tsx +50 -0
  248. package/src/lib/components/MarkdownContainer/__preview__/MarkdownContainer.preview.tsx +34 -0
  249. package/src/lib/components/MarkdownContainer/types.ts +8 -0
  250. package/src/lib/components/MarkdownEditor/MarkdownButtons.tsx +42 -0
  251. package/src/lib/components/MarkdownEditor/MarkdownEditor.tsx +186 -0
  252. package/src/lib/components/MarkdownEditor/MarkdownEditorTitles.tsx +86 -0
  253. package/src/lib/components/MarkdownEditor/MarkdownViewButtons.tsx +48 -0
  254. package/src/lib/components/MarkdownEditor/__preview__/MarkdownEditor.preview.tsx +143 -0
  255. package/src/lib/components/MarkdownEditor/buttons/icons.tsx +85 -0
  256. package/src/lib/components/MarkdownEditor/buttons/markdown-buttons.tsx +176 -0
  257. package/src/lib/components/MarkdownEditor/types.ts +42 -0
  258. package/src/lib/components/Masonry/Masonry.tsx +83 -0
  259. package/src/lib/components/Masonry/__preview__/Masonry.preview.tsx +58 -0
  260. package/src/lib/components/Masonry/types.ts +8 -0
  261. package/src/lib/components/Masonry/utils.tsx +28 -0
  262. package/src/lib/components/Modal/Modal.tsx +107 -0
  263. package/src/lib/components/Modal/__preview__/Modal.preview.tsx +125 -0
  264. package/src/lib/components/Modal/types.ts +21 -0
  265. package/src/lib/components/PageLoading/PageLoading.tsx +64 -0
  266. package/src/lib/components/PageLoading/__preview__/PageLoading.preview.tsx +66 -0
  267. package/src/lib/components/PageLoading/types.ts +13 -0
  268. package/src/lib/components/Pagination/Pagination.tsx +163 -0
  269. package/src/lib/components/Pagination/PaginationButton.tsx +65 -0
  270. package/src/lib/components/Pagination/__preview__/Pagination.preview.tsx +264 -0
  271. package/src/lib/components/Pagination/types.ts +56 -0
  272. package/src/lib/components/Paginator/Paginator.tsx +136 -0
  273. package/src/lib/components/Paginator/__preview__/Paginator.preview.tsx +212 -0
  274. package/src/lib/components/Paginator/types.ts +16 -0
  275. package/src/lib/components/ProgressBar/ProgressBar.tsx +90 -0
  276. package/src/lib/components/ProgressBar/__preview__/ProgressBar.preview.tsx +63 -0
  277. package/src/lib/components/ProgressBar/types.ts +14 -0
  278. package/src/lib/components/ProgressCircle/ProgressCircle.tsx +142 -0
  279. package/src/lib/components/ProgressCircle/__preview__/ProgressCircle.preview.tsx +107 -0
  280. package/src/lib/components/ProgressCircle/types.ts +32 -0
  281. package/src/lib/components/Rating/Rating.tsx +116 -0
  282. package/src/lib/components/Rating/__preview__/Rating.preview.tsx +133 -0
  283. package/src/lib/components/Rating/types.ts +25 -0
  284. package/src/lib/components/Section/Section.tsx +51 -0
  285. package/src/lib/components/Section/__preview__/Section.preview.tsx +35 -0
  286. package/src/lib/components/Section/types.ts +5 -0
  287. package/src/lib/components/Select/Select.tsx +191 -0
  288. package/src/lib/components/Select/__preview__/Select.preview.tsx +168 -0
  289. package/src/lib/components/Select/types.ts +23 -0
  290. package/src/lib/components/Skeleton/Skeleton.tsx +54 -0
  291. package/src/lib/components/Skeleton/SkeletonCard.tsx +57 -0
  292. package/src/lib/components/Skeleton/__preview__/Skeleton.preview.tsx +240 -0
  293. package/src/lib/components/Skeleton/index.ts +2 -0
  294. package/src/lib/components/Skeleton/types.ts +27 -0
  295. package/src/lib/components/Slideshow/Slideshow.tsx +324 -0
  296. package/src/lib/components/Slideshow/SlideshowButton.tsx +63 -0
  297. package/src/lib/components/Slideshow/SlideshowPagination.tsx +111 -0
  298. package/src/lib/components/Slideshow/__preview__/Slideshow.preview.tsx +133 -0
  299. package/src/lib/components/Slideshow/subtypes.ts +62 -0
  300. package/src/lib/components/Slideshow/types.ts +41 -0
  301. package/src/lib/components/Sticky/Sticky.tsx +58 -0
  302. package/src/lib/components/Sticky/__preview__/Sticky.preview.tsx +188 -0
  303. package/src/lib/components/Sticky/types.ts +5 -0
  304. package/src/lib/components/Table/Table.tsx +138 -0
  305. package/src/lib/components/Table/__preview__/Table.preview.tsx +173 -0
  306. package/src/lib/components/Table/index.ts +1 -0
  307. package/src/lib/components/Table/types.ts +43 -0
  308. package/src/lib/components/Tabs/Tabs.tsx +88 -0
  309. package/src/lib/components/Tabs/TabsButton.tsx +71 -0
  310. package/src/lib/components/Tabs/TabsButtonsContainer.tsx +58 -0
  311. package/src/lib/components/Tabs/TabsContainer.tsx +49 -0
  312. package/src/lib/components/Tabs/TabsContent.tsx +52 -0
  313. package/src/lib/components/Tabs/__preview__/Tabs.preview.tsx +155 -0
  314. package/src/lib/components/Tabs/index.ts +5 -0
  315. package/src/lib/components/Tabs/types.ts +46 -0
  316. package/src/lib/components/Tag/Tag.tsx +77 -0
  317. package/src/lib/components/Tag/__preview__/Tag.preview.tsx +128 -0
  318. package/src/lib/components/Tag/types.ts +13 -0
  319. package/src/lib/components/Text/Text.tsx +88 -0
  320. package/src/lib/components/Text/__preview__/Text.preview.tsx +97 -0
  321. package/src/lib/components/Text/__preview__/previews/Description.tsx +18 -0
  322. package/src/lib/components/Text/__preview__/previews/Ordered.tsx +13 -0
  323. package/src/lib/components/Text/__preview__/previews/Paragraphs.tsx +26 -0
  324. package/src/lib/components/Text/__preview__/previews/Quote.tsx +5 -0
  325. package/src/lib/components/Text/__preview__/previews/Small.tsx +5 -0
  326. package/src/lib/components/Text/__preview__/previews/TextDisplay.tsx +27 -0
  327. package/src/lib/components/Text/__preview__/previews/TextTitles.tsx +19 -0
  328. package/src/lib/components/Text/__preview__/previews/Unordered.tsx +13 -0
  329. package/src/lib/components/Text/templates/Blockquote.tsx +41 -0
  330. package/src/lib/components/Text/templates/Dl.tsx +42 -0
  331. package/src/lib/components/Text/templates/Em.tsx +40 -0
  332. package/src/lib/components/Text/templates/H1.tsx +44 -0
  333. package/src/lib/components/Text/templates/H2.tsx +44 -0
  334. package/src/lib/components/Text/templates/H3.tsx +44 -0
  335. package/src/lib/components/Text/templates/H4.tsx +44 -0
  336. package/src/lib/components/Text/templates/H5.tsx +44 -0
  337. package/src/lib/components/Text/templates/H6.tsx +41 -0
  338. package/src/lib/components/Text/templates/Ol.tsx +41 -0
  339. package/src/lib/components/Text/templates/P.tsx +40 -0
  340. package/src/lib/components/Text/templates/Small.tsx +40 -0
  341. package/src/lib/components/Text/templates/Strong.tsx +40 -0
  342. package/src/lib/components/Text/templates/Ul.tsx +41 -0
  343. package/src/lib/components/Text/types.ts +36 -0
  344. package/src/lib/components/Toast/Toast.tsx +112 -0
  345. package/src/lib/components/Toast/ToastContainer.tsx +43 -0
  346. package/src/lib/components/Toast/ToastFn.tsx +236 -0
  347. package/src/lib/components/Toast/__preview__/Toast.preview.tsx +115 -0
  348. package/src/lib/components/Toast/index.ts +3 -0
  349. package/src/lib/components/Toast/types.ts +18 -0
  350. package/src/lib/components/Toast/utils.ts +9 -0
  351. package/src/lib/components/Tooltip/Tooltip.tsx +190 -0
  352. package/src/lib/components/Tooltip/__preview__/Tooltip.preview.tsx +117 -0
  353. package/src/lib/components/Tooltip/types.ts +23 -0
  354. package/src/lib/components/Wrapper/Wrapper.tsx +75 -0
  355. package/src/lib/components/Wrapper/__preview__/Wrapper.preview.tsx +78 -0
  356. package/src/lib/components/Wrapper/types.ts +12 -0
  357. package/src/lib/context/Theme.context.tsx +66 -0
  358. package/src/lib/context/index.ts +1 -0
  359. package/src/lib/hooks/useClickOutside.tsx +50 -0
  360. package/src/lib/hooks/useCopyToClipboard.tsx +50 -0
  361. package/src/lib/hooks/useDebounce.tsx +37 -0
  362. package/src/lib/hooks/useExportData.tsx +78 -0
  363. package/src/lib/hooks/useFetch.tsx +42 -0
  364. package/src/lib/hooks/useForm.tsx +51 -0
  365. package/src/lib/hooks/useIsOverflow.ts +61 -0
  366. package/src/lib/hooks/useKeyPress.tsx +110 -0
  367. package/src/lib/hooks/useMaxWidth.tsx +40 -0
  368. package/src/lib/hooks/useMergeRefs.ts +45 -0
  369. package/src/lib/hooks/useMinWidth.tsx +40 -0
  370. package/src/lib/hooks/usePaginatedData.tsx +52 -0
  371. package/src/lib/hooks/usePagination.tsx +75 -0
  372. package/src/lib/hooks/useTouchScreen.tsx +34 -0
  373. package/src/lib/hooks/useTranslation.tsx +58 -0
  374. package/src/lib/index.css +443 -0
  375. package/src/lib/index.ts +126 -0
  376. package/src/lib/lib-utils/get-highlighted-text.tsx +30 -0
  377. package/src/lib/lib-utils/index.ts +3 -0
  378. package/src/lib/lib-utils/use-keyboard-navigation.tsx +79 -0
  379. package/src/lib/types/components-items-props.ts +207 -0
  380. package/src/lib/types/components-props.ts +63 -0
  381. package/src/lib/types/global.ts +855 -0
  382. package/src/lib/types/index.ts +4 -0
  383. package/src/lib/types/tailwind.ts +9041 -0
  384. package/src/lib/utils/clsx.tsx +6 -0
  385. package/src/lib/utils/design-tokens.ts +789 -0
  386. package/src/lib/utils/gen-align.ts +24 -0
  387. package/src/lib/utils/gen-bg-color.ts +158 -0
  388. package/src/lib/utils/gen-border-color.ts +110 -0
  389. package/src/lib/utils/gen-border-radius.ts +13 -0
  390. package/src/lib/utils/gen-border.ts +30 -0
  391. package/src/lib/utils/gen-box-shadow.ts +12 -0
  392. package/src/lib/utils/gen-button-color.ts +9 -0
  393. package/src/lib/utils/gen-gap.ts +34 -0
  394. package/src/lib/utils/gen-justify.ts +25 -0
  395. package/src/lib/utils/gen-link-color.ts +29 -0
  396. package/src/lib/utils/gen-max-width.ts +30 -0
  397. package/src/lib/utils/gen-object-fit.ts +9 -0
  398. package/src/lib/utils/gen-text-align.ts +10 -0
  399. package/src/lib/utils/gen-text-color.ts +111 -0
  400. package/src/lib/utils/gen-vertical-align.ts +12 -0
  401. package/src/lib/utils/index.ts +18 -0
  402. package/src/lib/utils/linkify-text.tsx +26 -0
  403. package/src/lib/utils/options-markdown.ts +60 -0
  404. package/src/lib/utils/tools.ts +15 -0
  405. package/src/main.tsx +11 -0
  406. package/src/pages/Component.tsx +29 -0
  407. package/src/pages/Homepage.tsx +53 -0
  408. package/src/pages/NotFound.tsx +10 -0
  409. package/src/pages/demos/AsideBothDemo.tsx +22 -0
  410. package/src/pages/demos/AsideDefaultDemo.tsx +18 -0
  411. package/src/pages/demos/AsideRightDemo.tsx +18 -0
  412. package/src/pages/demos/CoverBottomDemo.tsx +24 -0
  413. package/src/pages/demos/CoverBottomOverlayDemo.tsx +25 -0
  414. package/src/pages/demos/CoverCenterDemo.tsx +24 -0
  415. package/src/pages/demos/CoverCenterOverlayDemo.tsx +25 -0
  416. package/src/pages/demos/HeaderDemo.tsx +76 -0
  417. package/src/pages/demos/MainDefaultDemo.tsx +14 -0
  418. package/src/pages/demos/MainFormDemo.tsx +14 -0
  419. package/src/pages/demos/MainLargeDemo.tsx +14 -0
  420. package/src/pages/demos/PageLoadingDemo.tsx +10 -0
  421. package/src/routes/index.tsx +59 -0
  422. package/src/types/global.d.ts +11 -0
  423. package/src/vite-env.d.ts +1 -0
  424. package/tailwind.config.ts +19 -0
  425. package/tsconfig.app.json +28 -0
  426. package/tsconfig.json +7 -0
  427. package/tsconfig.node.json +25 -0
  428. package/vite.config.ts +53 -0
  429. package/dist/index.cjs.js +0 -4174
  430. package/dist/index.css +0 -1491
  431. package/dist/index.d.ts +0 -1
  432. package/dist/index.es.js +0 -21211
  433. package/dist/index.umd.js +0 -4180
  434. package/dist/lib/Mixins.tsx +0 -990
  435. package/dist/lib/Variables.ts +0 -266
  436. package/dist/lib/components/Accordion/Accordion.tsx +0 -83
  437. package/dist/lib/components/Accordion/AccordionButton.tsx +0 -70
  438. package/dist/lib/components/Accordion/AccordionContent.tsx +0 -26
  439. package/dist/lib/components/Accordion/AccordionItem.tsx +0 -72
  440. package/dist/lib/components/Accordion/styles.tsx +0 -163
  441. package/dist/lib/components/Accordion/subtypes.ts +0 -20
  442. package/dist/lib/components/Accordion/types.ts +0 -31
  443. package/dist/lib/components/Alert/Alert.tsx +0 -122
  444. package/dist/lib/components/Alert/styles.tsx +0 -37
  445. package/dist/lib/components/Alert/types.ts +0 -31
  446. package/dist/lib/components/Aside/Aside.tsx +0 -41
  447. package/dist/lib/components/Aside/styles.tsx +0 -47
  448. package/dist/lib/components/Aside/types.ts +0 -5
  449. package/dist/lib/components/Autocomplete/Autocomplete.tsx +0 -356
  450. package/dist/lib/components/Autocomplete/styles.tsx +0 -11
  451. package/dist/lib/components/Autocomplete/types.ts +0 -41
  452. package/dist/lib/components/Avatar/Avatar.tsx +0 -147
  453. package/dist/lib/components/Avatar/AvatarFunction.tsx +0 -119
  454. package/dist/lib/components/Avatar/styles.tsx +0 -88
  455. package/dist/lib/components/Avatar/types.ts +0 -84
  456. package/dist/lib/components/BackToTop/BackToTop.tsx +0 -104
  457. package/dist/lib/components/BackToTop/styles.tsx +0 -33
  458. package/dist/lib/components/BackToTop/types.ts +0 -6
  459. package/dist/lib/components/Badge/Badge.tsx +0 -99
  460. package/dist/lib/components/Badge/styles.tsx +0 -39
  461. package/dist/lib/components/Badge/types.ts +0 -32
  462. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +0 -41
  463. package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +0 -62
  464. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +0 -64
  465. package/dist/lib/components/Breadcrumbs/styles.tsx +0 -62
  466. package/dist/lib/components/Breadcrumbs/subtypes.ts +0 -10
  467. package/dist/lib/components/Breadcrumbs/types.ts +0 -29
  468. package/dist/lib/components/Burger/Burger.tsx +0 -62
  469. package/dist/lib/components/Burger/styles.tsx +0 -91
  470. package/dist/lib/components/Burger/types.ts +0 -11
  471. package/dist/lib/components/Button/Button.tsx +0 -136
  472. package/dist/lib/components/Button/styles.tsx +0 -30
  473. package/dist/lib/components/Button/subtypes.ts +0 -10
  474. package/dist/lib/components/Button/types.ts +0 -70
  475. package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +0 -136
  476. package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +0 -76
  477. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +0 -88
  478. package/dist/lib/components/ButtonGroup/styles.tsx +0 -89
  479. package/dist/lib/components/ButtonGroup/subtypes.ts +0 -43
  480. package/dist/lib/components/ButtonGroup/types.ts +0 -34
  481. package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +0 -84
  482. package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +0 -140
  483. package/dist/lib/components/ButtonIcon/styles.tsx +0 -29
  484. package/dist/lib/components/ButtonIcon/subtypes.ts +0 -10
  485. package/dist/lib/components/ButtonIcon/types.ts +0 -88
  486. package/dist/lib/components/Card/Card.tsx +0 -132
  487. package/dist/lib/components/Card/index.ts +0 -1
  488. package/dist/lib/components/Card/styles.tsx +0 -77
  489. package/dist/lib/components/Card/types.ts +0 -29
  490. package/dist/lib/components/CodeContainer/CodeContainer.tsx +0 -133
  491. package/dist/lib/components/CodeContainer/styles.tsx +0 -63
  492. package/dist/lib/components/CodeContainer/types.ts +0 -233
  493. package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +0 -434
  494. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +0 -79
  495. package/dist/lib/components/ComponentsMixins/index.ts +0 -3
  496. package/dist/lib/components/ComponentsMixins/types.ts +0 -35
  497. package/dist/lib/components/Cover/Cover.tsx +0 -79
  498. package/dist/lib/components/Cover/styles.tsx +0 -78
  499. package/dist/lib/components/Cover/types.ts +0 -12
  500. package/dist/lib/components/Datepicker/Calendar.tsx +0 -394
  501. package/dist/lib/components/Datepicker/Datepicker.tsx +0 -255
  502. package/dist/lib/components/Datepicker/data.ts +0 -31
  503. package/dist/lib/components/Datepicker/index.ts +0 -1
  504. package/dist/lib/components/Datepicker/styles.tsx +0 -454
  505. package/dist/lib/components/Datepicker/types.ts +0 -66
  506. package/dist/lib/components/DragList/DragList.tsx +0 -121
  507. package/dist/lib/components/DragList/DragListItem.tsx +0 -184
  508. package/dist/lib/components/DragList/styles.tsx +0 -73
  509. package/dist/lib/components/DragList/types.ts +0 -59
  510. package/dist/lib/components/Drawer/Drawer.tsx +0 -113
  511. package/dist/lib/components/Drawer/styles.tsx +0 -134
  512. package/dist/lib/components/Drawer/types.ts +0 -26
  513. package/dist/lib/components/Dropdown/Dropdown.tsx +0 -98
  514. package/dist/lib/components/Dropdown/DropdownContainer.tsx +0 -48
  515. package/dist/lib/components/Dropdown/DropdownItem.tsx +0 -97
  516. package/dist/lib/components/Dropdown/index.ts +0 -3
  517. package/dist/lib/components/Dropdown/styles.tsx +0 -155
  518. package/dist/lib/components/Dropdown/types.ts +0 -63
  519. package/dist/lib/components/Fade/Fade.tsx +0 -54
  520. package/dist/lib/components/Fade/styles.tsx +0 -17
  521. package/dist/lib/components/Fallback/Fallback.tsx +0 -40
  522. package/dist/lib/components/Fallback/index.ts +0 -1
  523. package/dist/lib/components/Fieldset/Fieldset.tsx +0 -111
  524. package/dist/lib/components/Fieldset/styles.tsx +0 -48
  525. package/dist/lib/components/Fieldset/types.ts +0 -32
  526. package/dist/lib/components/Flexbox/Flexbox.tsx +0 -73
  527. package/dist/lib/components/Flexbox/styles.tsx +0 -32
  528. package/dist/lib/components/Flexbox/types.ts +0 -25
  529. package/dist/lib/components/Footer/Footer.tsx +0 -103
  530. package/dist/lib/components/Footer/FooterLink.tsx +0 -31
  531. package/dist/lib/components/Footer/FooterLogo.tsx +0 -29
  532. package/dist/lib/components/Footer/index.ts +0 -1
  533. package/dist/lib/components/Footer/styles.tsx +0 -124
  534. package/dist/lib/components/Footer/subtypes.ts +0 -14
  535. package/dist/lib/components/Footer/types.ts +0 -70
  536. package/dist/lib/components/Form/Form.tsx +0 -157
  537. package/dist/lib/components/Form/styles.tsx +0 -22
  538. package/dist/lib/components/Form/types.ts +0 -30
  539. package/dist/lib/components/FullBleed/FullBleed.tsx +0 -48
  540. package/dist/lib/components/FullBleed/index.ts +0 -1
  541. package/dist/lib/components/FullBleed/styles.tsx +0 -30
  542. package/dist/lib/components/FullBleed/types.ts +0 -7
  543. package/dist/lib/components/Grid/Grid.tsx +0 -71
  544. package/dist/lib/components/Grid/styles.tsx +0 -29
  545. package/dist/lib/components/Grid/types.ts +0 -22
  546. package/dist/lib/components/Header/Header.tsx +0 -223
  547. package/dist/lib/components/Header/HeaderBurger.tsx +0 -52
  548. package/dist/lib/components/Header/HeaderLogo.tsx +0 -68
  549. package/dist/lib/components/Header/HeaderNav.tsx +0 -89
  550. package/dist/lib/components/Header/HeaderNavLink.tsx +0 -31
  551. package/dist/lib/components/Header/HeaderSearch.tsx +0 -81
  552. package/dist/lib/components/Header/styles.tsx +0 -350
  553. package/dist/lib/components/Header/subtypes.ts +0 -79
  554. package/dist/lib/components/Header/types.ts +0 -89
  555. package/dist/lib/components/Highlight/Highlight.tsx +0 -47
  556. package/dist/lib/components/Highlight/types.ts +0 -9
  557. package/dist/lib/components/Hr/Hr.tsx +0 -52
  558. package/dist/lib/components/Hr/styles.tsx +0 -27
  559. package/dist/lib/components/Hr/types.ts +0 -10
  560. package/dist/lib/components/Icon/Icon.tsx +0 -42
  561. package/dist/lib/components/Icon/index.ts +0 -1
  562. package/dist/lib/components/Icon/styles.tsx +0 -19
  563. package/dist/lib/components/Icon/types.ts +0 -13
  564. package/dist/lib/components/IconMenu/IconMenu.tsx +0 -148
  565. package/dist/lib/components/IconMenu/IconMenuItem.tsx +0 -75
  566. package/dist/lib/components/IconMenu/index.ts +0 -2
  567. package/dist/lib/components/IconMenu/styles.tsx +0 -114
  568. package/dist/lib/components/IconMenu/types.ts +0 -50
  569. package/dist/lib/components/Image/Image.tsx +0 -124
  570. package/dist/lib/components/Image/ImageFunction.tsx +0 -47
  571. package/dist/lib/components/Image/styles.tsx +0 -85
  572. package/dist/lib/components/Image/types.ts +0 -46
  573. package/dist/lib/components/Input/Input.tsx +0 -163
  574. package/dist/lib/components/Input/styles.tsx +0 -39
  575. package/dist/lib/components/Input/subtypes.ts +0 -166
  576. package/dist/lib/components/Input/templates/ColorInput.tsx +0 -34
  577. package/dist/lib/components/Input/templates/DateInput.tsx +0 -118
  578. package/dist/lib/components/Input/templates/FileInput.tsx +0 -55
  579. package/dist/lib/components/Input/templates/PasswordInput.tsx +0 -185
  580. package/dist/lib/components/Input/templates/SearchInput.tsx +0 -132
  581. package/dist/lib/components/Input/templates/SelectInput.tsx +0 -110
  582. package/dist/lib/components/Input/templates/TextInput.tsx +0 -110
  583. package/dist/lib/components/Input/templates/TextareaInput.tsx +0 -37
  584. package/dist/lib/components/Input/templates/TimeInput.tsx +0 -117
  585. package/dist/lib/components/Input/types.ts +0 -22
  586. package/dist/lib/components/InputCheck/InputCheck.tsx +0 -145
  587. package/dist/lib/components/InputCheck/styles.tsx +0 -282
  588. package/dist/lib/components/InputCheck/types.ts +0 -34
  589. package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +0 -42
  590. package/dist/lib/components/InputComponents/components/InputButton.tsx +0 -61
  591. package/dist/lib/components/InputComponents/components/InputContainer.tsx +0 -69
  592. package/dist/lib/components/InputComponents/components/InputIcon.tsx +0 -57
  593. package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +0 -28
  594. package/dist/lib/components/InputComponents/components/InputPrefix.tsx +0 -30
  595. package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +0 -34
  596. package/dist/lib/components/InputComponents/components/InputSuffix.tsx +0 -30
  597. package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +0 -97
  598. package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +0 -65
  599. package/dist/lib/components/InputComponents/components/InputWrapper.tsx +0 -45
  600. package/dist/lib/components/InputComponents/components/ListInput.tsx +0 -42
  601. package/dist/lib/components/InputComponents/components/ListInputItem.tsx +0 -48
  602. package/dist/lib/components/InputComponents/index.ts +0 -13
  603. package/dist/lib/components/InputComponents/styles.tsx +0 -716
  604. package/dist/lib/components/InputComponents/types.ts +0 -262
  605. package/dist/lib/components/InputContainer/HelperBottom.tsx +0 -94
  606. package/dist/lib/components/InputContainer/InputContainer.tsx +0 -143
  607. package/dist/lib/components/InputContainer/styles.tsx +0 -87
  608. package/dist/lib/components/InputContainer/subtypes.ts +0 -8
  609. package/dist/lib/components/InputContainer/types.ts +0 -23
  610. package/dist/lib/components/InputCounter/InputCounter.tsx +0 -296
  611. package/dist/lib/components/InputCounter/styles.tsx +0 -51
  612. package/dist/lib/components/InputCounter/subtypes.ts +0 -7
  613. package/dist/lib/components/InputCounter/types.ts +0 -49
  614. package/dist/lib/components/InputImage/EmptyContainer.tsx +0 -40
  615. package/dist/lib/components/InputImage/HoverContainer.tsx +0 -47
  616. package/dist/lib/components/InputImage/InputImage.tsx +0 -160
  617. package/dist/lib/components/InputImage/styles.tsx +0 -113
  618. package/dist/lib/components/InputImage/subtypes.ts +0 -28
  619. package/dist/lib/components/InputImage/types.ts +0 -23
  620. package/dist/lib/components/InputPhone/InputPhone.tsx +0 -392
  621. package/dist/lib/components/InputPhone/styles.tsx +0 -216
  622. package/dist/lib/components/InputPhone/types.ts +0 -33
  623. package/dist/lib/components/InputPin/InputPin.tsx +0 -137
  624. package/dist/lib/components/InputPin/styles.tsx +0 -68
  625. package/dist/lib/components/InputPin/subtypes.ts +0 -9
  626. package/dist/lib/components/InputPin/types.ts +0 -29
  627. package/dist/lib/components/InputSlider/InputSlider.tsx +0 -193
  628. package/dist/lib/components/InputSlider/Slider.tsx +0 -43
  629. package/dist/lib/components/InputSlider/styles.tsx +0 -290
  630. package/dist/lib/components/InputSlider/types.ts +0 -13
  631. package/dist/lib/components/Key/Key.tsx +0 -46
  632. package/dist/lib/components/Key/styles.tsx +0 -27
  633. package/dist/lib/components/Key/types.ts +0 -9
  634. package/dist/lib/components/LibIcon/LibIcon.tsx +0 -34
  635. package/dist/lib/components/LibIcon/index.ts +0 -1
  636. package/dist/lib/components/LibIcon/types.ts +0 -7
  637. package/dist/lib/components/Link/Link.tsx +0 -88
  638. package/dist/lib/components/Link/index.ts +0 -1
  639. package/dist/lib/components/Link/types.ts +0 -7
  640. package/dist/lib/components/Linkify/Linkify.tsx +0 -58
  641. package/dist/lib/components/Linkify/types.ts +0 -6
  642. package/dist/lib/components/ListGroup/ListGroup.tsx +0 -110
  643. package/dist/lib/components/ListGroup/ListGroupItem.tsx +0 -171
  644. package/dist/lib/components/ListGroup/ListGroupTitle.tsx +0 -56
  645. package/dist/lib/components/ListGroup/index.ts +0 -3
  646. package/dist/lib/components/ListGroup/styles.tsx +0 -177
  647. package/dist/lib/components/ListGroup/types.ts +0 -106
  648. package/dist/lib/components/Loader/Loader.tsx +0 -45
  649. package/dist/lib/components/Loader/styles.tsx +0 -138
  650. package/dist/lib/components/Loader/templates/LoaderFour.tsx +0 -27
  651. package/dist/lib/components/Loader/templates/LoaderOne.tsx +0 -21
  652. package/dist/lib/components/Loader/templates/LoaderThree.tsx +0 -30
  653. package/dist/lib/components/Loader/templates/LoaderTwo.tsx +0 -25
  654. package/dist/lib/components/Loader/types.ts +0 -23
  655. package/dist/lib/components/Main/Main.tsx +0 -48
  656. package/dist/lib/components/Main/styles.tsx +0 -61
  657. package/dist/lib/components/Main/types.ts +0 -15
  658. package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +0 -42
  659. package/dist/lib/components/MarkdownContainer/styles.tsx +0 -15
  660. package/dist/lib/components/MarkdownContainer/types.ts +0 -7
  661. package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +0 -200
  662. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +0 -75
  663. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +0 -73
  664. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +0 -52
  665. package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +0 -88
  666. package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +0 -180
  667. package/dist/lib/components/MarkdownEditor/styles.tsx +0 -187
  668. package/dist/lib/components/MarkdownEditor/subtypes.ts +0 -54
  669. package/dist/lib/components/MarkdownEditor/types.ts +0 -57
  670. package/dist/lib/components/Masonry/Masonry.tsx +0 -73
  671. package/dist/lib/components/Masonry/styles.tsx +0 -22
  672. package/dist/lib/components/Masonry/types.ts +0 -8
  673. package/dist/lib/components/Masonry/utils.ts +0 -28
  674. package/dist/lib/components/Messaging/Message.tsx +0 -112
  675. package/dist/lib/components/Messaging/MessageForm.tsx +0 -153
  676. package/dist/lib/components/Messaging/MessagesContainer.tsx +0 -42
  677. package/dist/lib/components/Messaging/MessagesList.tsx +0 -140
  678. package/dist/lib/components/Messaging/Messaging.tsx +0 -123
  679. package/dist/lib/components/Messaging/index.ts +0 -5
  680. package/dist/lib/components/Messaging/styles.tsx +0 -176
  681. package/dist/lib/components/Messaging/types.ts +0 -119
  682. package/dist/lib/components/Meta/Meta.tsx +0 -125
  683. package/dist/lib/components/Meta/index.ts +0 -3
  684. package/dist/lib/components/Meta/types.ts +0 -17
  685. package/dist/lib/components/Modal/Modal.tsx +0 -134
  686. package/dist/lib/components/Modal/styles.tsx +0 -60
  687. package/dist/lib/components/Modal/types.ts +0 -36
  688. package/dist/lib/components/PageLayout/PageLayout.tsx +0 -96
  689. package/dist/lib/components/PageLayout/index.ts +0 -1
  690. package/dist/lib/components/PageLayout/types.ts +0 -45
  691. package/dist/lib/components/PageLoading/PageLoading.tsx +0 -67
  692. package/dist/lib/components/PageLoading/styles.tsx +0 -22
  693. package/dist/lib/components/PageLoading/types.ts +0 -13
  694. package/dist/lib/components/Pagination/Pagination.tsx +0 -262
  695. package/dist/lib/components/Pagination/PaginationButton.tsx +0 -52
  696. package/dist/lib/components/Pagination/styles.tsx +0 -70
  697. package/dist/lib/components/Pagination/types.ts +0 -55
  698. package/dist/lib/components/Paginator/Paginator.tsx +0 -169
  699. package/dist/lib/components/Paginator/styles.tsx +0 -34
  700. package/dist/lib/components/Paginator/types.ts +0 -14
  701. package/dist/lib/components/ProgressBar/ProgressBar.tsx +0 -74
  702. package/dist/lib/components/ProgressBar/styles.tsx +0 -76
  703. package/dist/lib/components/ProgressBar/types.ts +0 -11
  704. package/dist/lib/components/ProgressCircle/Circle.tsx +0 -29
  705. package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +0 -96
  706. package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +0 -42
  707. package/dist/lib/components/ProgressCircle/Value.tsx +0 -30
  708. package/dist/lib/components/ProgressCircle/clean-percentage.ts +0 -5
  709. package/dist/lib/components/ProgressCircle/styles.tsx +0 -53
  710. package/dist/lib/components/ProgressCircle/subtypes.ts +0 -9
  711. package/dist/lib/components/ProgressCircle/types.ts +0 -29
  712. package/dist/lib/components/Rating/Rating.tsx +0 -178
  713. package/dist/lib/components/Rating/styles.tsx +0 -50
  714. package/dist/lib/components/Rating/types.ts +0 -22
  715. package/dist/lib/components/ResetScroll/ResetScroll.tsx +0 -27
  716. package/dist/lib/components/ResetScroll/index.ts +0 -1
  717. package/dist/lib/components/Section/Section.tsx +0 -45
  718. package/dist/lib/components/Section/styles.tsx +0 -22
  719. package/dist/lib/components/Section/types.ts +0 -5
  720. package/dist/lib/components/Select/Select.tsx +0 -290
  721. package/dist/lib/components/Select/SelectButton.tsx +0 -52
  722. package/dist/lib/components/Select/styles.tsx +0 -20
  723. package/dist/lib/components/Select/subtypes.ts +0 -31
  724. package/dist/lib/components/Select/types.ts +0 -31
  725. package/dist/lib/components/Skeleton/Skeleton.tsx +0 -62
  726. package/dist/lib/components/Skeleton/SkeletonCard.tsx +0 -81
  727. package/dist/lib/components/Skeleton/SkeletonShine.tsx +0 -30
  728. package/dist/lib/components/Skeleton/index.ts +0 -3
  729. package/dist/lib/components/Skeleton/styles.tsx +0 -94
  730. package/dist/lib/components/Skeleton/subtypes.ts +0 -14
  731. package/dist/lib/components/Skeleton/types.ts +0 -37
  732. package/dist/lib/components/Slideshow/Slideshow.tsx +0 -191
  733. package/dist/lib/components/Slideshow/SlideshowButton.tsx +0 -98
  734. package/dist/lib/components/Slideshow/SlideshowPagination.tsx +0 -83
  735. package/dist/lib/components/Slideshow/styles.tsx +0 -359
  736. package/dist/lib/components/Slideshow/subtypes.ts +0 -20
  737. package/dist/lib/components/Slideshow/types.ts +0 -97
  738. package/dist/lib/components/SrOnly/SrOnly.tsx +0 -34
  739. package/dist/lib/components/SrOnly/index.ts +0 -1
  740. package/dist/lib/components/SrOnly/styles.tsx +0 -19
  741. package/dist/lib/components/SrOnly/types.ts +0 -3
  742. package/dist/lib/components/Stepper/Step.tsx +0 -122
  743. package/dist/lib/components/Stepper/Stepper.tsx +0 -92
  744. package/dist/lib/components/Stepper/index.ts +0 -2
  745. package/dist/lib/components/Stepper/styles.tsx +0 -113
  746. package/dist/lib/components/Stepper/types.ts +0 -42
  747. package/dist/lib/components/Sticky/Sticky.tsx +0 -44
  748. package/dist/lib/components/Sticky/styles.tsx +0 -13
  749. package/dist/lib/components/Sticky/types.ts +0 -5
  750. package/dist/lib/components/Table/TBody.tsx +0 -27
  751. package/dist/lib/components/Table/THead.tsx +0 -27
  752. package/dist/lib/components/Table/Table.tsx +0 -128
  753. package/dist/lib/components/Table/Td.tsx +0 -35
  754. package/dist/lib/components/Table/Tr.tsx +0 -23
  755. package/dist/lib/components/Table/index.ts +0 -5
  756. package/dist/lib/components/Table/styles.tsx +0 -112
  757. package/dist/lib/components/Table/types.ts +0 -40
  758. package/dist/lib/components/Tabs/TabButton.tsx +0 -54
  759. package/dist/lib/components/Tabs/TabItem.tsx +0 -45
  760. package/dist/lib/components/Tabs/Tabs.tsx +0 -140
  761. package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +0 -48
  762. package/dist/lib/components/Tabs/TabsContainer.tsx +0 -36
  763. package/dist/lib/components/Tabs/index.ts +0 -5
  764. package/dist/lib/components/Tabs/styles.tsx +0 -176
  765. package/dist/lib/components/Tabs/types.ts +0 -48
  766. package/dist/lib/components/Tag/Tag.tsx +0 -101
  767. package/dist/lib/components/Tag/styles.tsx +0 -39
  768. package/dist/lib/components/Tag/types.ts +0 -41
  769. package/dist/lib/components/Text/Text.tsx +0 -71
  770. package/dist/lib/components/Text/styles.tsx +0 -250
  771. package/dist/lib/components/Text/subtypes.ts +0 -13
  772. package/dist/lib/components/Text/templates/Blockquote.tsx +0 -28
  773. package/dist/lib/components/Text/templates/Dl.tsx +0 -28
  774. package/dist/lib/components/Text/templates/Em.tsx +0 -28
  775. package/dist/lib/components/Text/templates/H1.tsx +0 -30
  776. package/dist/lib/components/Text/templates/H2.tsx +0 -30
  777. package/dist/lib/components/Text/templates/H3.tsx +0 -30
  778. package/dist/lib/components/Text/templates/H4.tsx +0 -30
  779. package/dist/lib/components/Text/templates/H5.tsx +0 -30
  780. package/dist/lib/components/Text/templates/H6.tsx +0 -28
  781. package/dist/lib/components/Text/templates/Ol.tsx +0 -28
  782. package/dist/lib/components/Text/templates/P.tsx +0 -28
  783. package/dist/lib/components/Text/templates/Small.tsx +0 -28
  784. package/dist/lib/components/Text/templates/Strong.tsx +0 -28
  785. package/dist/lib/components/Text/templates/Ul.tsx +0 -28
  786. package/dist/lib/components/Text/types.ts +0 -26
  787. package/dist/lib/components/TextIcon/TextIcon.tsx +0 -100
  788. package/dist/lib/components/TextIcon/index.ts +0 -1
  789. package/dist/lib/components/TextIcon/styles.tsx +0 -36
  790. package/dist/lib/components/TextIcon/types.ts +0 -19
  791. package/dist/lib/components/TextIcon/utils.ts +0 -56
  792. package/dist/lib/components/Timepicker/Timepicker.tsx +0 -306
  793. package/dist/lib/components/Timepicker/index.ts +0 -1
  794. package/dist/lib/components/Timepicker/styles.tsx +0 -32
  795. package/dist/lib/components/Timepicker/types.ts +0 -67
  796. package/dist/lib/components/Toast/Toast.tsx +0 -202
  797. package/dist/lib/components/Toast/Toaster.tsx +0 -156
  798. package/dist/lib/components/Toast/index.ts +0 -1
  799. package/dist/lib/components/Toast/styles.tsx +0 -247
  800. package/dist/lib/components/Toast/types.ts +0 -30
  801. package/dist/lib/components/Tooltip/Tooltip.tsx +0 -129
  802. package/dist/lib/components/Tooltip/styles.tsx +0 -149
  803. package/dist/lib/components/Tooltip/types.ts +0 -21
  804. package/dist/lib/components/Truncate/Truncate.tsx +0 -128
  805. package/dist/lib/components/Truncate/index.ts +0 -1
  806. package/dist/lib/components/Truncate/styles.tsx +0 -36
  807. package/dist/lib/components/Truncate/types.ts +0 -5
  808. package/dist/lib/components/Video/Video.tsx +0 -74
  809. package/dist/lib/components/Video/index.ts +0 -1
  810. package/dist/lib/components/Video/styles.tsx +0 -22
  811. package/dist/lib/components/Video/types.ts +0 -20
  812. package/dist/lib/components/Wrapper/Wrapper.tsx +0 -50
  813. package/dist/lib/components/Wrapper/styles.tsx +0 -33
  814. package/dist/lib/components/Wrapper/types.ts +0 -7
  815. package/dist/lib/components/Youtube/Youtube.tsx +0 -49
  816. package/dist/lib/components/Youtube/index.ts +0 -1
  817. package/dist/lib/components/Youtube/styles.tsx +0 -18
  818. package/dist/lib/components/Youtube/types.ts +0 -10
  819. package/dist/lib/context/Theme.context.tsx +0 -116
  820. package/dist/lib/context/Toaster/Toaster.context.tsx +0 -131
  821. package/dist/lib/context/Toaster/index.ts +0 -3
  822. package/dist/lib/context/Toaster/toast.reducer.ts +0 -34
  823. package/dist/lib/design-tokens.ts +0 -2217
  824. package/dist/lib/hooks/useClickOutside.tsx +0 -42
  825. package/dist/lib/hooks/useCopyToClipboard.tsx +0 -38
  826. package/dist/lib/hooks/useDebounce.tsx +0 -26
  827. package/dist/lib/hooks/useExportData.tsx +0 -65
  828. package/dist/lib/hooks/useFetch.tsx +0 -30
  829. package/dist/lib/hooks/useForm.tsx +0 -38
  830. package/dist/lib/hooks/useIsOverflow.ts +0 -46
  831. package/dist/lib/hooks/useKeyPress.tsx +0 -101
  832. package/dist/lib/hooks/useMaxWidth.tsx +0 -32
  833. package/dist/lib/hooks/useMergeRefs.ts +0 -36
  834. package/dist/lib/hooks/useMinWidth.tsx +0 -32
  835. package/dist/lib/hooks/usePaginatedData.tsx +0 -42
  836. package/dist/lib/hooks/usePagination.tsx +0 -122
  837. package/dist/lib/hooks/useTouchScreen.tsx +0 -25
  838. package/dist/lib/hooks/useTranslation.tsx +0 -43
  839. package/dist/lib/icons/ArrowUp.tsx +0 -31
  840. package/dist/lib/icons/Bold.tsx +0 -31
  841. package/dist/lib/icons/Calendar.tsx +0 -39
  842. package/dist/lib/icons/CaretDown.tsx +0 -31
  843. package/dist/lib/icons/Check.tsx +0 -31
  844. package/dist/lib/icons/CheckCircle.tsx +0 -37
  845. package/dist/lib/icons/ChevronDown.tsx +0 -31
  846. package/dist/lib/icons/ChevronLeft.tsx +0 -31
  847. package/dist/lib/icons/ChevronRight.tsx +0 -31
  848. package/dist/lib/icons/ChevronUp.tsx +0 -31
  849. package/dist/lib/icons/Clipboard.tsx +0 -31
  850. package/dist/lib/icons/Clock.tsx +0 -34
  851. package/dist/lib/icons/Close.tsx +0 -31
  852. package/dist/lib/icons/CloseCircle.tsx +0 -37
  853. package/dist/lib/icons/Code.tsx +0 -31
  854. package/dist/lib/icons/CodeBlock.tsx +0 -41
  855. package/dist/lib/icons/Comment.tsx +0 -41
  856. package/dist/lib/icons/Drag.tsx +0 -31
  857. package/dist/lib/icons/Edit.tsx +0 -37
  858. package/dist/lib/icons/EditorCode.tsx +0 -35
  859. package/dist/lib/icons/EditorLive.tsx +0 -35
  860. package/dist/lib/icons/EditorPreview.tsx +0 -35
  861. package/dist/lib/icons/Hide.tsx +0 -31
  862. package/dist/lib/icons/Image.tsx +0 -41
  863. package/dist/lib/icons/Italic.tsx +0 -31
  864. package/dist/lib/icons/Link.tsx +0 -35
  865. package/dist/lib/icons/Minus.tsx +0 -28
  866. package/dist/lib/icons/OrderedList.tsx +0 -31
  867. package/dist/lib/icons/Plus.tsx +0 -31
  868. package/dist/lib/icons/Quote.tsx +0 -31
  869. package/dist/lib/icons/Search.tsx +0 -37
  870. package/dist/lib/icons/Send.tsx +0 -31
  871. package/dist/lib/icons/Separator.tsx +0 -31
  872. package/dist/lib/icons/Show.tsx +0 -37
  873. package/dist/lib/icons/Star.tsx +0 -31
  874. package/dist/lib/icons/StarFull.tsx +0 -31
  875. package/dist/lib/icons/Strikethrough.tsx +0 -31
  876. package/dist/lib/icons/Underline.tsx +0 -31
  877. package/dist/lib/icons/UnorderedList.tsx +0 -31
  878. package/dist/lib/icons/index.ts +0 -39
  879. package/dist/lib/icons/styles.tsx +0 -17
  880. package/dist/lib/icons/types.ts +0 -9
  881. package/dist/lib/index.css +0 -1491
  882. package/dist/lib/index.ts +0 -159
  883. package/dist/lib/lib-utils/append-styles.ts +0 -7
  884. package/dist/lib/lib-utils/colors-maps.ts +0 -174
  885. package/dist/lib/lib-utils/generate-lib-tokens.ts +0 -38
  886. package/dist/lib/lib-utils/get-highlighted-text.tsx +0 -29
  887. package/dist/lib/lib-utils/get-icon-size-from-font.ts +0 -25
  888. package/dist/lib/lib-utils/index.ts +0 -9
  889. package/dist/lib/lib-utils/round-icon-size.ts +0 -5
  890. package/dist/lib/modules-declare.d.ts +0 -19
  891. package/dist/lib/types/component-items.ts +0 -511
  892. package/dist/lib/types/components-props.ts +0 -80
  893. package/dist/lib/types/generate-int-range.ts +0 -17
  894. package/dist/lib/types/global.ts +0 -436
  895. package/dist/lib/types/index.ts +0 -5
  896. package/dist/lib/types/theme.ts +0 -166
  897. package/dist/lib/utils/StyleSheetManager.tsx +0 -30
  898. package/dist/lib/utils/index.ts +0 -4
  899. package/dist/lib/utils/lib-tokens.json +0 -860
  900. package/dist/lib/utils/linkify-text.tsx +0 -26
  901. package/dist/lib/utils/options-markdown.ts +0 -132
  902. package/dist/lib/utils/set-default-theme.ts +0 -12
  903. package/dist/styles-BCSPldCD.js +0 -16
  904. package/dist/styles-CtcGw3Gv.cjs +0 -7
  905. /package/{license.md → LICENSE} +0 -0
  906. /package/{dist → src}/lib/components/Accordion/index.ts +0 -0
  907. /package/{dist → src}/lib/components/Alert/index.ts +0 -0
  908. /package/{dist → src}/lib/components/Aside/index.ts +0 -0
  909. /package/{dist → src}/lib/components/Autocomplete/index.ts +0 -0
  910. /package/{dist → src}/lib/components/Avatar/index.ts +0 -0
  911. /package/{dist → src}/lib/components/BackToTop/index.ts +0 -0
  912. /package/{dist → src}/lib/components/Badge/index.ts +0 -0
  913. /package/{dist → src}/lib/components/Breadcrumbs/index.ts +0 -0
  914. /package/{dist → src}/lib/components/Burger/index.ts +0 -0
  915. /package/{dist → src}/lib/components/Button/index.ts +0 -0
  916. /package/{dist → src}/lib/components/ButtonGroup/index.ts +0 -0
  917. /package/{dist → src}/lib/components/ButtonIcon/index.ts +0 -0
  918. /package/{dist → src}/lib/components/CodeContainer/index.ts +0 -0
  919. /package/{dist → src}/lib/components/Cover/index.ts +0 -0
  920. /package/{dist → src}/lib/components/DragList/index.ts +0 -0
  921. /package/{dist → src}/lib/components/Drawer/index.ts +0 -0
  922. /package/{dist → src}/lib/components/Fade/index.ts +0 -0
  923. /package/{dist → src}/lib/components/Fade/types.ts +0 -0
  924. /package/{dist → src}/lib/components/Fieldset/index.ts +0 -0
  925. /package/{dist → src}/lib/components/Flexbox/index.ts +0 -0
  926. /package/{dist → src}/lib/components/Form/index.ts +0 -0
  927. /package/{dist → src}/lib/components/Grid/index.ts +0 -0
  928. /package/{dist → src}/lib/components/Header/index.ts +0 -0
  929. /package/{dist → src}/lib/components/Highlight/index.ts +0 -0
  930. /package/{dist → src}/lib/components/Hr/index.ts +0 -0
  931. /package/{dist → src}/lib/components/Image/index.ts +0 -0
  932. /package/{dist → src}/lib/components/Input/index.ts +0 -0
  933. /package/{dist → src}/lib/components/InputCheck/index.ts +0 -0
  934. /package/{dist → src}/lib/components/InputContainer/index.ts +0 -0
  935. /package/{dist → src}/lib/components/InputCounter/index.ts +0 -0
  936. /package/{dist → src}/lib/components/InputImage/index.ts +0 -0
  937. /package/{dist → src}/lib/components/InputPhone/index.ts +0 -0
  938. /package/{dist → src}/lib/components/InputPhone/utils/countries.ts +0 -0
  939. /package/{dist → src}/lib/components/InputPhone/utils/flags/ac.svg +0 -0
  940. /package/{dist → src}/lib/components/InputPhone/utils/flags/ad.svg +0 -0
  941. /package/{dist → src}/lib/components/InputPhone/utils/flags/ae.svg +0 -0
  942. /package/{dist → src}/lib/components/InputPhone/utils/flags/af.svg +0 -0
  943. /package/{dist → src}/lib/components/InputPhone/utils/flags/ag.svg +0 -0
  944. /package/{dist → src}/lib/components/InputPhone/utils/flags/ai.svg +0 -0
  945. /package/{dist → src}/lib/components/InputPhone/utils/flags/al.svg +0 -0
  946. /package/{dist → src}/lib/components/InputPhone/utils/flags/am.svg +0 -0
  947. /package/{dist → src}/lib/components/InputPhone/utils/flags/ao.svg +0 -0
  948. /package/{dist → src}/lib/components/InputPhone/utils/flags/aq.svg +0 -0
  949. /package/{dist → src}/lib/components/InputPhone/utils/flags/ar.svg +0 -0
  950. /package/{dist → src}/lib/components/InputPhone/utils/flags/as.svg +0 -0
  951. /package/{dist → src}/lib/components/InputPhone/utils/flags/at.svg +0 -0
  952. /package/{dist → src}/lib/components/InputPhone/utils/flags/au.svg +0 -0
  953. /package/{dist → src}/lib/components/InputPhone/utils/flags/aw.svg +0 -0
  954. /package/{dist → src}/lib/components/InputPhone/utils/flags/ax.svg +0 -0
  955. /package/{dist → src}/lib/components/InputPhone/utils/flags/az.svg +0 -0
  956. /package/{dist → src}/lib/components/InputPhone/utils/flags/ba.svg +0 -0
  957. /package/{dist → src}/lib/components/InputPhone/utils/flags/bb.svg +0 -0
  958. /package/{dist → src}/lib/components/InputPhone/utils/flags/bd.svg +0 -0
  959. /package/{dist → src}/lib/components/InputPhone/utils/flags/be.svg +0 -0
  960. /package/{dist → src}/lib/components/InputPhone/utils/flags/bf.svg +0 -0
  961. /package/{dist → src}/lib/components/InputPhone/utils/flags/bg.svg +0 -0
  962. /package/{dist → src}/lib/components/InputPhone/utils/flags/bh.svg +0 -0
  963. /package/{dist → src}/lib/components/InputPhone/utils/flags/bi.svg +0 -0
  964. /package/{dist → src}/lib/components/InputPhone/utils/flags/bj.svg +0 -0
  965. /package/{dist → src}/lib/components/InputPhone/utils/flags/bl.svg +0 -0
  966. /package/{dist → src}/lib/components/InputPhone/utils/flags/bm.svg +0 -0
  967. /package/{dist → src}/lib/components/InputPhone/utils/flags/bn.svg +0 -0
  968. /package/{dist → src}/lib/components/InputPhone/utils/flags/bo.svg +0 -0
  969. /package/{dist → src}/lib/components/InputPhone/utils/flags/bq.svg +0 -0
  970. /package/{dist → src}/lib/components/InputPhone/utils/flags/br.svg +0 -0
  971. /package/{dist → src}/lib/components/InputPhone/utils/flags/bs.svg +0 -0
  972. /package/{dist → src}/lib/components/InputPhone/utils/flags/bt.svg +0 -0
  973. /package/{dist → src}/lib/components/InputPhone/utils/flags/bv.svg +0 -0
  974. /package/{dist → src}/lib/components/InputPhone/utils/flags/bw.svg +0 -0
  975. /package/{dist → src}/lib/components/InputPhone/utils/flags/by.svg +0 -0
  976. /package/{dist → src}/lib/components/InputPhone/utils/flags/bz.svg +0 -0
  977. /package/{dist → src}/lib/components/InputPhone/utils/flags/ca.svg +0 -0
  978. /package/{dist → src}/lib/components/InputPhone/utils/flags/cc.svg +0 -0
  979. /package/{dist → src}/lib/components/InputPhone/utils/flags/cd.svg +0 -0
  980. /package/{dist → src}/lib/components/InputPhone/utils/flags/cefta.svg +0 -0
  981. /package/{dist → src}/lib/components/InputPhone/utils/flags/cf.svg +0 -0
  982. /package/{dist → src}/lib/components/InputPhone/utils/flags/cg.svg +0 -0
  983. /package/{dist → src}/lib/components/InputPhone/utils/flags/ch.svg +0 -0
  984. /package/{dist → src}/lib/components/InputPhone/utils/flags/ci.svg +0 -0
  985. /package/{dist → src}/lib/components/InputPhone/utils/flags/ck.svg +0 -0
  986. /package/{dist → src}/lib/components/InputPhone/utils/flags/cl.svg +0 -0
  987. /package/{dist → src}/lib/components/InputPhone/utils/flags/cm.svg +0 -0
  988. /package/{dist → src}/lib/components/InputPhone/utils/flags/cn.svg +0 -0
  989. /package/{dist → src}/lib/components/InputPhone/utils/flags/co.svg +0 -0
  990. /package/{dist → src}/lib/components/InputPhone/utils/flags/cp.svg +0 -0
  991. /package/{dist → src}/lib/components/InputPhone/utils/flags/cr.svg +0 -0
  992. /package/{dist → src}/lib/components/InputPhone/utils/flags/cu.svg +0 -0
  993. /package/{dist → src}/lib/components/InputPhone/utils/flags/cv.svg +0 -0
  994. /package/{dist → src}/lib/components/InputPhone/utils/flags/cw.svg +0 -0
  995. /package/{dist → src}/lib/components/InputPhone/utils/flags/cx.svg +0 -0
  996. /package/{dist → src}/lib/components/InputPhone/utils/flags/cy.svg +0 -0
  997. /package/{dist → src}/lib/components/InputPhone/utils/flags/cz.svg +0 -0
  998. /package/{dist → src}/lib/components/InputPhone/utils/flags/de.svg +0 -0
  999. /package/{dist → src}/lib/components/InputPhone/utils/flags/dg.svg +0 -0
  1000. /package/{dist → src}/lib/components/InputPhone/utils/flags/dj.svg +0 -0
  1001. /package/{dist → src}/lib/components/InputPhone/utils/flags/dk.svg +0 -0
  1002. /package/{dist → src}/lib/components/InputPhone/utils/flags/dm.svg +0 -0
  1003. /package/{dist → src}/lib/components/InputPhone/utils/flags/do.svg +0 -0
  1004. /package/{dist → src}/lib/components/InputPhone/utils/flags/dz.svg +0 -0
  1005. /package/{dist → src}/lib/components/InputPhone/utils/flags/ea.svg +0 -0
  1006. /package/{dist → src}/lib/components/InputPhone/utils/flags/ec.svg +0 -0
  1007. /package/{dist → src}/lib/components/InputPhone/utils/flags/ee.svg +0 -0
  1008. /package/{dist → src}/lib/components/InputPhone/utils/flags/eg.svg +0 -0
  1009. /package/{dist → src}/lib/components/InputPhone/utils/flags/eh.svg +0 -0
  1010. /package/{dist → src}/lib/components/InputPhone/utils/flags/er.svg +0 -0
  1011. /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ct.svg +0 -0
  1012. /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ga.svg +0 -0
  1013. /package/{dist → src}/lib/components/InputPhone/utils/flags/es.svg +0 -0
  1014. /package/{dist → src}/lib/components/InputPhone/utils/flags/et.svg +0 -0
  1015. /package/{dist → src}/lib/components/InputPhone/utils/flags/eu.svg +0 -0
  1016. /package/{dist → src}/lib/components/InputPhone/utils/flags/fi.svg +0 -0
  1017. /package/{dist → src}/lib/components/InputPhone/utils/flags/fj.svg +0 -0
  1018. /package/{dist → src}/lib/components/InputPhone/utils/flags/fk.svg +0 -0
  1019. /package/{dist → src}/lib/components/InputPhone/utils/flags/fm.svg +0 -0
  1020. /package/{dist → src}/lib/components/InputPhone/utils/flags/fo.svg +0 -0
  1021. /package/{dist → src}/lib/components/InputPhone/utils/flags/fr.svg +0 -0
  1022. /package/{dist → src}/lib/components/InputPhone/utils/flags/ga.svg +0 -0
  1023. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-eng.svg +0 -0
  1024. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-nir.svg +0 -0
  1025. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-sct.svg +0 -0
  1026. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-wls.svg +0 -0
  1027. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb.svg +0 -0
  1028. /package/{dist → src}/lib/components/InputPhone/utils/flags/gd.svg +0 -0
  1029. /package/{dist → src}/lib/components/InputPhone/utils/flags/ge.svg +0 -0
  1030. /package/{dist → src}/lib/components/InputPhone/utils/flags/gf.svg +0 -0
  1031. /package/{dist → src}/lib/components/InputPhone/utils/flags/gg.svg +0 -0
  1032. /package/{dist → src}/lib/components/InputPhone/utils/flags/gh.svg +0 -0
  1033. /package/{dist → src}/lib/components/InputPhone/utils/flags/gi.svg +0 -0
  1034. /package/{dist → src}/lib/components/InputPhone/utils/flags/gl.svg +0 -0
  1035. /package/{dist → src}/lib/components/InputPhone/utils/flags/gm.svg +0 -0
  1036. /package/{dist → src}/lib/components/InputPhone/utils/flags/gn.svg +0 -0
  1037. /package/{dist → src}/lib/components/InputPhone/utils/flags/gp.svg +0 -0
  1038. /package/{dist → src}/lib/components/InputPhone/utils/flags/gq.svg +0 -0
  1039. /package/{dist → src}/lib/components/InputPhone/utils/flags/gr.svg +0 -0
  1040. /package/{dist → src}/lib/components/InputPhone/utils/flags/gs.svg +0 -0
  1041. /package/{dist → src}/lib/components/InputPhone/utils/flags/gt.svg +0 -0
  1042. /package/{dist → src}/lib/components/InputPhone/utils/flags/gu.svg +0 -0
  1043. /package/{dist → src}/lib/components/InputPhone/utils/flags/gw.svg +0 -0
  1044. /package/{dist → src}/lib/components/InputPhone/utils/flags/gy.svg +0 -0
  1045. /package/{dist → src}/lib/components/InputPhone/utils/flags/hk.svg +0 -0
  1046. /package/{dist → src}/lib/components/InputPhone/utils/flags/hm.svg +0 -0
  1047. /package/{dist → src}/lib/components/InputPhone/utils/flags/hn.svg +0 -0
  1048. /package/{dist → src}/lib/components/InputPhone/utils/flags/hr.svg +0 -0
  1049. /package/{dist → src}/lib/components/InputPhone/utils/flags/ht.svg +0 -0
  1050. /package/{dist → src}/lib/components/InputPhone/utils/flags/hu.svg +0 -0
  1051. /package/{dist → src}/lib/components/InputPhone/utils/flags/ic.svg +0 -0
  1052. /package/{dist → src}/lib/components/InputPhone/utils/flags/id.svg +0 -0
  1053. /package/{dist → src}/lib/components/InputPhone/utils/flags/ie.svg +0 -0
  1054. /package/{dist → src}/lib/components/InputPhone/utils/flags/il.svg +0 -0
  1055. /package/{dist → src}/lib/components/InputPhone/utils/flags/im.svg +0 -0
  1056. /package/{dist → src}/lib/components/InputPhone/utils/flags/in.svg +0 -0
  1057. /package/{dist → src}/lib/components/InputPhone/utils/flags/io.svg +0 -0
  1058. /package/{dist → src}/lib/components/InputPhone/utils/flags/iq.svg +0 -0
  1059. /package/{dist → src}/lib/components/InputPhone/utils/flags/ir.svg +0 -0
  1060. /package/{dist → src}/lib/components/InputPhone/utils/flags/is.svg +0 -0
  1061. /package/{dist → src}/lib/components/InputPhone/utils/flags/it.svg +0 -0
  1062. /package/{dist → src}/lib/components/InputPhone/utils/flags/je.svg +0 -0
  1063. /package/{dist → src}/lib/components/InputPhone/utils/flags/jm.svg +0 -0
  1064. /package/{dist → src}/lib/components/InputPhone/utils/flags/jo.svg +0 -0
  1065. /package/{dist → src}/lib/components/InputPhone/utils/flags/jp.svg +0 -0
  1066. /package/{dist → src}/lib/components/InputPhone/utils/flags/ke.svg +0 -0
  1067. /package/{dist → src}/lib/components/InputPhone/utils/flags/kg.svg +0 -0
  1068. /package/{dist → src}/lib/components/InputPhone/utils/flags/kh.svg +0 -0
  1069. /package/{dist → src}/lib/components/InputPhone/utils/flags/ki.svg +0 -0
  1070. /package/{dist → src}/lib/components/InputPhone/utils/flags/km.svg +0 -0
  1071. /package/{dist → src}/lib/components/InputPhone/utils/flags/kn.svg +0 -0
  1072. /package/{dist → src}/lib/components/InputPhone/utils/flags/kp.svg +0 -0
  1073. /package/{dist → src}/lib/components/InputPhone/utils/flags/kr.svg +0 -0
  1074. /package/{dist → src}/lib/components/InputPhone/utils/flags/kw.svg +0 -0
  1075. /package/{dist → src}/lib/components/InputPhone/utils/flags/ky.svg +0 -0
  1076. /package/{dist → src}/lib/components/InputPhone/utils/flags/kz.svg +0 -0
  1077. /package/{dist → src}/lib/components/InputPhone/utils/flags/la.svg +0 -0
  1078. /package/{dist → src}/lib/components/InputPhone/utils/flags/lb.svg +0 -0
  1079. /package/{dist → src}/lib/components/InputPhone/utils/flags/lc.svg +0 -0
  1080. /package/{dist → src}/lib/components/InputPhone/utils/flags/li.svg +0 -0
  1081. /package/{dist → src}/lib/components/InputPhone/utils/flags/lk.svg +0 -0
  1082. /package/{dist → src}/lib/components/InputPhone/utils/flags/lr.svg +0 -0
  1083. /package/{dist → src}/lib/components/InputPhone/utils/flags/ls.svg +0 -0
  1084. /package/{dist → src}/lib/components/InputPhone/utils/flags/lt.svg +0 -0
  1085. /package/{dist → src}/lib/components/InputPhone/utils/flags/lu.svg +0 -0
  1086. /package/{dist → src}/lib/components/InputPhone/utils/flags/lv.svg +0 -0
  1087. /package/{dist → src}/lib/components/InputPhone/utils/flags/ly.svg +0 -0
  1088. /package/{dist → src}/lib/components/InputPhone/utils/flags/ma.svg +0 -0
  1089. /package/{dist → src}/lib/components/InputPhone/utils/flags/mc.svg +0 -0
  1090. /package/{dist → src}/lib/components/InputPhone/utils/flags/md.svg +0 -0
  1091. /package/{dist → src}/lib/components/InputPhone/utils/flags/me.svg +0 -0
  1092. /package/{dist → src}/lib/components/InputPhone/utils/flags/mf.svg +0 -0
  1093. /package/{dist → src}/lib/components/InputPhone/utils/flags/mg.svg +0 -0
  1094. /package/{dist → src}/lib/components/InputPhone/utils/flags/mh.svg +0 -0
  1095. /package/{dist → src}/lib/components/InputPhone/utils/flags/mk.svg +0 -0
  1096. /package/{dist → src}/lib/components/InputPhone/utils/flags/ml.svg +0 -0
  1097. /package/{dist → src}/lib/components/InputPhone/utils/flags/mm.svg +0 -0
  1098. /package/{dist → src}/lib/components/InputPhone/utils/flags/mn.svg +0 -0
  1099. /package/{dist → src}/lib/components/InputPhone/utils/flags/mo.svg +0 -0
  1100. /package/{dist → src}/lib/components/InputPhone/utils/flags/mp.svg +0 -0
  1101. /package/{dist → src}/lib/components/InputPhone/utils/flags/mq.svg +0 -0
  1102. /package/{dist → src}/lib/components/InputPhone/utils/flags/mr.svg +0 -0
  1103. /package/{dist → src}/lib/components/InputPhone/utils/flags/ms.svg +0 -0
  1104. /package/{dist → src}/lib/components/InputPhone/utils/flags/mt.svg +0 -0
  1105. /package/{dist → src}/lib/components/InputPhone/utils/flags/mu.svg +0 -0
  1106. /package/{dist → src}/lib/components/InputPhone/utils/flags/mv.svg +0 -0
  1107. /package/{dist → src}/lib/components/InputPhone/utils/flags/mw.svg +0 -0
  1108. /package/{dist → src}/lib/components/InputPhone/utils/flags/mx.svg +0 -0
  1109. /package/{dist → src}/lib/components/InputPhone/utils/flags/my.svg +0 -0
  1110. /package/{dist → src}/lib/components/InputPhone/utils/flags/mz.svg +0 -0
  1111. /package/{dist → src}/lib/components/InputPhone/utils/flags/na.svg +0 -0
  1112. /package/{dist → src}/lib/components/InputPhone/utils/flags/nc.svg +0 -0
  1113. /package/{dist → src}/lib/components/InputPhone/utils/flags/ne.svg +0 -0
  1114. /package/{dist → src}/lib/components/InputPhone/utils/flags/nf.svg +0 -0
  1115. /package/{dist → src}/lib/components/InputPhone/utils/flags/ng.svg +0 -0
  1116. /package/{dist → src}/lib/components/InputPhone/utils/flags/ni.svg +0 -0
  1117. /package/{dist → src}/lib/components/InputPhone/utils/flags/nl.svg +0 -0
  1118. /package/{dist → src}/lib/components/InputPhone/utils/flags/no.svg +0 -0
  1119. /package/{dist → src}/lib/components/InputPhone/utils/flags/np.svg +0 -0
  1120. /package/{dist → src}/lib/components/InputPhone/utils/flags/nr.svg +0 -0
  1121. /package/{dist → src}/lib/components/InputPhone/utils/flags/nu.svg +0 -0
  1122. /package/{dist → src}/lib/components/InputPhone/utils/flags/nz.svg +0 -0
  1123. /package/{dist → src}/lib/components/InputPhone/utils/flags/om.svg +0 -0
  1124. /package/{dist → src}/lib/components/InputPhone/utils/flags/pa.svg +0 -0
  1125. /package/{dist → src}/lib/components/InputPhone/utils/flags/pe.svg +0 -0
  1126. /package/{dist → src}/lib/components/InputPhone/utils/flags/pf.svg +0 -0
  1127. /package/{dist → src}/lib/components/InputPhone/utils/flags/pg.svg +0 -0
  1128. /package/{dist → src}/lib/components/InputPhone/utils/flags/ph.svg +0 -0
  1129. /package/{dist → src}/lib/components/InputPhone/utils/flags/pk.svg +0 -0
  1130. /package/{dist → src}/lib/components/InputPhone/utils/flags/pl.svg +0 -0
  1131. /package/{dist → src}/lib/components/InputPhone/utils/flags/pm.svg +0 -0
  1132. /package/{dist → src}/lib/components/InputPhone/utils/flags/pn.svg +0 -0
  1133. /package/{dist → src}/lib/components/InputPhone/utils/flags/pr.svg +0 -0
  1134. /package/{dist → src}/lib/components/InputPhone/utils/flags/ps.svg +0 -0
  1135. /package/{dist → src}/lib/components/InputPhone/utils/flags/pt.svg +0 -0
  1136. /package/{dist → src}/lib/components/InputPhone/utils/flags/pw.svg +0 -0
  1137. /package/{dist → src}/lib/components/InputPhone/utils/flags/py.svg +0 -0
  1138. /package/{dist → src}/lib/components/InputPhone/utils/flags/qa.svg +0 -0
  1139. /package/{dist → src}/lib/components/InputPhone/utils/flags/re.svg +0 -0
  1140. /package/{dist → src}/lib/components/InputPhone/utils/flags/ro.svg +0 -0
  1141. /package/{dist → src}/lib/components/InputPhone/utils/flags/rs.svg +0 -0
  1142. /package/{dist → src}/lib/components/InputPhone/utils/flags/ru.svg +0 -0
  1143. /package/{dist → src}/lib/components/InputPhone/utils/flags/rw.svg +0 -0
  1144. /package/{dist → src}/lib/components/InputPhone/utils/flags/sa.svg +0 -0
  1145. /package/{dist → src}/lib/components/InputPhone/utils/flags/sb.svg +0 -0
  1146. /package/{dist → src}/lib/components/InputPhone/utils/flags/sc.svg +0 -0
  1147. /package/{dist → src}/lib/components/InputPhone/utils/flags/sd.svg +0 -0
  1148. /package/{dist → src}/lib/components/InputPhone/utils/flags/se.svg +0 -0
  1149. /package/{dist → src}/lib/components/InputPhone/utils/flags/sg.svg +0 -0
  1150. /package/{dist → src}/lib/components/InputPhone/utils/flags/sh.svg +0 -0
  1151. /package/{dist → src}/lib/components/InputPhone/utils/flags/si.svg +0 -0
  1152. /package/{dist → src}/lib/components/InputPhone/utils/flags/sj.svg +0 -0
  1153. /package/{dist → src}/lib/components/InputPhone/utils/flags/sk.svg +0 -0
  1154. /package/{dist → src}/lib/components/InputPhone/utils/flags/sl.svg +0 -0
  1155. /package/{dist → src}/lib/components/InputPhone/utils/flags/sm.svg +0 -0
  1156. /package/{dist → src}/lib/components/InputPhone/utils/flags/sn.svg +0 -0
  1157. /package/{dist → src}/lib/components/InputPhone/utils/flags/so.svg +0 -0
  1158. /package/{dist → src}/lib/components/InputPhone/utils/flags/sr.svg +0 -0
  1159. /package/{dist → src}/lib/components/InputPhone/utils/flags/ss.svg +0 -0
  1160. /package/{dist → src}/lib/components/InputPhone/utils/flags/st.svg +0 -0
  1161. /package/{dist → src}/lib/components/InputPhone/utils/flags/sv.svg +0 -0
  1162. /package/{dist → src}/lib/components/InputPhone/utils/flags/sx.svg +0 -0
  1163. /package/{dist → src}/lib/components/InputPhone/utils/flags/sy.svg +0 -0
  1164. /package/{dist → src}/lib/components/InputPhone/utils/flags/sz.svg +0 -0
  1165. /package/{dist → src}/lib/components/InputPhone/utils/flags/ta.svg +0 -0
  1166. /package/{dist → src}/lib/components/InputPhone/utils/flags/tc.svg +0 -0
  1167. /package/{dist → src}/lib/components/InputPhone/utils/flags/td.svg +0 -0
  1168. /package/{dist → src}/lib/components/InputPhone/utils/flags/tf.svg +0 -0
  1169. /package/{dist → src}/lib/components/InputPhone/utils/flags/tg.svg +0 -0
  1170. /package/{dist → src}/lib/components/InputPhone/utils/flags/th.svg +0 -0
  1171. /package/{dist → src}/lib/components/InputPhone/utils/flags/tj.svg +0 -0
  1172. /package/{dist → src}/lib/components/InputPhone/utils/flags/tk.svg +0 -0
  1173. /package/{dist → src}/lib/components/InputPhone/utils/flags/tl.svg +0 -0
  1174. /package/{dist → src}/lib/components/InputPhone/utils/flags/tm.svg +0 -0
  1175. /package/{dist → src}/lib/components/InputPhone/utils/flags/tn.svg +0 -0
  1176. /package/{dist → src}/lib/components/InputPhone/utils/flags/to.svg +0 -0
  1177. /package/{dist → src}/lib/components/InputPhone/utils/flags/tr.svg +0 -0
  1178. /package/{dist → src}/lib/components/InputPhone/utils/flags/tt.svg +0 -0
  1179. /package/{dist → src}/lib/components/InputPhone/utils/flags/tv.svg +0 -0
  1180. /package/{dist → src}/lib/components/InputPhone/utils/flags/tw.svg +0 -0
  1181. /package/{dist → src}/lib/components/InputPhone/utils/flags/tz.svg +0 -0
  1182. /package/{dist → src}/lib/components/InputPhone/utils/flags/ua.svg +0 -0
  1183. /package/{dist → src}/lib/components/InputPhone/utils/flags/ug.svg +0 -0
  1184. /package/{dist → src}/lib/components/InputPhone/utils/flags/um.svg +0 -0
  1185. /package/{dist → src}/lib/components/InputPhone/utils/flags/un.svg +0 -0
  1186. /package/{dist → src}/lib/components/InputPhone/utils/flags/us.svg +0 -0
  1187. /package/{dist → src}/lib/components/InputPhone/utils/flags/uy.svg +0 -0
  1188. /package/{dist → src}/lib/components/InputPhone/utils/flags/uz.svg +0 -0
  1189. /package/{dist → src}/lib/components/InputPhone/utils/flags/va.svg +0 -0
  1190. /package/{dist → src}/lib/components/InputPhone/utils/flags/vc.svg +0 -0
  1191. /package/{dist → src}/lib/components/InputPhone/utils/flags/ve.svg +0 -0
  1192. /package/{dist → src}/lib/components/InputPhone/utils/flags/vg.svg +0 -0
  1193. /package/{dist → src}/lib/components/InputPhone/utils/flags/vi.svg +0 -0
  1194. /package/{dist → src}/lib/components/InputPhone/utils/flags/vn.svg +0 -0
  1195. /package/{dist → src}/lib/components/InputPhone/utils/flags/vu.svg +0 -0
  1196. /package/{dist → src}/lib/components/InputPhone/utils/flags/wf.svg +0 -0
  1197. /package/{dist → src}/lib/components/InputPhone/utils/flags/ws.svg +0 -0
  1198. /package/{dist → src}/lib/components/InputPhone/utils/flags/xk.svg +0 -0
  1199. /package/{dist → src}/lib/components/InputPhone/utils/flags/xx.svg +0 -0
  1200. /package/{dist → src}/lib/components/InputPhone/utils/flags/ye.svg +0 -0
  1201. /package/{dist → src}/lib/components/InputPhone/utils/flags/yt.svg +0 -0
  1202. /package/{dist → src}/lib/components/InputPhone/utils/flags/za.svg +0 -0
  1203. /package/{dist → src}/lib/components/InputPhone/utils/flags/zm.svg +0 -0
  1204. /package/{dist → src}/lib/components/InputPhone/utils/flags/zw.svg +0 -0
  1205. /package/{dist → src}/lib/components/InputPin/index.ts +0 -0
  1206. /package/{dist → src}/lib/components/InputSlider/index.ts +0 -0
  1207. /package/{dist → src}/lib/components/Key/index.ts +0 -0
  1208. /package/{dist → src}/lib/components/Linkify/index.ts +0 -0
  1209. /package/{dist → src}/lib/components/Loader/index.ts +0 -0
  1210. /package/{dist → src}/lib/components/Main/index.ts +0 -0
  1211. /package/{dist → src}/lib/components/MarkdownContainer/index.ts +0 -0
  1212. /package/{dist → src}/lib/components/MarkdownEditor/index.ts +0 -0
  1213. /package/{dist → src}/lib/components/Masonry/index.ts +0 -0
  1214. /package/{dist → src}/lib/components/Modal/index.ts +0 -0
  1215. /package/{dist → src}/lib/components/PageLoading/index.ts +0 -0
  1216. /package/{dist → src}/lib/components/Pagination/index.ts +0 -0
  1217. /package/{dist → src}/lib/components/Paginator/index.ts +0 -0
  1218. /package/{dist → src}/lib/components/ProgressBar/index.ts +0 -0
  1219. /package/{dist → src}/lib/components/ProgressCircle/index.ts +0 -0
  1220. /package/{dist → src}/lib/components/Rating/index.ts +0 -0
  1221. /package/{dist → src}/lib/components/Section/index.ts +0 -0
  1222. /package/{dist → src}/lib/components/Select/index.ts +0 -0
  1223. /package/{dist → src}/lib/components/Slideshow/index.ts +0 -0
  1224. /package/{dist → src}/lib/components/Sticky/index.ts +0 -0
  1225. /package/{dist → src}/lib/components/Tag/index.ts +0 -0
  1226. /package/{dist → src}/lib/components/Text/index.ts +0 -0
  1227. /package/{dist → src}/lib/components/Tooltip/index.ts +0 -0
  1228. /package/{dist → src}/lib/components/Wrapper/index.ts +0 -0
  1229. /package/{dist → src}/lib/hooks/index.ts +0 -0
  1230. /package/{dist → src}/lib/lib-utils/transfom-search-keys.ts +0 -0
  1231. /package/{dist → src}/lib/types/require-at-least-one.ts +0 -0
@@ -1,37 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Edit: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- fillRule="evenodd"
27
- clipRule="evenodd"
28
- d="M11.413 16.998L7 17.013V12.583L16.634 3.041C17.384 2.292 18.703 2.288 19.459 3.044L21.045 4.63C21.423 5.008 21.631 5.51 21.631 6.044C21.631 6.578 21.423 7.08 21.045 7.458L11.413 16.998ZM19.634 6.041L18.045 4.458L16.451 6.038L18.037 7.623L19.634 6.041ZM15.03 7.444L9 13.417V15.006L10.587 15.001L16.616 9.03L15.03 7.444Z"
29
- fill="currentColor"
30
- />
31
- <path
32
- d="M19 21H5C3.897 21 3 20.103 3 19V5C3 3.897 3.897 3 5 3H13.847L11.847 5H5V19H7.979C7.99515 19.0005 8.01108 19.0028 8.02688 19.005C8.04435 19.0075 8.06168 19.01 8.079 19.01C8.092 19.01 8.10525 19.0075 8.1185 19.005C8.13175 19.0025 8.145 19 8.158 19H19V12.332L21 10.332V19C21 20.103 20.103 21 19 21Z"
33
- fill="currentColor"
34
- />
35
- </StyledIcon>
36
- )
37
- }
@@ -1,35 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const EditorCode: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M3 5V3H15C15.2652 3 15.5196 3.10536 15.7071 3.29289C15.8946 3.48043 16 3.73478 16 4V20C16 20.2652 15.8946 20.5196 15.7071 20.7071C15.5196 20.8946 15.2652 21 15 21H3V19H14V5H3Z"
27
- fill={color}
28
- />
29
- <path
30
- d="M21 19V21H19C18.7348 21 18.4804 20.8946 18.2929 20.7071C18.1054 20.5196 18 20.2652 18 20V4C18 3.73478 18.1054 3.48043 18.2929 3.29289C18.4804 3.10536 18.7348 3 19 3H21V5H20V19H21Z"
31
- fill={color}
32
- />
33
- </StyledIcon>
34
- )
35
- }
@@ -1,35 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const EditorLive: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M3 5V3H10C10.2652 3 10.5196 3.10536 10.7071 3.29289C10.8946 3.48043 11 3.73478 11 4V20C11 20.2652 10.8946 20.5196 10.7071 20.7071C10.5196 20.8946 10.2652 21 10 21H3V19H9V5H3Z"
27
- fill={color}
28
- />
29
- <path
30
- d="M21 21H14C13.7348 21 13.4804 20.8946 13.2929 20.7071C13.1054 20.5196 13 20.2652 13 20V4C13 3.73478 13.1054 3.48043 13.2929 3.29289C13.4804 3.10536 13.7348 3 14 3H21V5H15V19H21V21Z"
31
- fill={color}
32
- />
33
- </StyledIcon>
34
- )
35
- }
@@ -1,35 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const EditorPreview: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M3 5V3H5C5.26522 3 5.51957 3.10536 5.70711 3.29289C5.89464 3.48043 6 3.73478 6 4V20C6 20.2652 5.89464 20.5196 5.70711 20.7071C5.51957 20.8946 5.26522 21 5 21H3V19H4V5H3Z"
27
- fill={color}
28
- />
29
- <path
30
- d="M21 21H9C8.73478 21 8.48043 20.8946 8.29289 20.7071C8.10536 20.5196 8 20.2652 8 20V4C8 3.73478 8.10536 3.48043 8.29289 3.29289C8.48043 3.10536 8.73478 3 9 3H21V5H10V19H21V21Z"
31
- fill={color}
32
- />
33
- </StyledIcon>
34
- )
35
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Hide: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M12 19C12.946 19 13.81 18.897 14.598 18.719L12.841 16.962C12.568 16.983 12.291 17 12 17C6.64898 17 4.57598 13.154 4.07398 12C4.45093 11.1588 4.96003 10.3833 5.58198 9.70297L4.18398 8.30497C2.64598 9.97197 2.06298 11.651 2.05198 11.684C1.983 11.8893 1.983 12.1116 2.05198 12.317C2.07298 12.383 4.36698 19 12 19ZM12 4.99997C10.163 4.99997 8.65398 5.39597 7.39598 5.98097L3.70698 2.29297L2.29298 3.70697L20.293 21.707L21.707 20.293L18.388 16.974C21.002 15.023 21.935 12.359 21.949 12.317C22.018 12.1116 22.018 11.8893 21.949 11.684C21.927 11.617 19.633 4.99997 12 4.99997ZM16.972 15.558L14.692 13.278C14.882 12.888 15 12.459 15 12C15 10.359 13.641 8.99997 12 8.99997C11.541 8.99997 11.112 9.11797 10.723 9.30897L8.91498 7.50097C9.9075 7.16038 10.9507 6.99097 12 6.99997C17.351 6.99997 19.424 10.846 19.926 12C19.624 12.692 18.76 14.342 16.972 15.558Z"
27
- fill={color}
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,41 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Image: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M7.499 11C8.32743 11 8.999 10.3284 8.999 9.5C8.999 8.67157 8.32743 8 7.499 8C6.67057 8 5.999 8.67157 5.999 9.5C5.999 10.3284 6.67057 11 7.499 11Z"
27
- fill="currentColor"
28
- />
29
- <path
30
- d="M10.499 14L8.999 12L5.999 16H17.999L13.499 10L10.499 14Z"
31
- fill="currentColor"
32
- />
33
- <path
34
- fillRule="evenodd"
35
- clipRule="evenodd"
36
- d="M3.999 4H19.999C21.102 4 21.999 4.897 21.999 6V18C21.999 19.103 21.102 20 19.999 20H3.999C2.896 20 1.999 19.103 1.999 18V6C1.999 4.897 2.896 4 3.999 4ZM3.999 6V18H20.001L19.999 6H3.999Z"
37
- fill="currentColor"
38
- />
39
- </StyledIcon>
40
- )
41
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Italic: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M19 7V4H9V7H11.868L9.012 17H5V20H15V17H12.132L14.988 7H19Z"
27
- fill={color}
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,35 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Link: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M11.293 5.63599L12 4.92899C12.9385 3.9928 14.2099 3.46704 15.5355 3.46704C16.8611 3.46704 18.1325 3.9928 19.071 4.92899C20.0067 5.86771 20.5321 7.13908 20.5321 8.46449C20.5321 9.78991 20.0067 11.0613 19.071 12L16.949 14.121C16.006 15.065 14.75 15.586 13.414 15.586C12.078 15.586 10.822 15.065 9.879 14.121L9.172 13.414L10.586 12L11.293 12.707C12.426 13.84 14.402 13.84 15.535 12.707L17.657 10.586C18.2185 10.0227 18.5338 9.25983 18.5338 8.46449C18.5338 7.66916 18.2185 6.90626 17.657 6.34299C17.0935 5.78198 16.3307 5.46702 15.5355 5.46702C14.7403 5.46702 13.9775 5.78198 13.414 6.34299L12.707 7.04999L11.293 5.63599Z"
27
- fill={color}
28
- />
29
- <path
30
- d="M13.414 12L12.707 11.293C11.574 10.16 9.598 10.16 8.465 11.293L6.343 13.414C5.7815 13.9773 5.46621 14.7402 5.46621 15.5355C5.46621 16.3308 5.7815 17.0937 6.343 17.657C6.90653 18.218 7.66933 18.533 8.4645 18.533C9.25967 18.533 10.0225 18.218 10.586 17.657L11.293 16.95L12.707 18.364L12 19.071C11.536 19.5357 10.9848 19.9041 10.378 20.155C9.77111 20.4059 9.12066 20.5344 8.464 20.533C7.80752 20.5342 7.15727 20.4056 6.55062 20.1547C5.94397 19.9038 5.39287 19.5355 4.929 19.071C3.99329 18.1323 3.46787 16.8609 3.46787 15.5355C3.46787 14.2101 3.99329 12.9387 4.929 12L7.051 9.879C7.994 8.935 9.25 8.414 10.586 8.414C11.922 8.414 13.178 8.935 14.121 9.879L14.828 10.586L13.414 12Z"
31
- fill={color}
32
- />
33
- </StyledIcon>
34
- )
35
- }
@@ -1,28 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Minus: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path d="M5 11H19V13H5V11Z" fill="currentColor" />
26
- </StyledIcon>
27
- )
28
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const OrderedList: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M5.282 12.064C4.854 12.392 4.562 12.673 4.407 12.915C4.252 13.155 4.158 13.413 4.128 13.683H6.807V12.935H5.413C5.494 12.854 5.565 12.784 5.625 12.734C5.687 12.684 5.807 12.592 5.986 12.464C6.289 12.246 6.497 12.044 6.612 11.86C6.728 11.674 6.785 11.485 6.785 11.282C6.78773 11.1 6.73507 10.9214 6.634 10.77C6.53478 10.6169 6.39098 10.4979 6.222 10.429C6.048 10.353 5.803 10.318 5.489 10.318C5.189 10.318 4.952 10.356 4.783 10.432C4.62023 10.5026 4.48231 10.6203 4.387 10.77C4.293 10.913 4.228 11.116 4.193 11.374L5.087 11.45C5.112 11.262 5.161 11.133 5.234 11.056C5.2706 11.0198 5.31426 10.9916 5.36226 10.973C5.41026 10.9544 5.46157 10.9459 5.513 10.948C5.623 10.948 5.713 10.983 5.785 11.056C5.82007 11.089 5.8478 11.1291 5.8664 11.1735C5.88501 11.218 5.89407 11.2658 5.893 11.314C5.88683 11.4214 5.84928 11.5247 5.785 11.611C5.711 11.713 5.544 11.865 5.282 12.064ZM5.337 18.45C5.23288 18.4533 5.13164 18.4156 5.055 18.345C4.981 18.275 4.927 18.15 4.893 17.967L4 18.085C4.059 18.289 4.142 18.457 4.251 18.591C4.36 18.724 4.499 18.826 4.668 18.897C4.836 18.966 5.067 19 5.36 19C5.66 19 5.901 18.953 6.085 18.86C6.26334 18.7709 6.41099 18.6306 6.509 18.457C6.607 18.282 6.655 18.103 6.655 17.913C6.65867 17.7767 6.62843 17.6417 6.567 17.52C6.50793 17.413 6.42214 17.323 6.318 17.259C6.22878 17.2081 6.13235 17.171 6.032 17.149C6.16975 17.0791 6.28823 16.9764 6.377 16.85C6.45255 16.7367 6.49195 16.6032 6.49 16.467C6.49185 16.3528 6.46748 16.2397 6.41877 16.1363C6.37005 16.033 6.29829 15.9422 6.209 15.871C6.022 15.712 5.719 15.633 5.3 15.633C4.935 15.633 4.652 15.705 4.453 15.852C4.253 15.995 4.119 16.205 4.049 16.478L4.893 16.629C4.916 16.467 4.96 16.355 5.026 16.291C5.092 16.227 5.177 16.193 5.283 16.193C5.32708 16.191 5.37112 16.1978 5.41252 16.2131C5.45391 16.2284 5.49182 16.2518 5.524 16.282C5.583 16.342 5.611 16.421 5.611 16.52C5.611 16.624 5.573 16.713 5.494 16.79C5.415 16.867 5.317 16.902 5.201 16.902C5.16214 16.9008 5.12339 16.8971 5.085 16.891L5.04 17.54C5.13348 17.5088 5.23064 17.49 5.329 17.484C5.461 17.484 5.566 17.525 5.642 17.61C5.719 17.692 5.757 17.809 5.757 17.962C5.757 18.108 5.717 18.228 5.638 18.316C5.60047 18.3587 5.55414 18.3928 5.50218 18.416C5.45022 18.4391 5.39387 18.4507 5.337 18.45ZM6.285 8.367V5H5.546C5.45566 5.20174 5.32098 5.38051 5.152 5.523C4.984 5.665 4.748 5.785 4.444 5.888V6.642C4.78585 6.5477 5.10474 6.38434 5.381 6.162V8.368H6.285V8.367ZM9 6H20V8H9V6ZM9 11H20V13H9V11ZM9 16H20V18H9V16Z"
27
- fill={color}
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Plus: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M19 11H13V5H11V11H5V13H11V19H13V13H19V11Z"
27
- fill="currentColor"
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Quote: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M6.5 10C6.277 10 6.063 10.034 5.85 10.065C5.919 9.83303 5.99 9.59703 6.104 9.38503C6.218 9.07703 6.396 8.81003 6.573 8.54103C6.721 8.25003 6.982 8.05303 7.174 7.80403C7.375 7.56203 7.649 7.40103 7.866 7.20003C8.079 6.99003 8.358 6.88503 8.58 6.73703C8.812 6.60403 9.014 6.45703 9.23 6.38703L9.769 6.16503L10.243 5.96803L9.758 4.03003L9.161 4.17403C8.97 4.22203 8.737 4.27803 8.472 4.34503C8.201 4.39503 7.912 4.53203 7.59 4.65703C7.272 4.79903 6.904 4.89503 6.562 5.12303C6.218 5.34103 5.821 5.52303 5.471 5.81503C5.132 6.11603 4.723 6.37703 4.421 6.76003C4.091 7.11803 3.765 7.49403 3.512 7.92203C3.219 8.33003 3.02 8.77803 2.81 9.22103C2.62 9.66403 2.467 10.117 2.342 10.557C2.105 11.439 1.999 12.277 1.958 12.994C1.924 13.712 1.944 14.309 1.986 14.741C2.001 14.945 2.029 15.143 2.049 15.28L2.074 15.448L2.1 15.442C2.27786 16.2729 2.6873 17.0364 3.28096 17.6442C3.87462 18.2521 4.62824 18.6794 5.45464 18.8769C6.28104 19.0743 7.14645 19.0337 7.95075 18.7599C8.75506 18.486 9.4654 17.99 9.99961 17.3293C10.5338 16.6686 10.87 15.8701 10.9694 15.0263C11.0688 14.1825 10.9272 13.3278 10.5611 12.5611C10.195 11.7943 9.61934 11.1469 8.90065 10.6937C8.18197 10.2405 7.34966 9.99997 6.5 10ZM17.5 10C17.277 10 17.063 10.034 16.85 10.065C16.919 9.83303 16.99 9.59703 17.104 9.38503C17.218 9.07703 17.396 8.81003 17.573 8.54103C17.721 8.25003 17.982 8.05303 18.174 7.80403C18.375 7.56203 18.649 7.40103 18.866 7.20003C19.079 6.99003 19.358 6.88503 19.58 6.73703C19.812 6.60403 20.014 6.45703 20.23 6.38703L20.769 6.16503L21.243 5.96803L20.758 4.03003L20.161 4.17403C19.97 4.22203 19.737 4.27803 19.472 4.34503C19.201 4.39503 18.912 4.53203 18.59 4.65703C18.273 4.80003 17.904 4.89503 17.562 5.12403C17.218 5.34203 16.821 5.52403 16.471 5.81603C16.132 6.11703 15.723 6.37803 15.421 6.76003C15.091 7.11803 14.765 7.49403 14.512 7.92203C14.219 8.33003 14.02 8.77803 13.81 9.22103C13.62 9.66403 13.467 10.117 13.342 10.557C13.105 11.439 12.999 12.277 12.958 12.994C12.924 13.712 12.944 14.309 12.986 14.741C13.001 14.945 13.029 15.143 13.049 15.28L13.074 15.448L13.1 15.442C13.2779 16.2729 13.6873 17.0364 14.281 17.6442C14.8746 18.2521 15.6282 18.6794 16.4546 18.8769C17.281 19.0743 18.1464 19.0337 18.9508 18.7599C19.7551 18.486 20.4654 17.99 20.9996 17.3293C21.5338 16.6686 21.87 15.8701 21.9694 15.0263C22.0688 14.1825 21.9272 13.3278 21.5611 12.5611C21.195 11.7943 20.6193 11.1469 19.9007 10.6937C19.182 10.2405 18.3497 9.99997 17.5 10Z"
27
- fill={color}
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,37 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Search: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M12 10C12 9.468 11.791 8.966 11.412 8.586C10.656 7.832 9.346 7.83 8.586 8.588L7.174 7.172C8.687 5.66 11.312 5.66 12.826 7.172C13.1988 7.54243 13.4946 7.98308 13.6961 8.46849C13.8976 8.95389 14.0009 9.47443 14 10H12Z"
27
- fill="currentColor"
28
- />
29
- <path
30
- fillRule="evenodd"
31
- clipRule="evenodd"
32
- d="M14.897 16.312C13.4988 17.4054 11.775 17.9996 10 18C5.589 18 2 14.411 2 10C2 5.589 5.589 2 10 2C14.411 2 18 5.589 18 10C17.9996 11.7754 17.405 13.4997 16.311 14.898L20.707 19.294L19.293 20.708L14.897 16.312ZM16 10C16 6.691 13.309 4 10 4C6.691 4 4 6.691 4 10C4 13.309 6.691 16 10 16C13.309 16 16 13.309 16 10Z"
33
- fill="currentColor"
34
- />
35
- </StyledIcon>
36
- )
37
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Send: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M21.426 11.095L4.426 3.095C4.25483 3.01401 4.06417 2.98334 3.87625 3.00656C3.68832 3.02978 3.51086 3.10594 3.36455 3.22615C3.21824 3.34636 3.10912 3.50568 3.04988 3.68553C2.99065 3.86539 2.98376 4.05837 3.03 4.242L4.969 12L3.03 19.758C2.98332 19.9417 2.98992 20.1349 3.04901 20.315C3.10811 20.495 3.21726 20.6546 3.3637 20.7749C3.51014 20.8952 3.68781 20.9713 3.87593 20.9944C4.06406 21.0174 4.25485 20.9864 4.426 20.905L21.426 12.905C21.5978 12.8242 21.7431 12.6963 21.8448 12.536C21.9466 12.3757 22.0006 12.1898 22.0006 12C22.0006 11.8102 21.9466 11.6243 21.8448 11.464C21.7431 11.3037 21.5978 11.1758 21.426 11.095V11.095ZM5.481 18.197L6.32 14.84L12 12L6.32 9.16L5.481 5.803L18.651 12L5.481 18.197Z"
27
- fill="currentColor"
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Separator: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M3 11H6V13H3V11ZM8 11H11V13H8V11ZM13 11H16V13H13V11ZM18 11H21V13H18V11Z"
27
- fill={color}
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,37 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Show: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M12 10C12 11.095 12.905 12 14 12C14.354 12 14.683 11.897 14.973 11.732C14.9758 11.7675 14.9805 11.8023 14.9853 11.8372C14.9927 11.8907 15 11.9443 15 12C15 13.642 13.641 15 12 15C10.358 15 9 13.642 9 12C9.00524 11.206 9.323 10.4459 9.88447 9.88447C10.4459 9.323 11.206 9.00524 12 9C12.0557 9 12.1093 9.00734 12.1628 9.01468C12.1977 9.01946 12.2325 9.02424 12.268 9.027C12.103 9.317 12 9.646 12 10Z"
27
- fill={color}
28
- />
29
- <path
30
- fillRule="evenodd"
31
- clipRule="evenodd"
32
- d="M2.05204 11.684C2.07305 11.617 4.36704 5 12 5C19.633 5 21.927 11.617 21.949 11.684L22.054 12L21.948 12.316C21.927 12.383 19.633 19 12 19C4.36704 19 2.07305 12.383 2.05104 12.316L1.94604 12L2.05204 11.684ZM4.07404 12C4.57604 13.154 6.64904 17 12 17C17.348 17 19.422 13.158 19.926 12C19.424 10.846 17.351 7 12 7C6.65204 7 4.57804 10.842 4.07404 12Z"
33
- fill={color}
34
- />
35
- </StyledIcon>
36
- )
37
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Star: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M6.51603 14.323L5.02603 20.775C4.97989 20.9704 4.99374 21.1751 5.06577 21.3625C5.1378 21.5499 5.26467 21.7112 5.4298 21.8253C5.59492 21.9395 5.79064 22.0012 5.99138 22.0024C6.19212 22.0036 6.38855 21.9442 6.55503 21.832L12 18.202L17.445 21.832C17.6154 21.9451 17.8162 22.0033 18.0207 21.9988C18.2251 21.9944 18.4232 21.9274 18.5884 21.8069C18.7536 21.6865 18.878 21.5183 18.9448 21.3251C19.0116 21.1318 19.0176 20.9228 18.962 20.726L17.133 14.326L21.669 10.244C21.8143 10.1132 21.9181 9.94266 21.9674 9.75351C22.0168 9.56436 22.0097 9.36488 21.9469 9.17974C21.8841 8.9946 21.7685 8.83193 21.6142 8.71183C21.46 8.59173 21.2739 8.51947 21.079 8.504L15.378 8.05L12.911 2.589C12.8324 2.41316 12.7045 2.26384 12.5428 2.15906C12.3812 2.05429 12.1927 1.99854 12 1.99854C11.8074 1.99854 11.6189 2.05429 11.4572 2.15906C11.2956 2.26384 11.1677 2.41316 11.089 2.589L8.62203 8.05L2.92103 8.503C2.72948 8.51818 2.54636 8.58821 2.39358 8.70473C2.2408 8.82125 2.12482 8.97932 2.05952 9.16003C1.99422 9.34074 1.98236 9.53644 2.02537 9.72371C2.06838 9.91098 2.16443 10.0819 2.30203 10.216L6.51603 14.323V14.323ZM9.36903 9.997C9.54752 9.98294 9.71895 9.92112 9.86533 9.81802C10.0117 9.71491 10.1277 9.57433 10.201 9.411L12 5.43L13.799 9.411C13.8724 9.57433 13.9883 9.71491 14.1347 9.81802C14.2811 9.92112 14.4525 9.98294 14.631 9.997L18.603 10.312L15.332 13.256C15.048 13.512 14.935 13.906 15.039 14.274L16.292 18.659L12.556 16.168C12.392 16.0579 12.199 15.9992 12.0015 15.9992C11.804 15.9992 11.611 16.0579 11.447 16.168L7.54303 18.771L8.59303 14.225C8.63153 14.0578 8.62636 13.8835 8.57802 13.7189C8.52969 13.5543 8.43981 13.4048 8.31703 13.285L5.27903 10.323L9.36903 9.997V9.997Z"
27
- fill="currentColor"
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const StarFull: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $size={size}
22
- $color={color}
23
- {...rest}
24
- >
25
- <path
26
- d="M21.947 9.17901C21.8842 8.99388 21.7685 8.83121 21.6142 8.71107C21.46 8.59094 21.2739 8.51861 21.079 8.50301L15.378 8.05001L12.911 2.58901C12.8325 2.41313 12.7047 2.26374 12.5431 2.15887C12.3815 2.05401 12.193 1.99815 12.0004 1.99805C11.8077 1.99794 11.6192 2.05359 11.4575 2.15828C11.2957 2.26296 11.1678 2.41221 11.089 2.58801L8.62203 8.05001L2.92103 8.50301C2.72948 8.51819 2.54636 8.58823 2.39358 8.70475C2.2408 8.82127 2.12482 8.97934 2.05952 9.16004C1.99422 9.34075 1.98236 9.53645 2.02537 9.72372C2.06838 9.91099 2.16443 10.0819 2.30203 10.216L6.51503 14.323L5.02503 20.775C4.97978 20.9703 4.99428 21.1747 5.06665 21.3617C5.13901 21.5486 5.26589 21.7095 5.43083 21.8235C5.59577 21.9374 5.79115 21.9991 5.99161 22.0007C6.19208 22.0022 6.38837 21.9434 6.55503 21.832L12 18.202L17.445 21.832C17.6154 21.9451 17.8162 22.0033 18.0207 21.9988C18.2251 21.9944 18.4232 21.9274 18.5884 21.8069C18.7536 21.6865 18.878 21.5183 18.9448 21.3251C19.0116 21.1318 19.0176 20.9228 18.962 20.726L17.133 14.326L21.669 10.244C21.966 9.97601 22.075 9.55801 21.947 9.17901V9.17901Z"
27
- fill="currentColor"
28
- />
29
- </StyledIcon>
30
- )
31
- }
@@ -1,31 +0,0 @@
1
- import type { FC } from "react"
2
- import { StyledIcon } from "./styles"
3
- import type { ILibIcon } from "./types"
4
-
5
- export const Strikethrough: FC<ILibIcon> = ({
6
- "data-testid": testid,
7
- className,
8
- size = 64,
9
- color = "currentColor",
10
- ...rest
11
- }) => {
12
- return (
13
- <StyledIcon
14
- data-testid={testid}
15
- className={className}
16
- width={size}
17
- height={size}
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- xmlns="http://www.w3.org/2000/svg"
21
- $color={color}
22
- $size={size}
23
- {...rest}
24
- >
25
- <path
26
- d="M20 11H12C8 11 8 9.184 8 8.5C8 7.882 8 6 12 6C14.8 6 14.99 7.678 15 8.014L16 8H17C17 6.616 15.955 4 12 4C6.584 4 6 7.147 6 8.5C6 9.228 6.148 10.167 6.736 11H4V13H20V11ZM12 18C8.207 18 8.01 16.185 8 16H6C6 16.04 6.069 20 12 20C17.221 20 18 17.181 18 15.5C18 15.354 17.991 15.183 17.972 15H15.966C15.998 15.2 16 15.376 16 15.5C16 16.184 16 18 12 18Z"
27
- fill={color}
28
- />
29
- </StyledIcon>
30
- )
31
- }