@julseb-lib/react 0.0.63 → 0.0.65

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 (1348) hide show
  1. package/README.md +5 -5
  2. package/dist/@julseb-lib-react.cjs.js +1 -0
  3. package/dist/@julseb-lib-react.es.js +207 -0
  4. package/dist/@julseb-lib-react.umd.js +4148 -0
  5. package/dist/index-CaOLbx-Z.cjs +4142 -0
  6. package/dist/index-Cf_pM6lO.js +23319 -0
  7. package/dist/index.d.ts +1 -1
  8. package/dist/lib/Mixins.tsx +985 -0
  9. package/dist/lib/Variables.ts +296 -0
  10. package/dist/lib/components/Accordion/Accordion.tsx +86 -0
  11. package/dist/lib/components/Accordion/AccordionButton.tsx +72 -0
  12. package/dist/lib/components/Accordion/AccordionContent.tsx +27 -0
  13. package/dist/lib/components/Accordion/AccordionItem.tsx +70 -0
  14. package/dist/lib/components/Accordion/index.ts +4 -0
  15. package/dist/lib/components/Accordion/styles.tsx +165 -0
  16. package/dist/lib/components/Accordion/subtypes.ts +22 -0
  17. package/dist/lib/components/Accordion/types.ts +33 -0
  18. package/dist/lib/components/Alert/Alert.tsx +118 -0
  19. package/dist/lib/components/Alert/index.ts +3 -0
  20. package/dist/lib/components/Alert/styles.tsx +39 -0
  21. package/dist/lib/components/Alert/types.ts +33 -0
  22. package/dist/lib/components/Aside/Aside.tsx +42 -0
  23. package/dist/lib/components/Aside/index.ts +3 -0
  24. package/dist/lib/components/Aside/styles.tsx +46 -0
  25. package/dist/lib/components/Aside/types.ts +8 -0
  26. package/dist/lib/components/Autocomplete/Autocomplete.tsx +352 -0
  27. package/dist/lib/components/Autocomplete/index.ts +3 -0
  28. package/dist/lib/components/Autocomplete/styles.tsx +13 -0
  29. package/dist/lib/components/Autocomplete/types.ts +42 -0
  30. package/dist/lib/components/Avatar/Avatar.tsx +143 -0
  31. package/dist/lib/components/Avatar/AvatarFunction.tsx +136 -0
  32. package/dist/lib/components/Avatar/index.ts +3 -0
  33. package/dist/lib/components/Avatar/styles.tsx +117 -0
  34. package/dist/lib/components/Avatar/types.ts +86 -0
  35. package/dist/lib/components/BackToTop/BackToTop.tsx +101 -0
  36. package/dist/lib/components/BackToTop/index.ts +3 -0
  37. package/dist/lib/components/BackToTop/styles.tsx +35 -0
  38. package/dist/lib/components/BackToTop/types.ts +8 -0
  39. package/dist/lib/components/Badge/Badge.tsx +94 -0
  40. package/dist/lib/components/Badge/index.ts +3 -0
  41. package/dist/lib/components/Badge/styles.tsx +41 -0
  42. package/dist/lib/components/Badge/types.ts +34 -0
  43. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +42 -0
  44. package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +52 -0
  45. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +76 -0
  46. package/dist/lib/components/Breadcrumbs/index.ts +3 -0
  47. package/dist/lib/components/Breadcrumbs/styles.tsx +64 -0
  48. package/dist/lib/components/Breadcrumbs/subtypes.ts +12 -0
  49. package/dist/lib/components/Breadcrumbs/types.ts +31 -0
  50. package/dist/lib/components/Burger/Burger.tsx +59 -0
  51. package/dist/lib/components/Burger/index.ts +3 -0
  52. package/dist/lib/components/Burger/styles.tsx +93 -0
  53. package/dist/lib/components/Burger/types.ts +13 -0
  54. package/dist/lib/components/Button/Button.tsx +134 -0
  55. package/dist/lib/components/Button/index.ts +3 -0
  56. package/dist/lib/components/Button/styles.tsx +32 -0
  57. package/dist/lib/components/Button/subtypes.ts +12 -0
  58. package/dist/lib/components/Button/types.ts +72 -0
  59. package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +158 -0
  60. package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +89 -0
  61. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +99 -0
  62. package/dist/lib/components/ButtonGroup/index.ts +3 -0
  63. package/dist/lib/components/ButtonGroup/styles.tsx +91 -0
  64. package/dist/lib/components/ButtonGroup/subtypes.ts +42 -0
  65. package/dist/lib/components/ButtonGroup/types.ts +36 -0
  66. package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +95 -0
  67. package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +139 -0
  68. package/dist/lib/components/ButtonIcon/index.ts +3 -0
  69. package/dist/lib/components/ButtonIcon/styles.tsx +31 -0
  70. package/dist/lib/components/ButtonIcon/subtypes.ts +12 -0
  71. package/dist/lib/components/ButtonIcon/types.ts +90 -0
  72. package/dist/lib/components/Card/Card.tsx +133 -0
  73. package/dist/lib/components/Card/index.ts +3 -0
  74. package/dist/lib/components/Card/styles.tsx +75 -0
  75. package/dist/lib/components/Card/types.ts +29 -0
  76. package/dist/lib/components/CodeContainer/CodeContainer.tsx +135 -0
  77. package/dist/lib/components/CodeContainer/index.ts +3 -0
  78. package/dist/lib/components/CodeContainer/styles.tsx +65 -0
  79. package/dist/lib/components/CodeContainer/types.ts +235 -0
  80. package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +441 -0
  81. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +81 -0
  82. package/dist/lib/components/ComponentsMixins/index.ts +5 -0
  83. package/dist/lib/components/ComponentsMixins/types.ts +37 -0
  84. package/dist/lib/components/Cover/Cover.tsx +72 -0
  85. package/dist/lib/components/Cover/index.ts +3 -0
  86. package/dist/lib/components/Cover/styles.tsx +80 -0
  87. package/dist/lib/components/Cover/types.ts +14 -0
  88. package/dist/lib/components/Datepicker/Calendar.tsx +395 -0
  89. package/dist/lib/components/Datepicker/Datepicker.tsx +254 -0
  90. package/dist/lib/components/Datepicker/data.ts +33 -0
  91. package/dist/lib/components/Datepicker/index.ts +3 -0
  92. package/dist/lib/components/Datepicker/styles.tsx +456 -0
  93. package/dist/lib/components/Datepicker/types.ts +68 -0
  94. package/dist/lib/components/DragList/DragList.tsx +127 -0
  95. package/dist/lib/components/DragList/DragListItem.tsx +191 -0
  96. package/dist/lib/components/DragList/index.ts +4 -0
  97. package/dist/lib/components/DragList/styles.tsx +75 -0
  98. package/dist/lib/components/DragList/types.ts +65 -0
  99. package/dist/lib/components/Drawer/Drawer.tsx +110 -0
  100. package/dist/lib/components/Drawer/index.ts +3 -0
  101. package/dist/lib/components/Drawer/styles.tsx +136 -0
  102. package/dist/lib/components/Drawer/types.ts +28 -0
  103. package/dist/lib/components/Dropdown/Dropdown.tsx +89 -0
  104. package/dist/lib/components/Dropdown/DropdownContainer.tsx +39 -0
  105. package/dist/lib/components/Dropdown/DropdownItem.tsx +97 -0
  106. package/dist/lib/components/Dropdown/index.ts +5 -0
  107. package/dist/lib/components/Dropdown/styles.tsx +156 -0
  108. package/dist/lib/components/Dropdown/types.ts +71 -0
  109. package/dist/lib/components/Fade/Fade.tsx +42 -0
  110. package/dist/lib/components/Fade/index.ts +3 -0
  111. package/dist/lib/components/Fade/styles.tsx +19 -0
  112. package/dist/lib/components/Fade/types.ts +5 -0
  113. package/dist/lib/components/Fallback/Fallback.tsx +37 -0
  114. package/dist/lib/components/Fallback/index.ts +3 -0
  115. package/dist/lib/components/Fieldset/Fieldset.tsx +107 -0
  116. package/dist/lib/components/Fieldset/index.ts +3 -0
  117. package/dist/lib/components/Fieldset/styles.tsx +50 -0
  118. package/dist/lib/components/Fieldset/types.ts +34 -0
  119. package/dist/lib/components/Flexbox/Flexbox.tsx +69 -0
  120. package/dist/lib/components/Flexbox/index.ts +3 -0
  121. package/dist/lib/components/Flexbox/styles.tsx +34 -0
  122. package/dist/lib/components/Flexbox/types.ts +27 -0
  123. package/dist/lib/components/Footer/Footer.tsx +106 -0
  124. package/dist/lib/components/Footer/FooterLink.tsx +31 -0
  125. package/dist/lib/components/Footer/FooterLogo.tsx +30 -0
  126. package/dist/lib/components/Footer/index.ts +3 -0
  127. package/dist/lib/components/Footer/styles.tsx +126 -0
  128. package/dist/lib/components/Footer/subtypes.ts +14 -0
  129. package/dist/lib/components/Footer/types.ts +76 -0
  130. package/dist/lib/components/Form/Form.tsx +148 -0
  131. package/dist/lib/components/Form/index.ts +3 -0
  132. package/dist/lib/components/Form/styles.tsx +24 -0
  133. package/dist/lib/components/Form/types.ts +32 -0
  134. package/dist/lib/components/FullBleed/FullBleed.tsx +45 -0
  135. package/dist/lib/components/FullBleed/index.ts +3 -0
  136. package/dist/lib/components/FullBleed/styles.tsx +32 -0
  137. package/dist/lib/components/FullBleed/types.ts +9 -0
  138. package/dist/lib/components/Grid/Grid.tsx +66 -0
  139. package/dist/lib/components/Grid/index.ts +3 -0
  140. package/dist/lib/components/Grid/styles.tsx +31 -0
  141. package/dist/lib/components/Grid/types.ts +24 -0
  142. package/dist/lib/components/Header/Header.tsx +212 -0
  143. package/dist/lib/components/Header/HeaderBurger.tsx +59 -0
  144. package/dist/lib/components/Header/HeaderLogo.tsx +65 -0
  145. package/dist/lib/components/Header/HeaderNav.tsx +82 -0
  146. package/dist/lib/components/Header/HeaderNavLink.tsx +32 -0
  147. package/dist/lib/components/Header/HeaderSearch.tsx +83 -0
  148. package/dist/lib/components/Header/index.ts +3 -0
  149. package/dist/lib/components/Header/styles.tsx +352 -0
  150. package/dist/lib/components/Header/subtypes.ts +86 -0
  151. package/dist/lib/components/Header/types.ts +91 -0
  152. package/dist/lib/components/Helmet/Helmet.tsx +67 -0
  153. package/dist/lib/components/Helmet/index.ts +3 -0
  154. package/dist/lib/components/Helmet/types.ts +17 -0
  155. package/dist/lib/components/Highlight/Highlight.tsx +45 -0
  156. package/dist/lib/components/Highlight/index.ts +3 -0
  157. package/dist/lib/components/Highlight/types.ts +11 -0
  158. package/dist/lib/components/Hr/Hr.tsx +50 -0
  159. package/dist/lib/components/Hr/index.ts +3 -0
  160. package/dist/lib/components/Hr/styles.tsx +29 -0
  161. package/dist/lib/components/Hr/types.ts +12 -0
  162. package/dist/lib/components/Icon/Icon.tsx +42 -0
  163. package/dist/lib/components/Icon/index.ts +3 -0
  164. package/dist/lib/components/Icon/styles.tsx +21 -0
  165. package/dist/lib/components/Icon/types.ts +13 -0
  166. package/dist/lib/components/IconMenu/IconMenu.tsx +157 -0
  167. package/dist/lib/components/IconMenu/IconMenuItem.tsx +74 -0
  168. package/dist/lib/components/IconMenu/index.ts +4 -0
  169. package/dist/lib/components/IconMenu/styles.tsx +116 -0
  170. package/dist/lib/components/IconMenu/types.ts +56 -0
  171. package/dist/lib/components/Image/Image.tsx +106 -0
  172. package/dist/lib/components/Image/ImageFunction.tsx +53 -0
  173. package/dist/lib/components/Image/index.ts +3 -0
  174. package/dist/lib/components/Image/styles.tsx +87 -0
  175. package/dist/lib/components/Image/types.ts +48 -0
  176. package/dist/lib/components/Input/Input.tsx +189 -0
  177. package/dist/lib/components/Input/index.ts +3 -0
  178. package/dist/lib/components/Input/styles.tsx +41 -0
  179. package/dist/lib/components/Input/subtypes.ts +186 -0
  180. package/dist/lib/components/Input/templates/ColorInput.tsx +40 -0
  181. package/dist/lib/components/Input/templates/DateInput.tsx +127 -0
  182. package/dist/lib/components/Input/templates/FileInput.tsx +61 -0
  183. package/dist/lib/components/Input/templates/PasswordInput.tsx +197 -0
  184. package/dist/lib/components/Input/templates/SearchInput.tsx +140 -0
  185. package/dist/lib/components/Input/templates/SelectInput.tsx +116 -0
  186. package/dist/lib/components/Input/templates/TextInput.tsx +116 -0
  187. package/dist/lib/components/Input/templates/TextareaInput.tsx +43 -0
  188. package/dist/lib/components/Input/templates/TimeInput.tsx +126 -0
  189. package/dist/lib/components/Input/types.ts +24 -0
  190. package/dist/lib/components/InputCheck/InputCheck.tsx +138 -0
  191. package/dist/lib/components/InputCheck/index.ts +3 -0
  192. package/dist/lib/components/InputCheck/styles.tsx +284 -0
  193. package/dist/lib/components/InputCheck/types.ts +35 -0
  194. package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +51 -0
  195. package/dist/lib/components/InputComponents/components/InputButton.tsx +62 -0
  196. package/dist/lib/components/InputComponents/components/InputContainer.tsx +70 -0
  197. package/dist/lib/components/InputComponents/components/InputIcon.tsx +51 -0
  198. package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +29 -0
  199. package/dist/lib/components/InputComponents/components/InputPrefix.tsx +31 -0
  200. package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +35 -0
  201. package/dist/lib/components/InputComponents/components/InputSuffix.tsx +31 -0
  202. package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +98 -0
  203. package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +66 -0
  204. package/dist/lib/components/InputComponents/components/InputWrapper.tsx +46 -0
  205. package/dist/lib/components/InputComponents/components/ListInput.tsx +51 -0
  206. package/dist/lib/components/InputComponents/components/ListInputItem.tsx +56 -0
  207. package/dist/lib/components/InputComponents/index.ts +15 -0
  208. package/dist/lib/components/InputComponents/styles.tsx +738 -0
  209. package/dist/lib/components/InputComponents/types.ts +289 -0
  210. package/dist/lib/components/InputContainer/HelperBottom.tsx +96 -0
  211. package/dist/lib/components/InputContainer/InputContainer.tsx +132 -0
  212. package/dist/lib/components/InputContainer/index.ts +3 -0
  213. package/dist/lib/components/InputContainer/styles.tsx +89 -0
  214. package/dist/lib/components/InputContainer/subtypes.ts +10 -0
  215. package/dist/lib/components/InputContainer/types.ts +25 -0
  216. package/dist/lib/components/InputCounter/InputCounter.tsx +287 -0
  217. package/dist/lib/components/InputCounter/index.ts +3 -0
  218. package/dist/lib/components/InputCounter/styles.tsx +53 -0
  219. package/dist/lib/components/InputCounter/subtypes.ts +9 -0
  220. package/dist/lib/components/InputCounter/types.ts +51 -0
  221. package/dist/lib/components/InputImage/EmptyContainer.tsx +41 -0
  222. package/dist/lib/components/InputImage/HoverContainer.tsx +48 -0
  223. package/dist/lib/components/InputImage/InputImage.tsx +151 -0
  224. package/dist/lib/components/InputImage/index.ts +3 -0
  225. package/dist/lib/components/InputImage/styles.tsx +115 -0
  226. package/dist/lib/components/InputImage/subtypes.ts +30 -0
  227. package/dist/lib/components/InputImage/types.ts +25 -0
  228. package/dist/lib/components/InputPhone/InputPhone.tsx +386 -0
  229. package/dist/lib/components/InputPhone/index.ts +3 -0
  230. package/dist/lib/components/InputPhone/styles.tsx +219 -0
  231. package/dist/lib/components/InputPhone/types.ts +35 -0
  232. package/dist/lib/components/InputPhone/utils/countries.ts +648 -0
  233. package/dist/lib/components/InputPhone/utils/flags/ac.svg +76 -0
  234. package/dist/lib/components/InputPhone/utils/flags/ad.svg +150 -0
  235. package/dist/lib/components/InputPhone/utils/flags/ae.svg +6 -0
  236. package/dist/lib/components/InputPhone/utils/flags/af.svg +81 -0
  237. package/dist/lib/components/InputPhone/utils/flags/ag.svg +14 -0
  238. package/dist/lib/components/InputPhone/utils/flags/ai.svg +758 -0
  239. package/dist/lib/components/InputPhone/utils/flags/al.svg +5 -0
  240. package/dist/lib/components/InputPhone/utils/flags/am.svg +5 -0
  241. package/dist/lib/components/InputPhone/utils/flags/ao.svg +13 -0
  242. package/dist/lib/components/InputPhone/utils/flags/aq.svg +5 -0
  243. package/dist/lib/components/InputPhone/utils/flags/ar.svg +32 -0
  244. package/dist/lib/components/InputPhone/utils/flags/as.svg +72 -0
  245. package/dist/lib/components/InputPhone/utils/flags/at.svg +6 -0
  246. package/dist/lib/components/InputPhone/utils/flags/au.svg +8 -0
  247. package/dist/lib/components/InputPhone/utils/flags/aw.svg +186 -0
  248. package/dist/lib/components/InputPhone/utils/flags/ax.svg +18 -0
  249. package/dist/lib/components/InputPhone/utils/flags/az.svg +8 -0
  250. package/dist/lib/components/InputPhone/utils/flags/ba.svg +12 -0
  251. package/dist/lib/components/InputPhone/utils/flags/bb.svg +6 -0
  252. package/dist/lib/components/InputPhone/utils/flags/bd.svg +4 -0
  253. package/dist/lib/components/InputPhone/utils/flags/be.svg +7 -0
  254. package/dist/lib/components/InputPhone/utils/flags/bf.svg +7 -0
  255. package/dist/lib/components/InputPhone/utils/flags/bg.svg +7 -0
  256. package/dist/lib/components/InputPhone/utils/flags/bh.svg +4 -0
  257. package/dist/lib/components/InputPhone/utils/flags/bi.svg +15 -0
  258. package/dist/lib/components/InputPhone/utils/flags/bj.svg +14 -0
  259. package/dist/lib/components/InputPhone/utils/flags/bl.svg +7 -0
  260. package/dist/lib/components/InputPhone/utils/flags/bm.svg +97 -0
  261. package/dist/lib/components/InputPhone/utils/flags/bn.svg +36 -0
  262. package/dist/lib/components/InputPhone/utils/flags/bo.svg +676 -0
  263. package/dist/lib/components/InputPhone/utils/flags/bq.svg +5 -0
  264. package/dist/lib/components/InputPhone/utils/flags/br.svg +45 -0
  265. package/dist/lib/components/InputPhone/utils/flags/bs.svg +13 -0
  266. package/dist/lib/components/InputPhone/utils/flags/bt.svg +89 -0
  267. package/dist/lib/components/InputPhone/utils/flags/bv.svg +13 -0
  268. package/dist/lib/components/InputPhone/utils/flags/bw.svg +7 -0
  269. package/dist/lib/components/InputPhone/utils/flags/by.svg +20 -0
  270. package/dist/lib/components/InputPhone/utils/flags/bz.svg +145 -0
  271. package/dist/lib/components/InputPhone/utils/flags/ca.svg +4 -0
  272. package/dist/lib/components/InputPhone/utils/flags/cc.svg +19 -0
  273. package/dist/lib/components/InputPhone/utils/flags/cd.svg +5 -0
  274. package/dist/lib/components/InputPhone/utils/flags/cefta.svg +13 -0
  275. package/dist/lib/components/InputPhone/utils/flags/cf.svg +15 -0
  276. package/dist/lib/components/InputPhone/utils/flags/cg.svg +12 -0
  277. package/dist/lib/components/InputPhone/utils/flags/ch.svg +9 -0
  278. package/dist/lib/components/InputPhone/utils/flags/ci.svg +7 -0
  279. package/dist/lib/components/InputPhone/utils/flags/ck.svg +9 -0
  280. package/dist/lib/components/InputPhone/utils/flags/cl.svg +13 -0
  281. package/dist/lib/components/InputPhone/utils/flags/cm.svg +15 -0
  282. package/dist/lib/components/InputPhone/utils/flags/cn.svg +11 -0
  283. package/dist/lib/components/InputPhone/utils/flags/co.svg +7 -0
  284. package/dist/lib/components/InputPhone/utils/flags/cp.svg +7 -0
  285. package/dist/lib/components/InputPhone/utils/flags/cr.svg +7 -0
  286. package/dist/lib/components/InputPhone/utils/flags/cu.svg +13 -0
  287. package/dist/lib/components/InputPhone/utils/flags/cv.svg +13 -0
  288. package/dist/lib/components/InputPhone/utils/flags/cw.svg +14 -0
  289. package/dist/lib/components/InputPhone/utils/flags/cx.svg +15 -0
  290. package/dist/lib/components/InputPhone/utils/flags/cy.svg +6 -0
  291. package/dist/lib/components/InputPhone/utils/flags/cz.svg +5 -0
  292. package/dist/lib/components/InputPhone/utils/flags/de.svg +5 -0
  293. package/dist/lib/components/InputPhone/utils/flags/dg.svg +129 -0
  294. package/dist/lib/components/InputPhone/utils/flags/dj.svg +13 -0
  295. package/dist/lib/components/InputPhone/utils/flags/dk.svg +5 -0
  296. package/dist/lib/components/InputPhone/utils/flags/dm.svg +152 -0
  297. package/dist/lib/components/InputPhone/utils/flags/do.svg +6745 -0
  298. package/dist/lib/components/InputPhone/utils/flags/dz.svg +5 -0
  299. package/dist/lib/components/InputPhone/utils/flags/ea.svg +544 -0
  300. package/dist/lib/components/InputPhone/utils/flags/ec.svg +138 -0
  301. package/dist/lib/components/InputPhone/utils/flags/ee.svg +7 -0
  302. package/dist/lib/components/InputPhone/utils/flags/eg.svg +38 -0
  303. package/dist/lib/components/InputPhone/utils/flags/eh.svg +16 -0
  304. package/dist/lib/components/InputPhone/utils/flags/er.svg +8 -0
  305. package/dist/lib/components/InputPhone/utils/flags/es-ct.svg +4 -0
  306. package/dist/lib/components/InputPhone/utils/flags/es-ga.svg +187 -0
  307. package/dist/lib/components/InputPhone/utils/flags/es.svg +544 -0
  308. package/dist/lib/components/InputPhone/utils/flags/et.svg +14 -0
  309. package/dist/lib/components/InputPhone/utils/flags/eu.svg +28 -0
  310. package/dist/lib/components/InputPhone/utils/flags/fi.svg +5 -0
  311. package/dist/lib/components/InputPhone/utils/flags/fj.svg +120 -0
  312. package/dist/lib/components/InputPhone/utils/flags/fk.svg +90 -0
  313. package/dist/lib/components/InputPhone/utils/flags/fm.svg +11 -0
  314. package/dist/lib/components/InputPhone/utils/flags/fo.svg +12 -0
  315. package/dist/lib/components/InputPhone/utils/flags/fr.svg +7 -0
  316. package/dist/lib/components/InputPhone/utils/flags/ga.svg +7 -0
  317. package/dist/lib/components/InputPhone/utils/flags/gb-eng.svg +5 -0
  318. package/dist/lib/components/InputPhone/utils/flags/gb-nir.svg +132 -0
  319. package/dist/lib/components/InputPhone/utils/flags/gb-sct.svg +4 -0
  320. package/dist/lib/components/InputPhone/utils/flags/gb-wls.svg +9 -0
  321. package/dist/lib/components/InputPhone/utils/flags/gb.svg +7 -0
  322. package/dist/lib/components/InputPhone/utils/flags/gd.svg +27 -0
  323. package/dist/lib/components/InputPhone/utils/flags/ge.svg +6 -0
  324. package/dist/lib/components/InputPhone/utils/flags/gf.svg +7 -0
  325. package/dist/lib/components/InputPhone/utils/flags/gg.svg +9 -0
  326. package/dist/lib/components/InputPhone/utils/flags/gh.svg +6 -0
  327. package/dist/lib/components/InputPhone/utils/flags/gi.svg +32 -0
  328. package/dist/lib/components/InputPhone/utils/flags/gl.svg +4 -0
  329. package/dist/lib/components/InputPhone/utils/flags/gm.svg +14 -0
  330. package/dist/lib/components/InputPhone/utils/flags/gn.svg +7 -0
  331. package/dist/lib/components/InputPhone/utils/flags/gp.svg +7 -0
  332. package/dist/lib/components/InputPhone/utils/flags/gq.svg +23 -0
  333. package/dist/lib/components/InputPhone/utils/flags/gr.svg +16 -0
  334. package/dist/lib/components/InputPhone/utils/flags/gs.svg +133 -0
  335. package/dist/lib/components/InputPhone/utils/flags/gt.svg +220 -0
  336. package/dist/lib/components/InputPhone/utils/flags/gu.svg +23 -0
  337. package/dist/lib/components/InputPhone/utils/flags/gw.svg +13 -0
  338. package/dist/lib/components/InputPhone/utils/flags/gy.svg +9 -0
  339. package/dist/lib/components/InputPhone/utils/flags/hk.svg +30 -0
  340. package/dist/lib/components/InputPhone/utils/flags/hm.svg +8 -0
  341. package/dist/lib/components/InputPhone/utils/flags/hn.svg +18 -0
  342. package/dist/lib/components/InputPhone/utils/flags/hr.svg +58 -0
  343. package/dist/lib/components/InputPhone/utils/flags/ht.svg +116 -0
  344. package/dist/lib/components/InputPhone/utils/flags/hu.svg +7 -0
  345. package/dist/lib/components/InputPhone/utils/flags/ic.svg +7 -0
  346. package/dist/lib/components/InputPhone/utils/flags/id.svg +4 -0
  347. package/dist/lib/components/InputPhone/utils/flags/ie.svg +7 -0
  348. package/dist/lib/components/InputPhone/utils/flags/il.svg +14 -0
  349. package/dist/lib/components/InputPhone/utils/flags/im.svg +36 -0
  350. package/dist/lib/components/InputPhone/utils/flags/in.svg +25 -0
  351. package/dist/lib/components/InputPhone/utils/flags/io.svg +129 -0
  352. package/dist/lib/components/InputPhone/utils/flags/iq.svg +10 -0
  353. package/dist/lib/components/InputPhone/utils/flags/ir.svg +219 -0
  354. package/dist/lib/components/InputPhone/utils/flags/is.svg +12 -0
  355. package/dist/lib/components/InputPhone/utils/flags/it.svg +7 -0
  356. package/dist/lib/components/InputPhone/utils/flags/je.svg +45 -0
  357. package/dist/lib/components/InputPhone/utils/flags/jm.svg +8 -0
  358. package/dist/lib/components/InputPhone/utils/flags/jo.svg +16 -0
  359. package/dist/lib/components/InputPhone/utils/flags/jp.svg +11 -0
  360. package/dist/lib/components/InputPhone/utils/flags/ke.svg +23 -0
  361. package/dist/lib/components/InputPhone/utils/flags/kg.svg +15 -0
  362. package/dist/lib/components/InputPhone/utils/flags/kh.svg +61 -0
  363. package/dist/lib/components/InputPhone/utils/flags/ki.svg +36 -0
  364. package/dist/lib/components/InputPhone/utils/flags/km.svg +16 -0
  365. package/dist/lib/components/InputPhone/utils/flags/kn.svg +14 -0
  366. package/dist/lib/components/InputPhone/utils/flags/kp.svg +15 -0
  367. package/dist/lib/components/InputPhone/utils/flags/kr.svg +24 -0
  368. package/dist/lib/components/InputPhone/utils/flags/kw.svg +13 -0
  369. package/dist/lib/components/InputPhone/utils/flags/ky.svg +109 -0
  370. package/dist/lib/components/InputPhone/utils/flags/kz.svg +23 -0
  371. package/dist/lib/components/InputPhone/utils/flags/la.svg +12 -0
  372. package/dist/lib/components/InputPhone/utils/flags/lb.svg +15 -0
  373. package/dist/lib/components/InputPhone/utils/flags/lc.svg +8 -0
  374. package/dist/lib/components/InputPhone/utils/flags/li.svg +43 -0
  375. package/dist/lib/components/InputPhone/utils/flags/lk.svg +22 -0
  376. package/dist/lib/components/InputPhone/utils/flags/lr.svg +14 -0
  377. package/dist/lib/components/InputPhone/utils/flags/ls.svg +8 -0
  378. package/dist/lib/components/InputPhone/utils/flags/lt.svg +7 -0
  379. package/dist/lib/components/InputPhone/utils/flags/lu.svg +5 -0
  380. package/dist/lib/components/InputPhone/utils/flags/lv.svg +6 -0
  381. package/dist/lib/components/InputPhone/utils/flags/ly.svg +13 -0
  382. package/dist/lib/components/InputPhone/utils/flags/ma.svg +4 -0
  383. package/dist/lib/components/InputPhone/utils/flags/mc.svg +6 -0
  384. package/dist/lib/components/InputPhone/utils/flags/md.svg +70 -0
  385. package/dist/lib/components/InputPhone/utils/flags/me.svg +116 -0
  386. package/dist/lib/components/InputPhone/utils/flags/mf.svg +7 -0
  387. package/dist/lib/components/InputPhone/utils/flags/mg.svg +7 -0
  388. package/dist/lib/components/InputPhone/utils/flags/mh.svg +7 -0
  389. package/dist/lib/components/InputPhone/utils/flags/mk.svg +5 -0
  390. package/dist/lib/components/InputPhone/utils/flags/ml.svg +7 -0
  391. package/dist/lib/components/InputPhone/utils/flags/mm.svg +12 -0
  392. package/dist/lib/components/InputPhone/utils/flags/mn.svg +14 -0
  393. package/dist/lib/components/InputPhone/utils/flags/mo.svg +9 -0
  394. package/dist/lib/components/InputPhone/utils/flags/mp.svg +86 -0
  395. package/dist/lib/components/InputPhone/utils/flags/mq.svg +7 -0
  396. package/dist/lib/components/InputPhone/utils/flags/mr.svg +6 -0
  397. package/dist/lib/components/InputPhone/utils/flags/ms.svg +33 -0
  398. package/dist/lib/components/InputPhone/utils/flags/mt.svg +49 -0
  399. package/dist/lib/components/InputPhone/utils/flags/mu.svg +8 -0
  400. package/dist/lib/components/InputPhone/utils/flags/mv.svg +6 -0
  401. package/dist/lib/components/InputPhone/utils/flags/mw.svg +10 -0
  402. package/dist/lib/components/InputPhone/utils/flags/mx.svg +382 -0
  403. package/dist/lib/components/InputPhone/utils/flags/my.svg +7 -0
  404. package/dist/lib/components/InputPhone/utils/flags/mz.svg +21 -0
  405. package/dist/lib/components/InputPhone/utils/flags/na.svg +16 -0
  406. package/dist/lib/components/InputPhone/utils/flags/nc.svg +13 -0
  407. package/dist/lib/components/InputPhone/utils/flags/ne.svg +6 -0
  408. package/dist/lib/components/InputPhone/utils/flags/nf.svg +9 -0
  409. package/dist/lib/components/InputPhone/utils/flags/ng.svg +6 -0
  410. package/dist/lib/components/InputPhone/utils/flags/ni.svg +129 -0
  411. package/dist/lib/components/InputPhone/utils/flags/nl.svg +5 -0
  412. package/dist/lib/components/InputPhone/utils/flags/no.svg +7 -0
  413. package/dist/lib/components/InputPhone/utils/flags/np.svg +14 -0
  414. package/dist/lib/components/InputPhone/utils/flags/nr.svg +12 -0
  415. package/dist/lib/components/InputPhone/utils/flags/nu.svg +10 -0
  416. package/dist/lib/components/InputPhone/utils/flags/nz.svg +36 -0
  417. package/dist/lib/components/InputPhone/utils/flags/om.svg +115 -0
  418. package/dist/lib/components/InputPhone/utils/flags/pa.svg +14 -0
  419. package/dist/lib/components/InputPhone/utils/flags/pe.svg +244 -0
  420. package/dist/lib/components/InputPhone/utils/flags/pf.svg +19 -0
  421. package/dist/lib/components/InputPhone/utils/flags/pg.svg +9 -0
  422. package/dist/lib/components/InputPhone/utils/flags/ph.svg +6 -0
  423. package/dist/lib/components/InputPhone/utils/flags/pk.svg +15 -0
  424. package/dist/lib/components/InputPhone/utils/flags/pl.svg +6 -0
  425. package/dist/lib/components/InputPhone/utils/flags/pm.svg +7 -0
  426. package/dist/lib/components/InputPhone/utils/flags/pn.svg +53 -0
  427. package/dist/lib/components/InputPhone/utils/flags/pr.svg +13 -0
  428. package/dist/lib/components/InputPhone/utils/flags/ps.svg +15 -0
  429. package/dist/lib/components/InputPhone/utils/flags/pt.svg +57 -0
  430. package/dist/lib/components/InputPhone/utils/flags/pw.svg +11 -0
  431. package/dist/lib/components/InputPhone/utils/flags/py.svg +157 -0
  432. package/dist/lib/components/InputPhone/utils/flags/qa.svg +4 -0
  433. package/dist/lib/components/InputPhone/utils/flags/re.svg +7 -0
  434. package/dist/lib/components/InputPhone/utils/flags/ro.svg +7 -0
  435. package/dist/lib/components/InputPhone/utils/flags/rs.svg +292 -0
  436. package/dist/lib/components/InputPhone/utils/flags/ru.svg +7 -0
  437. package/dist/lib/components/InputPhone/utils/flags/rw.svg +13 -0
  438. package/dist/lib/components/InputPhone/utils/flags/sa.svg +26 -0
  439. package/dist/lib/components/InputPhone/utils/flags/sb.svg +13 -0
  440. package/dist/lib/components/InputPhone/utils/flags/sc.svg +7 -0
  441. package/dist/lib/components/InputPhone/utils/flags/sd.svg +13 -0
  442. package/dist/lib/components/InputPhone/utils/flags/se.svg +4 -0
  443. package/dist/lib/components/InputPhone/utils/flags/sg.svg +13 -0
  444. package/dist/lib/components/InputPhone/utils/flags/sh.svg +76 -0
  445. package/dist/lib/components/InputPhone/utils/flags/si.svg +18 -0
  446. package/dist/lib/components/InputPhone/utils/flags/sj.svg +7 -0
  447. package/dist/lib/components/InputPhone/utils/flags/sk.svg +9 -0
  448. package/dist/lib/components/InputPhone/utils/flags/sl.svg +7 -0
  449. package/dist/lib/components/InputPhone/utils/flags/sm.svg +75 -0
  450. package/dist/lib/components/InputPhone/utils/flags/sn.svg +8 -0
  451. package/dist/lib/components/InputPhone/utils/flags/so.svg +11 -0
  452. package/dist/lib/components/InputPhone/utils/flags/sr.svg +6 -0
  453. package/dist/lib/components/InputPhone/utils/flags/ss.svg +8 -0
  454. package/dist/lib/components/InputPhone/utils/flags/st.svg +16 -0
  455. package/dist/lib/components/InputPhone/utils/flags/sv.svg +594 -0
  456. package/dist/lib/components/InputPhone/utils/flags/sx.svg +56 -0
  457. package/dist/lib/components/InputPhone/utils/flags/sy.svg +6 -0
  458. package/dist/lib/components/InputPhone/utils/flags/sz.svg +34 -0
  459. package/dist/lib/components/InputPhone/utils/flags/ta.svg +76 -0
  460. package/dist/lib/components/InputPhone/utils/flags/tc.svg +50 -0
  461. package/dist/lib/components/InputPhone/utils/flags/td.svg +7 -0
  462. package/dist/lib/components/InputPhone/utils/flags/tf.svg +15 -0
  463. package/dist/lib/components/InputPhone/utils/flags/tg.svg +14 -0
  464. package/dist/lib/components/InputPhone/utils/flags/th.svg +7 -0
  465. package/dist/lib/components/InputPhone/utils/flags/tj.svg +22 -0
  466. package/dist/lib/components/InputPhone/utils/flags/tk.svg +5 -0
  467. package/dist/lib/components/InputPhone/utils/flags/tl.svg +13 -0
  468. package/dist/lib/components/InputPhone/utils/flags/tm.svg +205 -0
  469. package/dist/lib/components/InputPhone/utils/flags/tn.svg +13 -0
  470. package/dist/lib/components/InputPhone/utils/flags/to.svg +10 -0
  471. package/dist/lib/components/InputPhone/utils/flags/tr.svg +8 -0
  472. package/dist/lib/components/InputPhone/utils/flags/tt.svg +5 -0
  473. package/dist/lib/components/InputPhone/utils/flags/tv.svg +9 -0
  474. package/dist/lib/components/InputPhone/utils/flags/tw.svg +34 -0
  475. package/dist/lib/components/InputPhone/utils/flags/tz.svg +13 -0
  476. package/dist/lib/components/InputPhone/utils/flags/ua.svg +6 -0
  477. package/dist/lib/components/InputPhone/utils/flags/ug.svg +30 -0
  478. package/dist/lib/components/InputPhone/utils/flags/um.svg +15 -0
  479. package/dist/lib/components/InputPhone/utils/flags/un.svg +16 -0
  480. package/dist/lib/components/InputPhone/utils/flags/us.svg +10 -0
  481. package/dist/lib/components/InputPhone/utils/flags/uy.svg +28 -0
  482. package/dist/lib/components/InputPhone/utils/flags/uz.svg +30 -0
  483. package/dist/lib/components/InputPhone/utils/flags/va.svg +479 -0
  484. package/dist/lib/components/InputPhone/utils/flags/vc.svg +8 -0
  485. package/dist/lib/components/InputPhone/utils/flags/ve.svg +26 -0
  486. package/dist/lib/components/InputPhone/utils/flags/vg.svg +63 -0
  487. package/dist/lib/components/InputPhone/utils/flags/vi.svg +28 -0
  488. package/dist/lib/components/InputPhone/utils/flags/vn.svg +11 -0
  489. package/dist/lib/components/InputPhone/utils/flags/vu.svg +21 -0
  490. package/dist/lib/components/InputPhone/utils/flags/wf.svg +7 -0
  491. package/dist/lib/components/InputPhone/utils/flags/ws.svg +7 -0
  492. package/dist/lib/components/InputPhone/utils/flags/xk.svg +8 -0
  493. package/dist/lib/components/InputPhone/utils/flags/xx.svg +4 -0
  494. package/dist/lib/components/InputPhone/utils/flags/ye.svg +7 -0
  495. package/dist/lib/components/InputPhone/utils/flags/yt.svg +7 -0
  496. package/dist/lib/components/InputPhone/utils/flags/za.svg +17 -0
  497. package/dist/lib/components/InputPhone/utils/flags/zm.svg +27 -0
  498. package/dist/lib/components/InputPhone/utils/flags/zw.svg +21 -0
  499. package/dist/lib/components/InputPin/InputPin.tsx +138 -0
  500. package/dist/lib/components/InputPin/index.ts +3 -0
  501. package/dist/lib/components/InputPin/styles.tsx +70 -0
  502. package/dist/lib/components/InputPin/subtypes.ts +11 -0
  503. package/dist/lib/components/InputPin/types.ts +31 -0
  504. package/dist/lib/components/InputSlider/InputSlider.tsx +184 -0
  505. package/dist/lib/components/InputSlider/Slider.tsx +52 -0
  506. package/dist/lib/components/InputSlider/index.ts +3 -0
  507. package/dist/lib/components/InputSlider/styles.tsx +292 -0
  508. package/dist/lib/components/InputSlider/types.ts +14 -0
  509. package/dist/lib/components/Key/Key.tsx +45 -0
  510. package/dist/lib/components/Key/index.ts +3 -0
  511. package/dist/lib/components/Key/styles.tsx +29 -0
  512. package/dist/lib/components/Key/types.ts +11 -0
  513. package/dist/lib/components/LibIcon/LibIcon.tsx +35 -0
  514. package/dist/lib/components/LibIcon/index.ts +3 -0
  515. package/dist/lib/components/LibIcon/types.ts +9 -0
  516. package/dist/lib/components/Link/Link.tsx +68 -0
  517. package/dist/lib/components/Link/index.ts +3 -0
  518. package/dist/lib/components/Link/types.ts +9 -0
  519. package/dist/lib/components/Linkify/Linkify.tsx +51 -0
  520. package/dist/lib/components/Linkify/index.ts +3 -0
  521. package/dist/lib/components/Linkify/types.ts +8 -0
  522. package/dist/lib/components/ListGroup/ListGroup.tsx +113 -0
  523. package/dist/lib/components/ListGroup/ListGroupItem.tsx +164 -0
  524. package/dist/lib/components/ListGroup/ListGroupTitle.tsx +56 -0
  525. package/dist/lib/components/ListGroup/index.ts +5 -0
  526. package/dist/lib/components/ListGroup/styles.tsx +179 -0
  527. package/dist/lib/components/ListGroup/types.ts +114 -0
  528. package/dist/lib/components/Loader/Loader.tsx +35 -0
  529. package/dist/lib/components/Loader/index.ts +3 -0
  530. package/dist/lib/components/Loader/styles.tsx +140 -0
  531. package/dist/lib/components/Loader/templates/LoaderFour.tsx +24 -0
  532. package/dist/lib/components/Loader/templates/LoaderOne.tsx +24 -0
  533. package/dist/lib/components/Loader/templates/LoaderThree.tsx +29 -0
  534. package/dist/lib/components/Loader/templates/LoaderTwo.tsx +24 -0
  535. package/dist/lib/components/Loader/types.ts +25 -0
  536. package/dist/lib/components/Main/Main.tsx +45 -0
  537. package/dist/lib/components/Main/index.ts +3 -0
  538. package/dist/lib/components/Main/styles.tsx +61 -0
  539. package/dist/lib/components/Main/types.ts +19 -0
  540. package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +35 -0
  541. package/dist/lib/components/MarkdownContainer/index.ts +3 -0
  542. package/dist/lib/components/MarkdownContainer/styles.tsx +17 -0
  543. package/dist/lib/components/MarkdownContainer/types.ts +9 -0
  544. package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +196 -0
  545. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +77 -0
  546. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +75 -0
  547. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +54 -0
  548. package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +98 -0
  549. package/dist/lib/components/MarkdownEditor/index.ts +3 -0
  550. package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +182 -0
  551. package/dist/lib/components/MarkdownEditor/styles.tsx +187 -0
  552. package/dist/lib/components/MarkdownEditor/subtypes.ts +55 -0
  553. package/dist/lib/components/MarkdownEditor/types.ts +59 -0
  554. package/dist/lib/components/Masonry/Masonry.tsx +67 -0
  555. package/dist/lib/components/Masonry/index.ts +3 -0
  556. package/dist/lib/components/Masonry/styles.tsx +24 -0
  557. package/dist/lib/components/Masonry/types.ts +10 -0
  558. package/dist/lib/components/Masonry/utils.ts +30 -0
  559. package/dist/lib/components/Messaging/Message.tsx +106 -0
  560. package/dist/lib/components/Messaging/MessageForm.tsx +144 -0
  561. package/dist/lib/components/Messaging/MessagesContainer.tsx +29 -0
  562. package/dist/lib/components/Messaging/MessagesList.tsx +136 -0
  563. package/dist/lib/components/Messaging/Messaging.tsx +123 -0
  564. package/dist/lib/components/Messaging/index.ts +7 -0
  565. package/dist/lib/components/Messaging/styles.tsx +177 -0
  566. package/dist/lib/components/Messaging/types.ts +131 -0
  567. package/dist/lib/components/Modal/Modal.tsx +127 -0
  568. package/dist/lib/components/Modal/index.ts +3 -0
  569. package/dist/lib/components/Modal/styles.tsx +62 -0
  570. package/dist/lib/components/Modal/types.ts +38 -0
  571. package/dist/lib/components/PageLayout/PageLayout.tsx +80 -0
  572. package/dist/lib/components/PageLayout/index.ts +3 -0
  573. package/dist/lib/components/PageLayout/types.ts +47 -0
  574. package/dist/lib/components/PageLoading/PageLoading.tsx +64 -0
  575. package/dist/lib/components/PageLoading/index.ts +3 -0
  576. package/dist/lib/components/PageLoading/styles.tsx +24 -0
  577. package/dist/lib/components/PageLoading/types.ts +15 -0
  578. package/dist/lib/components/Pagination/Pagination.tsx +265 -0
  579. package/dist/lib/components/Pagination/PaginationButton.tsx +51 -0
  580. package/dist/lib/components/Pagination/index.ts +4 -0
  581. package/dist/lib/components/Pagination/styles.tsx +72 -0
  582. package/dist/lib/components/Pagination/types.ts +61 -0
  583. package/dist/lib/components/Paginator/Paginator.tsx +162 -0
  584. package/dist/lib/components/Paginator/index.ts +3 -0
  585. package/dist/lib/components/Paginator/styles.tsx +36 -0
  586. package/dist/lib/components/Paginator/types.ts +16 -0
  587. package/dist/lib/components/ProgressBar/ProgressBar.tsx +68 -0
  588. package/dist/lib/components/ProgressBar/index.ts +3 -0
  589. package/dist/lib/components/ProgressBar/styles.tsx +55 -0
  590. package/dist/lib/components/ProgressBar/types.ts +13 -0
  591. package/dist/lib/components/ProgressCircle/Circle.tsx +30 -0
  592. package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +93 -0
  593. package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +48 -0
  594. package/dist/lib/components/ProgressCircle/Value.tsx +31 -0
  595. package/dist/lib/components/ProgressCircle/clean-percentage.ts +7 -0
  596. package/dist/lib/components/ProgressCircle/index.ts +3 -0
  597. package/dist/lib/components/ProgressCircle/styles.tsx +55 -0
  598. package/dist/lib/components/ProgressCircle/subtypes.ts +11 -0
  599. package/dist/lib/components/ProgressCircle/types.ts +31 -0
  600. package/dist/lib/components/Rating/Rating.tsx +177 -0
  601. package/dist/lib/components/Rating/index.ts +3 -0
  602. package/dist/lib/components/Rating/styles.tsx +52 -0
  603. package/dist/lib/components/Rating/types.ts +24 -0
  604. package/dist/lib/components/ResetScroll/ResetScroll.tsx +22 -0
  605. package/dist/lib/components/ResetScroll/index.ts +3 -0
  606. package/dist/lib/components/Section/Section.tsx +30 -0
  607. package/dist/lib/components/Section/index.ts +3 -0
  608. package/dist/lib/components/Section/styles.tsx +24 -0
  609. package/dist/lib/components/Section/types.ts +7 -0
  610. package/dist/lib/components/Select/Select.tsx +284 -0
  611. package/dist/lib/components/Select/SelectButton.tsx +58 -0
  612. package/dist/lib/components/Select/index.ts +3 -0
  613. package/dist/lib/components/Select/styles.tsx +22 -0
  614. package/dist/lib/components/Select/subtypes.ts +32 -0
  615. package/dist/lib/components/Select/types.ts +33 -0
  616. package/dist/lib/components/Skeleton/Skeleton.tsx +60 -0
  617. package/dist/lib/components/Skeleton/SkeletonCard.tsx +78 -0
  618. package/dist/lib/components/Skeleton/SkeletonShine.tsx +26 -0
  619. package/dist/lib/components/Skeleton/index.ts +5 -0
  620. package/dist/lib/components/Skeleton/styles.tsx +102 -0
  621. package/dist/lib/components/Skeleton/subtypes.ts +16 -0
  622. package/dist/lib/components/Skeleton/types.ts +39 -0
  623. package/dist/lib/components/Slideshow/Slideshow.tsx +218 -0
  624. package/dist/lib/components/Slideshow/SlideshowButton.tsx +99 -0
  625. package/dist/lib/components/Slideshow/SlideshowPagination.tsx +84 -0
  626. package/dist/lib/components/Slideshow/index.ts +3 -0
  627. package/dist/lib/components/Slideshow/styles.tsx +361 -0
  628. package/dist/lib/components/Slideshow/subtypes.ts +22 -0
  629. package/dist/lib/components/Slideshow/types.ts +99 -0
  630. package/dist/lib/components/SrOnly/SrOnly.tsx +23 -0
  631. package/dist/lib/components/SrOnly/index.ts +3 -0
  632. package/dist/lib/components/SrOnly/styles.tsx +21 -0
  633. package/dist/lib/components/SrOnly/types.ts +5 -0
  634. package/dist/lib/components/Stepper/Step.tsx +118 -0
  635. package/dist/lib/components/Stepper/Stepper.tsx +96 -0
  636. package/dist/lib/components/Stepper/index.ts +4 -0
  637. package/dist/lib/components/Stepper/styles.tsx +115 -0
  638. package/dist/lib/components/Stepper/types.ts +48 -0
  639. package/dist/lib/components/Sticky/Sticky.tsx +30 -0
  640. package/dist/lib/components/Sticky/index.ts +3 -0
  641. package/dist/lib/components/Sticky/styles.tsx +15 -0
  642. package/dist/lib/components/Sticky/types.ts +7 -0
  643. package/dist/lib/components/Table/TBody.tsx +17 -0
  644. package/dist/lib/components/Table/THead.tsx +17 -0
  645. package/dist/lib/components/Table/Table.tsx +124 -0
  646. package/dist/lib/components/Table/Td.tsx +26 -0
  647. package/dist/lib/components/Table/Tr.tsx +17 -0
  648. package/dist/lib/components/Table/index.ts +7 -0
  649. package/dist/lib/components/Table/styles.tsx +114 -0
  650. package/dist/lib/components/Table/types.ts +52 -0
  651. package/dist/lib/components/Tabs/TabButton.tsx +50 -0
  652. package/dist/lib/components/Tabs/TabItem.tsx +34 -0
  653. package/dist/lib/components/Tabs/Tabs.tsx +137 -0
  654. package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +46 -0
  655. package/dist/lib/components/Tabs/TabsContainer.tsx +23 -0
  656. package/dist/lib/components/Tabs/index.ts +7 -0
  657. package/dist/lib/components/Tabs/styles.tsx +178 -0
  658. package/dist/lib/components/Tabs/types.ts +60 -0
  659. package/dist/lib/components/Tag/Tag.tsx +97 -0
  660. package/dist/lib/components/Tag/index.ts +3 -0
  661. package/dist/lib/components/Tag/styles.tsx +41 -0
  662. package/dist/lib/components/Tag/types.ts +43 -0
  663. package/dist/lib/components/Text/Text.tsx +69 -0
  664. package/dist/lib/components/Text/index.ts +3 -0
  665. package/dist/lib/components/Text/styles.tsx +230 -0
  666. package/dist/lib/components/Text/subtypes.ts +15 -0
  667. package/dist/lib/components/Text/templates/Blockquote.tsx +34 -0
  668. package/dist/lib/components/Text/templates/Dl.tsx +34 -0
  669. package/dist/lib/components/Text/templates/Em.tsx +34 -0
  670. package/dist/lib/components/Text/templates/H1.tsx +36 -0
  671. package/dist/lib/components/Text/templates/H2.tsx +36 -0
  672. package/dist/lib/components/Text/templates/H3.tsx +36 -0
  673. package/dist/lib/components/Text/templates/H4.tsx +36 -0
  674. package/dist/lib/components/Text/templates/H5.tsx +36 -0
  675. package/dist/lib/components/Text/templates/H6.tsx +34 -0
  676. package/dist/lib/components/Text/templates/Ol.tsx +34 -0
  677. package/dist/lib/components/Text/templates/P.tsx +34 -0
  678. package/dist/lib/components/Text/templates/Small.tsx +34 -0
  679. package/dist/lib/components/Text/templates/Strong.tsx +34 -0
  680. package/dist/lib/components/Text/templates/Ul.tsx +34 -0
  681. package/dist/lib/components/Text/types.ts +28 -0
  682. package/dist/lib/components/TextIcon/TextIcon.tsx +104 -0
  683. package/dist/lib/components/TextIcon/index.ts +3 -0
  684. package/dist/lib/components/TextIcon/styles.tsx +38 -0
  685. package/dist/lib/components/TextIcon/types.ts +21 -0
  686. package/dist/lib/components/TextIcon/utils.ts +57 -0
  687. package/dist/lib/components/Timepicker/Timepicker.tsx +295 -0
  688. package/dist/lib/components/Timepicker/index.ts +3 -0
  689. package/dist/lib/components/Timepicker/styles.tsx +34 -0
  690. package/dist/lib/components/Timepicker/types.ts +69 -0
  691. package/dist/lib/components/Toast/Toast.tsx +210 -0
  692. package/dist/lib/components/Toast/Toaster.tsx +168 -0
  693. package/dist/lib/components/Toast/index.ts +3 -0
  694. package/dist/lib/components/Toast/styles.tsx +249 -0
  695. package/dist/lib/components/Toast/types.ts +32 -0
  696. package/dist/lib/components/Tooltip/Tooltip.tsx +120 -0
  697. package/dist/lib/components/Tooltip/index.ts +3 -0
  698. package/dist/lib/components/Tooltip/styles.tsx +151 -0
  699. package/dist/lib/components/Tooltip/types.ts +22 -0
  700. package/dist/lib/components/Truncate/Truncate.tsx +113 -0
  701. package/dist/lib/components/Truncate/index.ts +3 -0
  702. package/dist/lib/components/Truncate/styles.tsx +37 -0
  703. package/dist/lib/components/Truncate/types.ts +7 -0
  704. package/dist/lib/components/Video/Video.tsx +66 -0
  705. package/dist/lib/components/Video/index.ts +3 -0
  706. package/dist/lib/components/Video/styles.tsx +24 -0
  707. package/dist/lib/components/Video/types.ts +22 -0
  708. package/dist/lib/components/Wrapper/Wrapper.tsx +43 -0
  709. package/dist/lib/components/Wrapper/index.ts +3 -0
  710. package/dist/lib/components/Wrapper/styles.tsx +29 -0
  711. package/dist/lib/components/Wrapper/types.ts +9 -0
  712. package/dist/lib/components/Youtube/Youtube.tsx +44 -0
  713. package/dist/lib/components/Youtube/index.ts +3 -0
  714. package/dist/lib/components/Youtube/styles.tsx +20 -0
  715. package/dist/lib/components/Youtube/types.ts +11 -0
  716. package/dist/lib/context/Theme.context.tsx +106 -0
  717. package/dist/lib/context/Toaster/Toaster.context.tsx +131 -0
  718. package/dist/lib/context/Toaster/index.ts +5 -0
  719. package/dist/lib/context/Toaster/toast.reducer.ts +36 -0
  720. package/dist/lib/hooks/index.ts +17 -0
  721. package/dist/lib/hooks/useClickOutside.tsx +37 -0
  722. package/dist/lib/hooks/useCopyToClipboard.tsx +33 -0
  723. package/dist/lib/hooks/useDebounce.tsx +21 -0
  724. package/dist/lib/hooks/useExportData.tsx +55 -0
  725. package/dist/lib/hooks/useFetch.tsx +25 -0
  726. package/dist/lib/hooks/useForm.tsx +28 -0
  727. package/dist/lib/hooks/useIsOverflow.ts +44 -0
  728. package/dist/lib/hooks/useKeyPress.tsx +95 -0
  729. package/dist/lib/hooks/useMaxWidth.tsx +28 -0
  730. package/dist/lib/hooks/useMergeRefs.ts +33 -0
  731. package/dist/lib/hooks/useMinWidth.tsx +28 -0
  732. package/dist/lib/hooks/usePaginatedData.tsx +37 -0
  733. package/dist/lib/hooks/usePagination.tsx +112 -0
  734. package/dist/lib/hooks/useTouchScreen.tsx +21 -0
  735. package/dist/lib/hooks/useTranslation.tsx +30 -0
  736. package/dist/lib/icons/ArrowUp.tsx +32 -0
  737. package/dist/lib/icons/Bold.tsx +32 -0
  738. package/dist/lib/icons/Calendar.tsx +40 -0
  739. package/dist/lib/icons/CaretDown.tsx +32 -0
  740. package/dist/lib/icons/Check.tsx +32 -0
  741. package/dist/lib/icons/CheckCircle.tsx +38 -0
  742. package/dist/lib/icons/ChevronDown.tsx +32 -0
  743. package/dist/lib/icons/ChevronLeft.tsx +32 -0
  744. package/dist/lib/icons/ChevronRight.tsx +32 -0
  745. package/dist/lib/icons/ChevronUp.tsx +32 -0
  746. package/dist/lib/icons/Clipboard.tsx +32 -0
  747. package/dist/lib/icons/Clock.tsx +35 -0
  748. package/dist/lib/icons/Close.tsx +32 -0
  749. package/dist/lib/icons/CloseCircle.tsx +38 -0
  750. package/dist/lib/icons/Code.tsx +32 -0
  751. package/dist/lib/icons/CodeBlock.tsx +42 -0
  752. package/dist/lib/icons/Comment.tsx +42 -0
  753. package/dist/lib/icons/Drag.tsx +32 -0
  754. package/dist/lib/icons/Edit.tsx +38 -0
  755. package/dist/lib/icons/EditorCode.tsx +36 -0
  756. package/dist/lib/icons/EditorLive.tsx +36 -0
  757. package/dist/lib/icons/EditorPreview.tsx +36 -0
  758. package/dist/lib/icons/Hide.tsx +32 -0
  759. package/dist/lib/icons/Image.tsx +42 -0
  760. package/dist/lib/icons/Italic.tsx +32 -0
  761. package/dist/lib/icons/Link.tsx +36 -0
  762. package/dist/lib/icons/Minus.tsx +29 -0
  763. package/dist/lib/icons/OrderedList.tsx +32 -0
  764. package/dist/lib/icons/Plus.tsx +32 -0
  765. package/dist/lib/icons/Quote.tsx +32 -0
  766. package/dist/lib/icons/Search.tsx +38 -0
  767. package/dist/lib/icons/Send.tsx +32 -0
  768. package/dist/lib/icons/Separator.tsx +32 -0
  769. package/dist/lib/icons/Show.tsx +38 -0
  770. package/dist/lib/icons/Star.tsx +32 -0
  771. package/dist/lib/icons/StarFull.tsx +32 -0
  772. package/dist/lib/icons/Strikethrough.tsx +32 -0
  773. package/dist/lib/icons/Underline.tsx +36 -0
  774. package/dist/lib/icons/UnorderedList.tsx +32 -0
  775. package/dist/lib/icons/index.ts +41 -0
  776. package/dist/lib/icons/styles.tsx +19 -0
  777. package/dist/lib/icons/types.ts +11 -0
  778. package/dist/lib/index.css +1422 -0
  779. package/dist/lib/index.ts +159 -0
  780. package/dist/lib/lib-utils/append-styles.ts +9 -0
  781. package/dist/lib/lib-utils/colors-maps.ts +176 -0
  782. package/dist/lib/lib-utils/get-highlighted-text.tsx +31 -0
  783. package/dist/lib/lib-utils/get-icon-size-from-font.ts +27 -0
  784. package/dist/lib/lib-utils/index.ts +11 -0
  785. package/dist/lib/lib-utils/round-icon-size.ts +7 -0
  786. package/dist/lib/lib-utils/transfom-search-keys.ts +15 -0
  787. package/dist/lib/modules-declare.d.ts +18 -0
  788. package/dist/lib/utils/StyleSheetManager.tsx +32 -0
  789. package/dist/lib/utils/index.ts +6 -0
  790. package/dist/lib/utils/lib-tokens.json +860 -0
  791. package/dist/lib/utils/linkify-text.tsx +28 -0
  792. package/dist/lib/utils/options-markdown.ts +133 -0
  793. package/dist/lib/utils/set-default-theme.ts +14 -0
  794. package/dist/styles-BzlWff0X.cjs +7 -0
  795. package/dist/styles-D2xrGFT_.js +15 -0
  796. package/package.json +67 -57
  797. package/dist/index-6bd365ef.js +0 -23566
  798. package/dist/index-bf31844d.cjs +0 -4144
  799. package/dist/lib/Mixins.d.ts +0 -256
  800. package/dist/lib/Variables.d.ts +0 -248
  801. package/dist/lib/components/Accordion/Accordion.d.ts +0 -23
  802. package/dist/lib/components/Accordion/AccordionButton.d.ts +0 -2
  803. package/dist/lib/components/Accordion/AccordionContent.d.ts +0 -2
  804. package/dist/lib/components/Accordion/AccordionItem.d.ts +0 -14
  805. package/dist/lib/components/Accordion/index.d.ts +0 -2
  806. package/dist/lib/components/Accordion/styles.d.ts +0 -6
  807. package/dist/lib/components/Accordion/subtypes.d.ts +0 -11
  808. package/dist/lib/components/Accordion/types.d.ts +0 -21
  809. package/dist/lib/components/Alert/Alert.d.ts +0 -18
  810. package/dist/lib/components/Alert/index.d.ts +0 -1
  811. package/dist/lib/components/Alert/styles.d.ts +0 -10
  812. package/dist/lib/components/Alert/types.d.ts +0 -20
  813. package/dist/lib/components/Aside/Aside.d.ts +0 -12
  814. package/dist/lib/components/Aside/index.d.ts +0 -1
  815. package/dist/lib/components/Aside/styles.d.ts +0 -6
  816. package/dist/lib/components/Aside/types.d.ts +0 -5
  817. package/dist/lib/components/Autocomplete/Autocomplete.d.ts +0 -2
  818. package/dist/lib/components/Autocomplete/index.d.ts +0 -1
  819. package/dist/lib/components/Autocomplete/styles.d.ts +0 -3
  820. package/dist/lib/components/Autocomplete/types.d.ts +0 -32
  821. package/dist/lib/components/Avatar/Avatar.d.ts +0 -22
  822. package/dist/lib/components/Avatar/AvatarFunction.d.ts +0 -5
  823. package/dist/lib/components/Avatar/index.d.ts +0 -1
  824. package/dist/lib/components/Avatar/styles.d.ts +0 -22
  825. package/dist/lib/components/Avatar/types.d.ts +0 -63
  826. package/dist/lib/components/BackToTop/BackToTop.d.ts +0 -11
  827. package/dist/lib/components/BackToTop/index.d.ts +0 -1
  828. package/dist/lib/components/BackToTop/styles.d.ts +0 -9
  829. package/dist/lib/components/BackToTop/types.d.ts +0 -5
  830. package/dist/lib/components/Badge/Badge.d.ts +0 -19
  831. package/dist/lib/components/Badge/index.d.ts +0 -1
  832. package/dist/lib/components/Badge/styles.d.ts +0 -10
  833. package/dist/lib/components/Badge/types.d.ts +0 -23
  834. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.d.ts +0 -2
  835. package/dist/lib/components/Breadcrumbs/Breadcrumbs.d.ts +0 -24
  836. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.d.ts +0 -2
  837. package/dist/lib/components/Breadcrumbs/index.d.ts +0 -1
  838. package/dist/lib/components/Breadcrumbs/styles.d.ts +0 -10
  839. package/dist/lib/components/Breadcrumbs/subtypes.d.ts +0 -6
  840. package/dist/lib/components/Breadcrumbs/types.d.ts +0 -19
  841. package/dist/lib/components/Burger/Burger.d.ts +0 -16
  842. package/dist/lib/components/Burger/index.d.ts +0 -1
  843. package/dist/lib/components/Burger/styles.d.ts +0 -9
  844. package/dist/lib/components/Burger/types.d.ts +0 -10
  845. package/dist/lib/components/Button/Button.d.ts +0 -27
  846. package/dist/lib/components/Button/index.d.ts +0 -1
  847. package/dist/lib/components/Button/styles.d.ts +0 -3
  848. package/dist/lib/components/Button/subtypes.d.ts +0 -7
  849. package/dist/lib/components/Button/types.d.ts +0 -48
  850. package/dist/lib/components/ButtonGroup/ButtonGroup.d.ts +0 -48
  851. package/dist/lib/components/ButtonGroup/ButtonGroupButton.d.ts +0 -2
  852. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.d.ts +0 -2
  853. package/dist/lib/components/ButtonGroup/index.d.ts +0 -1
  854. package/dist/lib/components/ButtonGroup/styles.d.ts +0 -19
  855. package/dist/lib/components/ButtonGroup/subtypes.d.ts +0 -16
  856. package/dist/lib/components/ButtonGroup/types.d.ts +0 -22
  857. package/dist/lib/components/ButtonIcon/ButtonFunction.d.ts +0 -2
  858. package/dist/lib/components/ButtonIcon/ButtonIcon.d.ts +0 -30
  859. package/dist/lib/components/ButtonIcon/index.d.ts +0 -1
  860. package/dist/lib/components/ButtonIcon/styles.d.ts +0 -3
  861. package/dist/lib/components/ButtonIcon/subtypes.d.ts +0 -7
  862. package/dist/lib/components/ButtonIcon/types.d.ts +0 -55
  863. package/dist/lib/components/Card/Card.d.ts +0 -36
  864. package/dist/lib/components/Card/index.d.ts +0 -1
  865. package/dist/lib/components/Card/styles.d.ts +0 -33
  866. package/dist/lib/components/Card/types.d.ts +0 -14
  867. package/dist/lib/components/CodeContainer/CodeContainer.d.ts +0 -19
  868. package/dist/lib/components/CodeContainer/index.d.ts +0 -1
  869. package/dist/lib/components/CodeContainer/styles.d.ts +0 -10
  870. package/dist/lib/components/CodeContainer/types.d.ts +0 -36
  871. package/dist/lib/components/ComponentsMixins/ComponentsMixins.d.ts +0 -4
  872. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.d.ts +0 -14
  873. package/dist/lib/components/ComponentsMixins/index.d.ts +0 -3
  874. package/dist/lib/components/ComponentsMixins/types.d.ts +0 -20
  875. package/dist/lib/components/Cover/Cover.d.ts +0 -15
  876. package/dist/lib/components/Cover/index.d.ts +0 -1
  877. package/dist/lib/components/Cover/styles.d.ts +0 -15
  878. package/dist/lib/components/Cover/types.d.ts +0 -9
  879. package/dist/lib/components/Datepicker/Calendar.d.ts +0 -6
  880. package/dist/lib/components/Datepicker/Datepicker.d.ts +0 -80
  881. package/dist/lib/components/Datepicker/data.d.ts +0 -25
  882. package/dist/lib/components/Datepicker/index.d.ts +0 -1
  883. package/dist/lib/components/Datepicker/styles.d.ts +0 -29
  884. package/dist/lib/components/Datepicker/types.d.ts +0 -52
  885. package/dist/lib/components/DragList/DragList.d.ts +0 -32
  886. package/dist/lib/components/DragList/DragListItem.d.ts +0 -29
  887. package/dist/lib/components/DragList/index.d.ts +0 -2
  888. package/dist/lib/components/DragList/styles.d.ts +0 -14
  889. package/dist/lib/components/DragList/types.d.ts +0 -42
  890. package/dist/lib/components/Drawer/Drawer.d.ts +0 -23
  891. package/dist/lib/components/Drawer/index.d.ts +0 -1
  892. package/dist/lib/components/Drawer/styles.d.ts +0 -17
  893. package/dist/lib/components/Drawer/types.d.ts +0 -16
  894. package/dist/lib/components/Dropdown/Dropdown.d.ts +0 -18
  895. package/dist/lib/components/Dropdown/DropdownContainer.d.ts +0 -22
  896. package/dist/lib/components/Dropdown/DropdownItem.d.ts +0 -20
  897. package/dist/lib/components/Dropdown/index.d.ts +0 -3
  898. package/dist/lib/components/Dropdown/styles.d.ts +0 -15
  899. package/dist/lib/components/Dropdown/types.d.ts +0 -40
  900. package/dist/lib/components/Fade/Fade.d.ts +0 -10
  901. package/dist/lib/components/Fade/index.d.ts +0 -1
  902. package/dist/lib/components/Fade/styles.d.ts +0 -2
  903. package/dist/lib/components/Fade/types.d.ts +0 -3
  904. package/dist/lib/components/Fallback/Fallback.d.ts +0 -18
  905. package/dist/lib/components/Fallback/index.d.ts +0 -1
  906. package/dist/lib/components/Fieldset/Fieldset.d.ts +0 -25
  907. package/dist/lib/components/Fieldset/index.d.ts +0 -1
  908. package/dist/lib/components/Fieldset/styles.d.ts +0 -18
  909. package/dist/lib/components/Fieldset/types.d.ts +0 -17
  910. package/dist/lib/components/Flexbox/Flexbox.d.ts +0 -21
  911. package/dist/lib/components/Flexbox/index.d.ts +0 -1
  912. package/dist/lib/components/Flexbox/styles.d.ts +0 -15
  913. package/dist/lib/components/Flexbox/types.d.ts +0 -14
  914. package/dist/lib/components/Footer/Footer.d.ts +0 -28
  915. package/dist/lib/components/Footer/FooterLink.d.ts +0 -2
  916. package/dist/lib/components/Footer/FooterLogo.d.ts +0 -2
  917. package/dist/lib/components/Footer/index.d.ts +0 -1
  918. package/dist/lib/components/Footer/styles.d.ts +0 -17
  919. package/dist/lib/components/Footer/subtypes.d.ts +0 -7
  920. package/dist/lib/components/Footer/types.d.ts +0 -48
  921. package/dist/lib/components/Form/Form.d.ts +0 -15
  922. package/dist/lib/components/Form/index.d.ts +0 -1
  923. package/dist/lib/components/Form/styles.d.ts +0 -6
  924. package/dist/lib/components/Form/types.d.ts +0 -21
  925. package/dist/lib/components/FullBleed/FullBleed.d.ts +0 -13
  926. package/dist/lib/components/FullBleed/index.d.ts +0 -1
  927. package/dist/lib/components/FullBleed/styles.d.ts +0 -7
  928. package/dist/lib/components/FullBleed/types.d.ts +0 -6
  929. package/dist/lib/components/Grid/Grid.d.ts +0 -20
  930. package/dist/lib/components/Grid/index.d.ts +0 -1
  931. package/dist/lib/components/Grid/styles.d.ts +0 -14
  932. package/dist/lib/components/Grid/types.d.ts +0 -13
  933. package/dist/lib/components/Header/Header.d.ts +0 -25
  934. package/dist/lib/components/Header/HeaderBurger.d.ts +0 -2
  935. package/dist/lib/components/Header/HeaderLogo.d.ts +0 -2
  936. package/dist/lib/components/Header/HeaderNav.d.ts +0 -2
  937. package/dist/lib/components/Header/HeaderNavLink.d.ts +0 -2
  938. package/dist/lib/components/Header/HeaderSearch.d.ts +0 -2
  939. package/dist/lib/components/Header/index.d.ts +0 -1
  940. package/dist/lib/components/Header/styles.d.ts +0 -25
  941. package/dist/lib/components/Header/subtypes.d.ts +0 -43
  942. package/dist/lib/components/Header/types.d.ts +0 -67
  943. package/dist/lib/components/Helmet/Helmet.d.ts +0 -17
  944. package/dist/lib/components/Helmet/index.d.ts +0 -1
  945. package/dist/lib/components/Helmet/types.d.ts +0 -14
  946. package/dist/lib/components/Highlight/Highlight.d.ts +0 -15
  947. package/dist/lib/components/Highlight/index.d.ts +0 -1
  948. package/dist/lib/components/Highlight/types.d.ts +0 -8
  949. package/dist/lib/components/Hr/Hr.d.ts +0 -15
  950. package/dist/lib/components/Hr/index.d.ts +0 -1
  951. package/dist/lib/components/Hr/styles.d.ts +0 -8
  952. package/dist/lib/components/Hr/types.d.ts +0 -9
  953. package/dist/lib/components/Icon/Icon.d.ts +0 -14
  954. package/dist/lib/components/Icon/index.d.ts +0 -1
  955. package/dist/lib/components/Icon/styles.d.ts +0 -7
  956. package/dist/lib/components/Icon/types.d.ts +0 -10
  957. package/dist/lib/components/IconMenu/IconMenu.d.ts +0 -33
  958. package/dist/lib/components/IconMenu/IconMenuItem.d.ts +0 -38
  959. package/dist/lib/components/IconMenu/index.d.ts +0 -2
  960. package/dist/lib/components/IconMenu/styles.d.ts +0 -18
  961. package/dist/lib/components/IconMenu/types.d.ts +0 -33
  962. package/dist/lib/components/Image/Image.d.ts +0 -17
  963. package/dist/lib/components/Image/ImageFunction.d.ts +0 -2
  964. package/dist/lib/components/Image/index.d.ts +0 -1
  965. package/dist/lib/components/Image/styles.d.ts +0 -20
  966. package/dist/lib/components/Image/types.d.ts +0 -32
  967. package/dist/lib/components/Input/Input.d.ts +0 -53
  968. package/dist/lib/components/Input/index.d.ts +0 -1
  969. package/dist/lib/components/Input/styles.d.ts +0 -3
  970. package/dist/lib/components/Input/subtypes.d.ts +0 -85
  971. package/dist/lib/components/Input/templates/ColorInput.d.ts +0 -3
  972. package/dist/lib/components/Input/templates/DateInput.d.ts +0 -5
  973. package/dist/lib/components/Input/templates/FileInput.d.ts +0 -3
  974. package/dist/lib/components/Input/templates/PasswordInput.d.ts +0 -2
  975. package/dist/lib/components/Input/templates/SearchInput.d.ts +0 -2
  976. package/dist/lib/components/Input/templates/SelectInput.d.ts +0 -6
  977. package/dist/lib/components/Input/templates/TextInput.d.ts +0 -3
  978. package/dist/lib/components/Input/templates/TextareaInput.d.ts +0 -4
  979. package/dist/lib/components/Input/templates/TimeInput.d.ts +0 -5
  980. package/dist/lib/components/Input/types.d.ts +0 -2
  981. package/dist/lib/components/InputCheck/InputCheck.d.ts +0 -18
  982. package/dist/lib/components/InputCheck/index.d.ts +0 -1
  983. package/dist/lib/components/InputCheck/styles.d.ts +0 -16
  984. package/dist/lib/components/InputCheck/types.d.ts +0 -25
  985. package/dist/lib/components/InputComponents/components/InputAndListContainer.d.ts +0 -12
  986. package/dist/lib/components/InputComponents/components/InputButton.d.ts +0 -17
  987. package/dist/lib/components/InputComponents/components/InputContainer.d.ts +0 -19
  988. package/dist/lib/components/InputComponents/components/InputIcon.d.ts +0 -15
  989. package/dist/lib/components/InputComponents/components/InputLeftContainer.d.ts +0 -10
  990. package/dist/lib/components/InputComponents/components/InputPrefix.d.ts +0 -10
  991. package/dist/lib/components/InputComponents/components/InputRightContainer.d.ts +0 -12
  992. package/dist/lib/components/InputComponents/components/InputSuffix.d.ts +0 -10
  993. package/dist/lib/components/InputComponents/components/InputValidationHelper.d.ts +0 -9
  994. package/dist/lib/components/InputComponents/components/InputValidationIcon.d.ts +0 -10
  995. package/dist/lib/components/InputComponents/components/InputWrapper.d.ts +0 -15
  996. package/dist/lib/components/InputComponents/components/ListInput.d.ts +0 -14
  997. package/dist/lib/components/InputComponents/components/ListInputItem.d.ts +0 -15
  998. package/dist/lib/components/InputComponents/index.d.ts +0 -13
  999. package/dist/lib/components/InputComponents/styles.d.ts +0 -50
  1000. package/dist/lib/components/InputComponents/types.d.ts +0 -191
  1001. package/dist/lib/components/InputContainer/HelperBottom.d.ts +0 -3
  1002. package/dist/lib/components/InputContainer/InputContainer.d.ts +0 -21
  1003. package/dist/lib/components/InputContainer/index.d.ts +0 -1
  1004. package/dist/lib/components/InputContainer/styles.d.ts +0 -10
  1005. package/dist/lib/components/InputContainer/subtypes.d.ts +0 -2
  1006. package/dist/lib/components/InputContainer/types.d.ts +0 -16
  1007. package/dist/lib/components/InputCounter/InputCounter.d.ts +0 -2
  1008. package/dist/lib/components/InputCounter/index.d.ts +0 -1
  1009. package/dist/lib/components/InputCounter/styles.d.ts +0 -10
  1010. package/dist/lib/components/InputCounter/subtypes.d.ts +0 -4
  1011. package/dist/lib/components/InputCounter/types.d.ts +0 -37
  1012. package/dist/lib/components/InputImage/EmptyContainer.d.ts +0 -2
  1013. package/dist/lib/components/InputImage/HoverContainer.d.ts +0 -2
  1014. package/dist/lib/components/InputImage/InputImage.d.ts +0 -41
  1015. package/dist/lib/components/InputImage/index.d.ts +0 -1
  1016. package/dist/lib/components/InputImage/styles.d.ts +0 -18
  1017. package/dist/lib/components/InputImage/subtypes.d.ts +0 -6
  1018. package/dist/lib/components/InputImage/types.d.ts +0 -21
  1019. package/dist/lib/components/InputPhone/InputPhone.d.ts +0 -46
  1020. package/dist/lib/components/InputPhone/index.d.ts +0 -1
  1021. package/dist/lib/components/InputPhone/styles.d.ts +0 -19
  1022. package/dist/lib/components/InputPhone/types.d.ts +0 -21
  1023. package/dist/lib/components/InputPhone/utils/countries.d.ts +0 -2
  1024. package/dist/lib/components/InputPin/InputPin.d.ts +0 -41
  1025. package/dist/lib/components/InputPin/index.d.ts +0 -1
  1026. package/dist/lib/components/InputPin/styles.d.ts +0 -3
  1027. package/dist/lib/components/InputPin/subtypes.d.ts +0 -6
  1028. package/dist/lib/components/InputPin/types.d.ts +0 -20
  1029. package/dist/lib/components/InputSlider/InputSlider.d.ts +0 -28
  1030. package/dist/lib/components/InputSlider/Slider.d.ts +0 -11
  1031. package/dist/lib/components/InputSlider/index.d.ts +0 -1
  1032. package/dist/lib/components/InputSlider/styles.d.ts +0 -13
  1033. package/dist/lib/components/InputSlider/types.d.ts +0 -10
  1034. package/dist/lib/components/Key/Key.d.ts +0 -14
  1035. package/dist/lib/components/Key/index.d.ts +0 -1
  1036. package/dist/lib/components/Key/styles.d.ts +0 -6
  1037. package/dist/lib/components/Key/types.d.ts +0 -8
  1038. package/dist/lib/components/LibIcon/LibIcon.d.ts +0 -11
  1039. package/dist/lib/components/LibIcon/index.d.ts +0 -1
  1040. package/dist/lib/components/LibIcon/types.d.ts +0 -6
  1041. package/dist/lib/components/Link/Link.d.ts +0 -9
  1042. package/dist/lib/components/Link/index.d.ts +0 -1
  1043. package/dist/lib/components/Link/types.d.ts +0 -5
  1044. package/dist/lib/components/Linkify/Linkify.d.ts +0 -11
  1045. package/dist/lib/components/Linkify/index.d.ts +0 -1
  1046. package/dist/lib/components/Linkify/types.d.ts +0 -5
  1047. package/dist/lib/components/ListGroup/ListGroup.d.ts +0 -31
  1048. package/dist/lib/components/ListGroup/ListGroupItem.d.ts +0 -22
  1049. package/dist/lib/components/ListGroup/ListGroupTitle.d.ts +0 -2
  1050. package/dist/lib/components/ListGroup/index.d.ts +0 -3
  1051. package/dist/lib/components/ListGroup/styles.d.ts +0 -20
  1052. package/dist/lib/components/ListGroup/types.d.ts +0 -73
  1053. package/dist/lib/components/Loader/Loader.d.ts +0 -14
  1054. package/dist/lib/components/Loader/index.d.ts +0 -1
  1055. package/dist/lib/components/Loader/styles.d.ts +0 -11
  1056. package/dist/lib/components/Loader/templates/LoaderFour.d.ts +0 -2
  1057. package/dist/lib/components/Loader/templates/LoaderOne.d.ts +0 -2
  1058. package/dist/lib/components/Loader/templates/LoaderThree.d.ts +0 -2
  1059. package/dist/lib/components/Loader/templates/LoaderTwo.d.ts +0 -2
  1060. package/dist/lib/components/Loader/types.d.ts +0 -16
  1061. package/dist/lib/components/Main/Main.d.ts +0 -13
  1062. package/dist/lib/components/Main/index.d.ts +0 -1
  1063. package/dist/lib/components/Main/styles.d.ts +0 -7
  1064. package/dist/lib/components/Main/types.d.ts +0 -14
  1065. package/dist/lib/components/MarkdownContainer/MarkdownContainer.d.ts +0 -10
  1066. package/dist/lib/components/MarkdownContainer/index.d.ts +0 -1
  1067. package/dist/lib/components/MarkdownContainer/styles.d.ts +0 -22
  1068. package/dist/lib/components/MarkdownContainer/types.d.ts +0 -5
  1069. package/dist/lib/components/MarkdownEditor/MarkdownEditor.d.ts +0 -65
  1070. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.d.ts +0 -2
  1071. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.d.ts +0 -2
  1072. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.d.ts +0 -2
  1073. package/dist/lib/components/MarkdownEditor/MdEditorInput.d.ts +0 -2
  1074. package/dist/lib/components/MarkdownEditor/index.d.ts +0 -1
  1075. package/dist/lib/components/MarkdownEditor/markdown-buttons.d.ts +0 -15
  1076. package/dist/lib/components/MarkdownEditor/styles.d.ts +0 -45
  1077. package/dist/lib/components/MarkdownEditor/subtypes.d.ts +0 -23
  1078. package/dist/lib/components/MarkdownEditor/types.d.ts +0 -45
  1079. package/dist/lib/components/Masonry/Masonry.d.ts +0 -13
  1080. package/dist/lib/components/Masonry/index.d.ts +0 -1
  1081. package/dist/lib/components/Masonry/styles.d.ts +0 -8
  1082. package/dist/lib/components/Masonry/types.d.ts +0 -7
  1083. package/dist/lib/components/Masonry/utils.d.ts +0 -3
  1084. package/dist/lib/components/Messaging/Message.d.ts +0 -30
  1085. package/dist/lib/components/Messaging/MessageForm.d.ts +0 -15
  1086. package/dist/lib/components/Messaging/MessagesContainer.d.ts +0 -10
  1087. package/dist/lib/components/Messaging/MessagesList.d.ts +0 -14
  1088. package/dist/lib/components/Messaging/Messaging.d.ts +0 -25
  1089. package/dist/lib/components/Messaging/index.d.ts +0 -5
  1090. package/dist/lib/components/Messaging/styles.d.ts +0 -8
  1091. package/dist/lib/components/Messaging/types.d.ts +0 -85
  1092. package/dist/lib/components/Modal/Modal.d.ts +0 -27
  1093. package/dist/lib/components/Modal/index.d.ts +0 -1
  1094. package/dist/lib/components/Modal/styles.d.ts +0 -4
  1095. package/dist/lib/components/Modal/types.d.ts +0 -25
  1096. package/dist/lib/components/PageLayout/PageLayout.d.ts +0 -18
  1097. package/dist/lib/components/PageLayout/index.d.ts +0 -1
  1098. package/dist/lib/components/PageLayout/types.d.ts +0 -39
  1099. package/dist/lib/components/PageLoading/PageLoading.d.ts +0 -14
  1100. package/dist/lib/components/PageLoading/index.d.ts +0 -1
  1101. package/dist/lib/components/PageLoading/styles.d.ts +0 -5
  1102. package/dist/lib/components/PageLoading/types.d.ts +0 -8
  1103. package/dist/lib/components/Pagination/Pagination.d.ts +0 -29
  1104. package/dist/lib/components/Pagination/PaginationButton.d.ts +0 -13
  1105. package/dist/lib/components/Pagination/index.d.ts +0 -2
  1106. package/dist/lib/components/Pagination/styles.d.ts +0 -6
  1107. package/dist/lib/components/Pagination/types.d.ts +0 -43
  1108. package/dist/lib/components/Paginator/Paginator.d.ts +0 -19
  1109. package/dist/lib/components/Paginator/index.d.ts +0 -1
  1110. package/dist/lib/components/Paginator/styles.d.ts +0 -4
  1111. package/dist/lib/components/Paginator/types.d.ts +0 -26
  1112. package/dist/lib/components/ProgressBar/ProgressBar.d.ts +0 -13
  1113. package/dist/lib/components/ProgressBar/index.d.ts +0 -1
  1114. package/dist/lib/components/ProgressBar/styles.d.ts +0 -5
  1115. package/dist/lib/components/ProgressBar/types.d.ts +0 -8
  1116. package/dist/lib/components/ProgressCircle/Circle.d.ts +0 -2
  1117. package/dist/lib/components/ProgressCircle/ProgressCircle.d.ts +0 -17
  1118. package/dist/lib/components/ProgressCircle/ProgressCircleFn.d.ts +0 -2
  1119. package/dist/lib/components/ProgressCircle/Value.d.ts +0 -2
  1120. package/dist/lib/components/ProgressCircle/clean-percentage.d.ts +0 -1
  1121. package/dist/lib/components/ProgressCircle/index.d.ts +0 -1
  1122. package/dist/lib/components/ProgressCircle/styles.d.ts +0 -10
  1123. package/dist/lib/components/ProgressCircle/subtypes.d.ts +0 -3
  1124. package/dist/lib/components/ProgressCircle/types.d.ts +0 -23
  1125. package/dist/lib/components/Rating/Rating.d.ts +0 -21
  1126. package/dist/lib/components/Rating/index.d.ts +0 -1
  1127. package/dist/lib/components/Rating/styles.d.ts +0 -7
  1128. package/dist/lib/components/Rating/types.d.ts +0 -24
  1129. package/dist/lib/components/ResetScroll/ResetScroll.d.ts +0 -5
  1130. package/dist/lib/components/ResetScroll/index.d.ts +0 -1
  1131. package/dist/lib/components/Section/Section.d.ts +0 -11
  1132. package/dist/lib/components/Section/index.d.ts +0 -1
  1133. package/dist/lib/components/Section/styles.d.ts +0 -5
  1134. package/dist/lib/components/Section/types.d.ts +0 -4
  1135. package/dist/lib/components/Select/Select.d.ts +0 -42
  1136. package/dist/lib/components/Select/SelectButton.d.ts +0 -2
  1137. package/dist/lib/components/Select/index.d.ts +0 -1
  1138. package/dist/lib/components/Select/styles.d.ts +0 -4
  1139. package/dist/lib/components/Select/subtypes.d.ts +0 -12
  1140. package/dist/lib/components/Select/types.d.ts +0 -19
  1141. package/dist/lib/components/Skeleton/Skeleton.d.ts +0 -19
  1142. package/dist/lib/components/Skeleton/SkeletonCard.d.ts +0 -21
  1143. package/dist/lib/components/Skeleton/SkeletonShine.d.ts +0 -11
  1144. package/dist/lib/components/Skeleton/index.d.ts +0 -3
  1145. package/dist/lib/components/Skeleton/styles.d.ts +0 -11
  1146. package/dist/lib/components/Skeleton/subtypes.d.ts +0 -11
  1147. package/dist/lib/components/Skeleton/types.d.ts +0 -25
  1148. package/dist/lib/components/Slideshow/Slideshow.d.ts +0 -44
  1149. package/dist/lib/components/Slideshow/SlideshowButton.d.ts +0 -2
  1150. package/dist/lib/components/Slideshow/SlideshowPagination.d.ts +0 -2
  1151. package/dist/lib/components/Slideshow/index.d.ts +0 -1
  1152. package/dist/lib/components/Slideshow/styles.d.ts +0 -33
  1153. package/dist/lib/components/Slideshow/subtypes.d.ts +0 -11
  1154. package/dist/lib/components/Slideshow/types.d.ts +0 -88
  1155. package/dist/lib/components/SrOnly/SrOnly.d.ts +0 -10
  1156. package/dist/lib/components/SrOnly/index.d.ts +0 -1
  1157. package/dist/lib/components/SrOnly/styles.d.ts +0 -2
  1158. package/dist/lib/components/SrOnly/types.d.ts +0 -3
  1159. package/dist/lib/components/Stepper/Step.d.ts +0 -23
  1160. package/dist/lib/components/Stepper/Stepper.d.ts +0 -31
  1161. package/dist/lib/components/Stepper/index.d.ts +0 -2
  1162. package/dist/lib/components/Stepper/styles.d.ts +0 -13
  1163. package/dist/lib/components/Stepper/types.d.ts +0 -29
  1164. package/dist/lib/components/Sticky/Sticky.d.ts +0 -11
  1165. package/dist/lib/components/Sticky/index.d.ts +0 -1
  1166. package/dist/lib/components/Sticky/styles.d.ts +0 -5
  1167. package/dist/lib/components/Sticky/types.d.ts +0 -4
  1168. package/dist/lib/components/Table/TBody.d.ts +0 -9
  1169. package/dist/lib/components/Table/THead.d.ts +0 -9
  1170. package/dist/lib/components/Table/Table.d.ts +0 -15
  1171. package/dist/lib/components/Table/Td.d.ts +0 -10
  1172. package/dist/lib/components/Table/Tr.d.ts +0 -9
  1173. package/dist/lib/components/Table/index.d.ts +0 -5
  1174. package/dist/lib/components/Table/styles.d.ts +0 -9
  1175. package/dist/lib/components/Table/types.d.ts +0 -26
  1176. package/dist/lib/components/Tabs/TabButton.d.ts +0 -14
  1177. package/dist/lib/components/Tabs/TabItem.d.ts +0 -11
  1178. package/dist/lib/components/Tabs/Tabs.d.ts +0 -24
  1179. package/dist/lib/components/Tabs/TabsButtonsContainer.d.ts +0 -12
  1180. package/dist/lib/components/Tabs/TabsContainer.d.ts +0 -10
  1181. package/dist/lib/components/Tabs/index.d.ts +0 -5
  1182. package/dist/lib/components/Tabs/styles.d.ts +0 -13
  1183. package/dist/lib/components/Tabs/types.d.ts +0 -34
  1184. package/dist/lib/components/Tag/Tag.d.ts +0 -20
  1185. package/dist/lib/components/Tag/index.d.ts +0 -1
  1186. package/dist/lib/components/Tag/styles.d.ts +0 -11
  1187. package/dist/lib/components/Tag/types.d.ts +0 -29
  1188. package/dist/lib/components/Text/Text.d.ts +0 -15
  1189. package/dist/lib/components/Text/index.d.ts +0 -1
  1190. package/dist/lib/components/Text/styles.d.ts +0 -16
  1191. package/dist/lib/components/Text/subtypes.d.ts +0 -9
  1192. package/dist/lib/components/Text/templates/Blockquote.d.ts +0 -2
  1193. package/dist/lib/components/Text/templates/Dl.d.ts +0 -2
  1194. package/dist/lib/components/Text/templates/Em.d.ts +0 -2
  1195. package/dist/lib/components/Text/templates/H1.d.ts +0 -2
  1196. package/dist/lib/components/Text/templates/H2.d.ts +0 -2
  1197. package/dist/lib/components/Text/templates/H3.d.ts +0 -2
  1198. package/dist/lib/components/Text/templates/H4.d.ts +0 -2
  1199. package/dist/lib/components/Text/templates/H5.d.ts +0 -2
  1200. package/dist/lib/components/Text/templates/H6.d.ts +0 -2
  1201. package/dist/lib/components/Text/templates/Ol.d.ts +0 -2
  1202. package/dist/lib/components/Text/templates/P.d.ts +0 -2
  1203. package/dist/lib/components/Text/templates/Small.d.ts +0 -2
  1204. package/dist/lib/components/Text/templates/Strong.d.ts +0 -2
  1205. package/dist/lib/components/Text/templates/Ul.d.ts +0 -2
  1206. package/dist/lib/components/Text/types.d.ts +0 -16
  1207. package/dist/lib/components/TextIcon/TextIcon.d.ts +0 -30
  1208. package/dist/lib/components/TextIcon/index.d.ts +0 -1
  1209. package/dist/lib/components/TextIcon/styles.d.ts +0 -10
  1210. package/dist/lib/components/TextIcon/types.d.ts +0 -13
  1211. package/dist/lib/components/TextIcon/utils.d.ts +0 -2
  1212. package/dist/lib/components/Timepicker/Timepicker.d.ts +0 -32
  1213. package/dist/lib/components/Timepicker/index.d.ts +0 -1
  1214. package/dist/lib/components/Timepicker/styles.d.ts +0 -8
  1215. package/dist/lib/components/Timepicker/types.d.ts +0 -39
  1216. package/dist/lib/components/Toast/Toast.d.ts +0 -30
  1217. package/dist/lib/components/Toast/Toaster.d.ts +0 -36
  1218. package/dist/lib/components/Toast/index.d.ts +0 -1
  1219. package/dist/lib/components/Toast/styles.d.ts +0 -18
  1220. package/dist/lib/components/Toast/types.d.ts +0 -14
  1221. package/dist/lib/components/Tooltip/Tooltip.d.ts +0 -18
  1222. package/dist/lib/components/Tooltip/index.d.ts +0 -1
  1223. package/dist/lib/components/Tooltip/styles.d.ts +0 -12
  1224. package/dist/lib/components/Tooltip/types.d.ts +0 -12
  1225. package/dist/lib/components/Truncate/Truncate.d.ts +0 -11
  1226. package/dist/lib/components/Truncate/index.d.ts +0 -1
  1227. package/dist/lib/components/Truncate/styles.d.ts +0 -7
  1228. package/dist/lib/components/Truncate/types.d.ts +0 -4
  1229. package/dist/lib/components/Video/Video.d.ts +0 -13
  1230. package/dist/lib/components/Video/index.d.ts +0 -1
  1231. package/dist/lib/components/Video/styles.d.ts +0 -7
  1232. package/dist/lib/components/Video/types.d.ts +0 -8
  1233. package/dist/lib/components/Wrapper/Wrapper.d.ts +0 -13
  1234. package/dist/lib/components/Wrapper/index.d.ts +0 -1
  1235. package/dist/lib/components/Wrapper/styles.d.ts +0 -6
  1236. package/dist/lib/components/Wrapper/types.d.ts +0 -6
  1237. package/dist/lib/components/Youtube/Youtube.d.ts +0 -11
  1238. package/dist/lib/components/Youtube/index.d.ts +0 -1
  1239. package/dist/lib/components/Youtube/styles.d.ts +0 -6
  1240. package/dist/lib/components/Youtube/types.d.ts +0 -6
  1241. package/dist/lib/context/Theme.context.d.ts +0 -22
  1242. package/dist/lib/context/Toaster/Toaster.context.d.ts +0 -39
  1243. package/dist/lib/context/Toaster/index.d.ts +0 -1
  1244. package/dist/lib/context/Toaster/toast.reducer.d.ts +0 -11
  1245. package/dist/lib/hooks/index.d.ts +0 -15
  1246. package/dist/lib/hooks/useClickOutside.d.ts +0 -10
  1247. package/dist/lib/hooks/useCopyToClipboard.d.ts +0 -8
  1248. package/dist/lib/hooks/useDebounce.d.ts +0 -7
  1249. package/dist/lib/hooks/useExportData.d.ts +0 -8
  1250. package/dist/lib/hooks/useFetch.d.ts +0 -11
  1251. package/dist/lib/hooks/useForm.d.ts +0 -13
  1252. package/dist/lib/hooks/useIsOverflow.d.ts +0 -11
  1253. package/dist/lib/hooks/useKeyPress.d.ts +0 -7
  1254. package/dist/lib/hooks/useMaxWidth.d.ts +0 -6
  1255. package/dist/lib/hooks/useMergeRefs.d.ts +0 -7
  1256. package/dist/lib/hooks/useMinWidth.d.ts +0 -6
  1257. package/dist/lib/hooks/usePaginatedData.d.ts +0 -12
  1258. package/dist/lib/hooks/usePagination.d.ts +0 -21
  1259. package/dist/lib/hooks/useTouchScreen.d.ts +0 -5
  1260. package/dist/lib/hooks/useTranslation.d.ts +0 -12
  1261. package/dist/lib/icons/ArrowUp.d.ts +0 -2
  1262. package/dist/lib/icons/Bold.d.ts +0 -2
  1263. package/dist/lib/icons/Calendar.d.ts +0 -2
  1264. package/dist/lib/icons/CaretDown.d.ts +0 -2
  1265. package/dist/lib/icons/Check.d.ts +0 -2
  1266. package/dist/lib/icons/CheckCircle.d.ts +0 -2
  1267. package/dist/lib/icons/ChevronDown.d.ts +0 -2
  1268. package/dist/lib/icons/ChevronLeft.d.ts +0 -2
  1269. package/dist/lib/icons/ChevronRight.d.ts +0 -2
  1270. package/dist/lib/icons/ChevronUp.d.ts +0 -2
  1271. package/dist/lib/icons/Clipboard.d.ts +0 -2
  1272. package/dist/lib/icons/Clock.d.ts +0 -2
  1273. package/dist/lib/icons/Close.d.ts +0 -2
  1274. package/dist/lib/icons/CloseCircle.d.ts +0 -2
  1275. package/dist/lib/icons/Code.d.ts +0 -2
  1276. package/dist/lib/icons/CodeBlock.d.ts +0 -2
  1277. package/dist/lib/icons/Comment.d.ts +0 -2
  1278. package/dist/lib/icons/Drag.d.ts +0 -2
  1279. package/dist/lib/icons/Edit.d.ts +0 -2
  1280. package/dist/lib/icons/EditorCode.d.ts +0 -2
  1281. package/dist/lib/icons/EditorLive.d.ts +0 -2
  1282. package/dist/lib/icons/EditorPreview.d.ts +0 -2
  1283. package/dist/lib/icons/Hide.d.ts +0 -2
  1284. package/dist/lib/icons/Image.d.ts +0 -2
  1285. package/dist/lib/icons/Italic.d.ts +0 -2
  1286. package/dist/lib/icons/Link.d.ts +0 -2
  1287. package/dist/lib/icons/Minus.d.ts +0 -2
  1288. package/dist/lib/icons/OrderedList.d.ts +0 -2
  1289. package/dist/lib/icons/Plus.d.ts +0 -2
  1290. package/dist/lib/icons/Quote.d.ts +0 -2
  1291. package/dist/lib/icons/Search.d.ts +0 -2
  1292. package/dist/lib/icons/Send.d.ts +0 -2
  1293. package/dist/lib/icons/Separator.d.ts +0 -2
  1294. package/dist/lib/icons/Show.d.ts +0 -2
  1295. package/dist/lib/icons/Star.d.ts +0 -2
  1296. package/dist/lib/icons/StarFull.d.ts +0 -2
  1297. package/dist/lib/icons/Strikethrough.d.ts +0 -2
  1298. package/dist/lib/icons/Underline.d.ts +0 -2
  1299. package/dist/lib/icons/UnorderedList.d.ts +0 -2
  1300. package/dist/lib/icons/index.d.ts +0 -39
  1301. package/dist/lib/icons/styles.d.ts +0 -6
  1302. package/dist/lib/icons/types.d.ts +0 -8
  1303. package/dist/lib/index.d.ts +0 -90
  1304. package/dist/lib/lib-utils/append-styles.d.ts +0 -1
  1305. package/dist/lib/lib-utils/colors-maps.d.ts +0 -9
  1306. package/dist/lib/lib-utils/get-highlighted-text.d.ts +0 -3
  1307. package/dist/lib/lib-utils/get-icon-size-from-font.d.ts +0 -2
  1308. package/dist/lib/lib-utils/index.d.ts +0 -7
  1309. package/dist/lib/lib-utils/round-icon-size.d.ts +0 -1
  1310. package/dist/lib/lib-utils/transfom-search-keys.d.ts +0 -1
  1311. package/dist/lib/types/component-items.d.ts +0 -438
  1312. package/dist/lib/types/components-props.d.ts +0 -79
  1313. package/dist/lib/types/generate-int-range.d.ts +0 -7
  1314. package/dist/lib/types/global.d.ts +0 -350
  1315. package/dist/lib/types/index.d.ts +0 -5
  1316. package/dist/lib/types/require-at-least-one.d.ts +0 -3
  1317. package/dist/lib/types/theme.d.ts +0 -2
  1318. package/dist/lib/types/type-values.d.ts +0 -2285
  1319. package/dist/lib/utils/StyleSheetManager.d.ts +0 -4
  1320. package/dist/lib/utils/index.d.ts +0 -4
  1321. package/dist/lib/utils/linkify-text.d.ts +0 -2
  1322. package/dist/lib/utils/options-markdown.d.ts +0 -4
  1323. package/dist/lib/utils/set-default-theme.d.ts +0 -6
  1324. package/dist/styles-3686a5c6.js +0 -19
  1325. package/dist/styles-9e4aa8e9.cjs +0 -7
  1326. package/dist/tsx-library-julseb.cjs.js +0 -1
  1327. package/dist/tsx-library-julseb.es.js +0 -213
  1328. package/dist/tsx-library-julseb.umd.js +0 -4150
  1329. package/dist/types/component-items.d.ts +0 -438
  1330. package/dist/types/component-items.js +0 -2
  1331. package/dist/types/generate-int-range.d.ts +0 -7
  1332. package/dist/types/generate-int-range.js +0 -3
  1333. package/dist/types/global.d.ts +0 -350
  1334. package/dist/types/global.js +0 -2
  1335. package/dist/types/index.d.ts +0 -5
  1336. package/dist/types/index.js +0 -6
  1337. package/dist/types/require-at-least-one.d.ts +0 -3
  1338. package/dist/types/require-at-least-one.js +0 -1
  1339. package/dist/types/type-values.d.ts +0 -2285
  1340. package/dist/types/type-values.js +0 -2151
  1341. /package/dist/{types → lib/types}/component-items.ts +0 -0
  1342. /package/dist/{types → lib/types}/components-props.ts +0 -0
  1343. /package/dist/{types → lib/types}/generate-int-range.ts +0 -0
  1344. /package/dist/{types → lib/types}/global.ts +0 -0
  1345. /package/dist/{types → lib/types}/index.ts +0 -0
  1346. /package/dist/{types → lib/types}/require-at-least-one.ts +0 -0
  1347. /package/dist/{types → lib/types}/theme.ts +0 -0
  1348. /package/dist/{types → lib/types}/type-values.ts +0 -0
@@ -0,0 +1,21 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-mz" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0 0h682.7v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)" transform="scale(.9375)">
8
+ <path fill="#009a00" fill-rule="evenodd" d="M0 0h768v160H0z"/>
9
+ <path fill="#fff" fill-rule="evenodd" d="M0 160h768v16H0z"/>
10
+ <path fill-rule="evenodd" d="M0 176h768v160H0z"/>
11
+ <path fill="#fff" fill-rule="evenodd" d="M0 336h768v16H0z"/>
12
+ <path fill="#ffca00" fill-rule="evenodd" d="M0 352h768v160H0z"/>
13
+ <path fill="red" fill-rule="evenodd" d="M0 0v512l336-256L0 0z"/>
14
+ <path fill="#ffca00" fill-rule="evenodd" d="m198.5 333-51.2-37.5L96.1 333l19.9-60.3-51.5-37.1 63.5.2 19.3-60.4 19.4 60.5 63.5-.3-51.5 37.1z"/>
15
+ <path fill="#fff" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="M102.8 290.9h37c3 3.3 9.5 4.7 15.8 0 11.6-6.4 34 0 34 0l4.4-4.7-10.7-35.2-3.9-4.2s-8.3-5-24-3.3c-15.7 1.7-21.2-.5-21.2-.5s-13.7 1.6-17.6 3.6l-4.4 4.4-9.4 39.9z"/>
16
+ <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="M110.3 281.8s35.2-4.4 45.4 9.1c-5.7 4-10.8 4.3-16.2.3.8-1.5 12.6-13.8 42.7-9.7"/>
17
+ <path fill="none" stroke="#000" stroke-width="1.2" d="m148 246.6-.3 38.8m31.7-38.3L186 278"/>
18
+ <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="m117 246.6-3.7 16"/>
19
+ <path fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="m78.9 295.1 8.6 10.2c1 .6 2 .6 2.9 0l12.8-15.4 5.4-6.7c.9-1 1.1-2.1 1-3l10.4-9.3 2.2.2c-1-.2-1.7-.7-1-1.8l2.4-1.8 1.8 2.3s-2.6 3.4-2.9 3.4h-2.8l-5.4 4.9 2.4 2 3.5 9.8 4.4-3.1-2.8-10 6.1-6.7-2.3-3.6 1.6-2s21.3 13.4 29.6 9.8c.2 0 .5-9.6.5-9.6s-22.2-2.3-22.7-6.7 5-5 5-5l-2.4-3.2.5-1.8 3.9 4.8 8.7-7.4 51.5 58.6c2.8-1.1 3.4-1.8 3.6-4.6L155 241.5l3.8-4.1c.8-.9 1-1.2 1-2.6l6-5.1a7.3 7.3 0 0 1 3.8 3L186 219c.4.4 1.7.8 2.6.4l26.9-25.9-29.3 20.7-1-.7c0-.9 1-1 0-2.6-1.2-1.4-2.9 1.3-3.1 1.3-.3 0-4.3-1.4-5.2-3.2l-.2 4.7-7.5 7-5.7-.3-8.2 8-1 3 1.3 2.7s-4.4 3.8-4.4 3.6c0-.3-.9-1.2-1-1.3l3.8-3.4.5-2.3-1.2-2c-.4.3-5.2 5.4-5.5 4.8l-14-15.5.8-2.9-8.7-9.5c-3.2-1.1-8.3-1.3-9.3 5.7-.8 1.6-7.4.2-7.4.2l-3.6.8L85.2 241l11.3 13.6 23.2-29.3.7-8.3 4.8 5.4c1.7.2 3.2.3 4.7-.5l13.7 15.3-2.3 2.3 2 2.2 2.4-1.6.9 1.3c-1.1.6-2 1.5-3.1 2.1-1.8-1.2-3.6-2.7-3.5-5l-7.7 6.4-.3 1.2-22.9 19-2 .3-.5 6 14.9-12.4v-1.8l1.5 1.3 11.6-9.3s.8 1 .5 1-10.3 9.3-10.3 9.3l-.2 1-1.8 1.6-1-.8-14 12.4h-2l-7.7 7.7c-2 .2-3.7.4-5.4 1.5l-13.8 12.2z"/>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-na" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#a)">
8
+ <path fill="#fff" d="M0 0h640v480H0z"/>
9
+ <path fill="#3662a2" d="m-26.4.2.8 345.6L512.5 0-26.4.2z"/>
10
+ <path fill="#38a100" d="M666.4 479.6 665 120.3 122.3 479.8l544-.2z"/>
11
+ <path fill="#c70000" d="m-26 371.8.4 108.2 117.5-.1L665.4 95.4l-.7-94.1-116-1L-26 371.7z"/>
12
+ <path fill="#ffe700" d="m219.6 172-21.8-13.2-12.6 22.1-12.2-22.2-22 12.9.6-25.4-25.4.2 13.2-21.8-22.1-12.5 22.2-12.3-12.8-22 25.4.6-.1-25.5 21.7 13.2L186.3 44l12.2 22.2 22-12.9-.6 25.4 25.4-.2-13.2 21.8 22.1 12.5-22.2 12.3 12.8 22-25.4-.6z"/>
13
+ <path fill="#3662a2" d="M232.4 112.4c0 25.6-20.9 46.3-46.6 46.3s-46.6-20.7-46.6-46.3 20.8-46.2 46.6-46.2 46.6 20.7 46.6 46.2z"/>
14
+ <path fill="#ffe700" d="M222.3 112.4a36.5 36.5 0 1 1-73 0 36.5 36.5 0 0 1 73 0z"/>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-nc" viewBox="0 0 640 480">
2
+ <path fill="#009543" d="M0 0h640v480H0z"/>
3
+ <path fill="#ed4135" d="M0 0h640v320H0z"/>
4
+ <path fill="#0035ad" d="M0 0h640v160H0z"/>
5
+ <circle cx="240" cy="240" r="157.3" fill="#fae600" stroke="#000" stroke-width="5.3"/>
6
+ <path stroke="#000" stroke-width="6.4" d="M213.3 263.5h53.3M213.3 224h53.3M240 83.2V352"/>
7
+ <path d="M176.6 384.4c64.2 26.3 124.4 1.7 124.4 1.7s-22.7-24.6-34.3-34.2c-11.4-9.4-44.8-9-56.2 0a488.7 488.7 0 0 0-33.9 32.5z"/>
8
+ <ellipse cx="240" cy="312.5" rx="17.6" ry="25.6"/>
9
+ <ellipse cx="240" cy="243.7" rx="21.3" ry="13.5"/>
10
+ <circle cx="240" cy="181.3" r="21.3"/>
11
+ <path d="M265.6 101.9s1.8 3-2 10c-18.6 33.5-37.3 34.2-40.8 37.1-4 3.2-5.6 3-5.6 3 .3-2.9.5-14.6.7-15.7 2.9-15.7 26.5-15.5 45-31.5 2.9-2.5 2.7-3 2.7-3zm-62.4 72s4.3 12 4.8 24c1 19.2 19.4 19.7 32 19.7v-10.7c-9.5 0-17.7-1.4-24.5-15.4a122.7 122.7 0 0 0-12.3-17.6zm-.5 154.6s6.7-8.3 14.6-27.7c4-10.1 13.8-16 22.7-16v-15c-20.3 0-30 7.5-31 18.6a329 329 0 0 1-6.3 40.1z"/>
12
+ <path d="M276.8 173.9s-4.3 12-4.8 24c-1 19.2-19.4 19.7-32 19.7V207c9.5 0 17.7-1.4 24.5-15.5 3.6-6.2 7.7-12.1 12.3-17.6zm.5 154.7s-6.7-8.4-14.6-27.8c-4-10.1-13.8-16-22.7-16V270c20.3 0 30 7.5 31 18.6a329 329 0 0 0 6.3 40z"/>
13
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ne" viewBox="0 0 640 480">
2
+ <path fill="#0db02b" d="M0 0h640v480H0z"/>
3
+ <path fill="#fff" d="M0 0h640v320H0z"/>
4
+ <path fill="#e05206" d="M0 0h640v160H0z"/>
5
+ <circle cx="320" cy="240" r="68" fill="#e05206"/>
6
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-nf" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#fff" d="M194.8 0h250.4v480H194.8z"/>
4
+ <path fill="#198200" d="M0 0h194.8v480H0zm445.2 0H640v480H445.2z"/>
5
+ <path fill="#198200" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width=".7" d="M313.5 351.3v52.6l21.3.2s-6.8-45.8-3.1-52c3.7-6 7.2-5.2 7.2-5.2s13.9 4.2 15.4 3.5c1.5-.6-.2-5.2 7.2-4.6 2.4-.9 1.1-5 3.3-5.2 2.2-.3 44.5 11.8 53.7.4-2.4-6.4-10.7-.5-12.9-.2-2 0-10.3-4-15.1 0-4.4-3.3-24.4-5.5-24.4-5.5-2.6-2.6 47.6 1.3 50.5-.7 5.9-5.9-11-5.2-13.6-3.3a14.8 14.8 0 0 0-14.2-.6c-1.7-4.1-18-2.4-27-3.5-3-1.7-2.5-2.7-.5-3.8 19 .8 37.8 3.3 56.8 2.5 5.1-6.7-6.5-9.3-13.6-3.5-4.2-7-12.7-.3-18.4-1-5.7-.6-3-7.6 4.2-6.5 7.2 1 20.1-.4 22.5-3.7s-1.4-6.7-13.3-3.5c-4-4-13 0-17.1 1.3-5.6-3.1-18.5-.5-22.8.6-4.3-2.6 22.5-7 22.5-7 10.4-.2 16.3-2 19.5-2.8 15.7-8.4-.2-9.3-8.4-3.2-5.1-4-10 .3-14.6 1.8a38.2 38.2 0 0 1-13.4 2c0-.6 12.6-8.3 12.6-8.3s15.3-1.1 18.4-1.5c3-.5 18.8-8.5-2.7-3.1-7.4.6-11.8.2-14.7.4-16.5-1.7 1.6-3.3 1.6-3.3s23.4-2.1 23.7-3.3c.4-9-19.1-4.8-19.3-4.8 0-6.5-18.2.2-18.2 0-3.5-2 2-4.1 2-4.1 4.8-1.2 12-1.6 13.9-3.1 0 0 13.6-.1 15.2-3.7-3.3-9.3-28.8 1.6-32.2 3.2-4.6 0 3-7.4 3.3-7.6.2-.3 21-1.1 30.9-14.5.7-8.1-11.6 4.6-11.6 4.6-1-10.6-13.4.7-20.6 1.5-7.3 1-7.5-3.3-2.5-4 5-.6 10.8-.1 13.6-7.8 2.9-7.7 11.4.4 13-2.4 1.5-2.9-3.1-5.3-3.1-5.3s6.4-6.6-4-6.3c-10.2.2-23.6-1.4-23.6-1.4s10.7-4.1 20.8-4c10 .3 4.6-7.1-5-7.1-9.7 0-14.7-3.3-14.7-3.3l16.4-6.2-1-4.6s9.6-7.7-4-5.9l-15.2 2-27.4 4.1c-.2 0-7.4-2.2-.4-4s31.8-6.7 35.5-5.4c3.7 1.3-.4-9.2-13.6-10.5-13.1-1.3-21.3 3.3-21.3 3.3s-8.5-3.1-.6-5.7c7.9-2.7 20.4.9 20.4.9s14-4.2 2.4-6c-11.6-1.7-15.3 1.6-20.6 1.8-2.1-2.7 18.2-3.3 19.5-5.5-2.2-4-14.8 0-22.2 0-3-1.3-3.3-3.5.3-4.8 7.5-.3 14.6.1 22.1-.2-.2-4 0-8.7-.2-12.8-9.6-1.7-20.8 1.3-26.1 1 1.4-4.3 22-5.5 24.3-6.7 4.8-6-20.1 0-20.4 0-4.3-.6-4-3.4-1.3-5 6.4-.7 20.6 1 19.6-3.4-.8-4-10-1.9-13.6-1-3.8.9-9.3.2-9.3.2-2.3-3.2 21.5-1.9 21.3-4.4-.3-2.8-15.1-.8-20.2-.6-3.9-2.7 19-4.5 19.3-4.8.9-7.3-15.3 0-18.4 0-3 0-1.5-4.6-1.5-4.6s6.3-2.9 6.1-3.3a22 22 0 0 0-5.2-2c-.5 0 0-5 0-5s5.2-4 4.8-5.1c-.5-1.1-6.2.9-6.2.9v-4.4s4.2-.4 4.6-2.4c.5-2-5-2.2-5-2.2l-2.2-23-2 21.5-7.2 1s5 2.9 6 5.8c.8 2.8-6.2 2-6.2 2s5.7 4.8 6.1 6.5c.5 1.8-7.9 2.2-7.9 2.2s7 5 7.5 7.9c.4 2.8 0 4.4 0 4.4s-11.6-10.1-19-7.3c-4 2 8.8 3 17.2 10.3 0 1.7-20.5-5-21.2-.8.4 1.1 21.9 4.2 23.4 7-7.8.3-24-1.7-23.4.9-1.7 3 15.2 1.3 22.3 3.7 2.1 2.4 1.9 4.4-1.7 4.6-6.9-3.3-22.1-5.7-22.2-1.5.1 1 15.8.4 21.5 4.1-7.6 1.8-33.4-3.5-33.5-1 .7 1.3 4.8 6.5 11.8 6.3 7-.2 23.3 2.8 24.4 5 1 2.2-21.1-4.6-29.4-.6-8.4 4 23.9 1.5 29.1 6.3 5.3 4.9-10.5-.4-10.5-.4s-22-3-25.2-1.5c-3.3 1.5-7 5-7 5s2.2 4.4 4.4 3.5c2.2-.9-.7 2.7-.7 2.7s30.7 7.4 37.5 14c6.8 6.6-39-10.3-39-10.3s-18.5 6.8 1 7.2c-2.2 3.3 1.2 5.3 1.2 5.3s32.4 6.8 35.7 12c3.3 5.3-22.1-5-27.9-7.9-5.7-2.8-21.9 1.8-21.7 2.9.3 1 8 2.6 8.1 4.6.3 2-9.4 2.6-9.4 4.4 0 1.7 41 10.3 52 19.5s-32.2-11-32.2-11 2.4 3.3 0 4.2c-2.5.9-11-12.3-25-4.2-2.6 3.4 12.2 6 16 6.4-1.3 3.3-2.4 4.4 2.8 7.7s-10.3-4.8-10.3-4.4l1.1 5.7c-4.8-4-10.7-5.1-16.2-1.1 0 0-.2 4 5.5 6.4-3.1 6.3 3.5 4.3 14 10.3-15.6-4.1-16.9 3.5-5.7 5.2s41.9 2.9 49.1 12.3c7.3 9.4-10.3-3.6-12.3-4-.4.3-.8 4.9-.8 4.9-4.7-2.7-9-5.2-14.6-6.3-.5.9-.3 2.1-.8 3-5-3.7-9.5-6.2-16.9-6.6l-.9 3.5s-6.1-7.7-18.2 0c-6.7 4.9 25.5 1.8 30.7 7.5 5.3 5.7 1.1 6.6 1.1 6.6l-13.1-4.9s-15.6-2.8-20 .7 64 12 66 21.5c1.4 5-16-5.4-31.1-9.9l-1.8 5s-6-6-12.7-7c-.2 0 1.3 6 1.3 6s-16.8-8-25.4-3.8c-8.5 4.2 29.8 6.4 33.3 10.3 3.5 4-11.6-2.6-13 0-1.2 2.7-19.9-4.8-19.6-1.3.2 3.5 2.6 5.5 2.6 5.5s38.8 3.7 40.1 8.3c1.3 4.6-21.5-2.6-21.5-2.6s-2.2 3.3-.4 4.8c1.7 1.6-13.2-8.7-11.8-2-4.9-1.9-17.4-7.8-15.6-3.2 1.7 4.6 35.3 11.2 35.3 11.2s-14.7 1-14 4.8c-19-11.5-18.5-4.2-18-4 .4.2-24.4-6.1-5.7 4s10 8.3 10.3 8.5c.2.2 2 5 1.5 5-.4 0-12.7-6.5-16.9-7-4.1-.4-23.9 5.5-2.8 14.8s34-2.2 45.6-1c11.6 1.4 17 3.4 16 7-1.1 3.8-11.9-12.1-23.2 1.7-13-2.6-21.7-4-15 5.4-21-7.9-34 2.4-7.4 6.6 26 .8 42-6.4 42-6.4s4.5 8.1 10.8 2.4c6.4-5.7 6.6 2.2 6.8 2.2l6.2-2.6h1.5z"/>
6
+ <path fill="#fff" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width=".8" d="M316 320.2v-3.7s-8.2-1.5-12.3-.7c-2.3-1.3-4.6-3.1-7.5-1.6-.5 1.2 5.3 4.3 7.2 4.3a41.1 41.1 0 0 0 12.7 1.7zm0 6s-8.3-3.1-11.6.4c.5 3.7 9.7 5.5 11.7 4.5 1.9-1 0-4.8-.1-5zm14 1.4v2.6s9.8 1.9 11.6-.2c1.7-2.1-8-3.5-11.7-2.4zm-.5-10.2.3 2.9s8.6 1.9 11.9-2.8c3.3-4.7-7.5 0-12.2-.1zm.4-10v2s6.5 1 8-1.8c1.4-2.8-7.8 0-8-.2zm-13.4-6c-1-1.3-4.5-4.8-13.8-5.8-6.5 0 11.7 9.5 13.8 5.9zm13.2-9.7-.2 2.7s22-6.6 27.1-6.1c4.6-1.3 5.6-4.5 5.4-4.5-4-2.9-22.9 2.3-32.3 7.9zm.5-7.8-.3 2.6s15.5-3 19.7-6c4.1-3-19.2 3.5-19.4 3.4zm-.6-7.6v2.6s10.3-.4 12.5-2.4c1.3-2.1-9.2-.3-12.5-.2zm21.6 21.7s5.4.8 6.4-.8c-.2-2.8-6.4 1-6.4.8zM330 266.6l.1 5.7s24.9-7.9 26.5-9.3c1.5-1.5 5-6-26.6 3.6zm-.7-7.9v4.2s10-.8 14.6-4.5c4.6-3.8-14.6.4-14.6.3zm-12-9.3.6 3.7-32.9-10.6c.1 0-1.6-5.4 32.3 6.9zm.5-13.3c0 .4 0 3.6-.2 3.5 0 0-22.8-9.5-23.7-8.7-3-7 24 5.4 24 5.2zm11.1 6 .4 3.1s14-2.9 14.8-4.3c.8-1.4-15.2 1.2-15.2 1.1zm.3 7.4c.2.7.4 3.3.4 3.3s5.6-.5 6.5-1.8c.8-1.3-6.9-1.5-6.9-1.5zm-.8-17v3s15.4-3 17-4.4c1.7-1.5-17.3 1.4-17 1.4zm0-8.5c0 .2-.5 3.1-.1 3.1s18.6-3 21.5-5.7c2.8-2.5-21 2.9-21.3 2.6zm-.2-14.9v3.3s11.8-2.5 14-5c2.2-2.5-14 2-14 1.7zm-2-21.6.2 4.8s16-2.2 18.2-4.8c2.3-2.7-18.5 0-18.4 0zm-7.4-36.5v3s-7.5-.3-5.7-1.6 5.7-1.1 5.7-1.4zm7 4 .2 4.2s9.7-1 10.4-2.5c.8-1.5-10.4-1.6-10.6-1.6zm-.6 6s.2 2.6.4 2.6 3.9-.3 4.7-1.3c.8-1-4.7-1-5-1.3zm-8.2 11.8c0 .3.3 4 0 3.8s-21.2-6.1-23.2-6c-1.9 0-2.4-4.9 23.2 2.2zm1.7 6.9c0 .7.5 4.6-.3 4.4-.7-.2-14.3-4.5-12.9-5.8 1.4-1.3 13.2 1.7 13.2 1.4zm-1.2 29 .1 3.5s-23.7-7.2-24.5-8.4c-.8-1.2-3.1-6.8 24.4 4.9zm1 8.5v3.3l-32.2-11.3s-2.6-8.4 32.1 8z"/>
7
+ <path fill="#fff" stroke="#000" stroke-linejoin="round" stroke-width=".8" d="m280.3 328.7-.2 3.5s-6.2-1.8-8.2-5.3c3.6-1 8.5 1.9 8.4 1.8z"/>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ng" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <path fill="#fff" d="M0 0h640v480H0z"/>
4
+ <path fill="#008753" d="M426.6 0H640v480H426.6zM0 0h213.3v480H0z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,129 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-ni" viewBox="0 0 640 480">
2
+ <defs>
3
+ <linearGradient id="f" x1="498.7" x2="500.6" y1="289.1" y2="283.4" gradientUnits="userSpaceOnUse">
4
+ <stop offset="0" stop-color="#510000"/>
5
+ <stop offset=".3" stop-color="#8a0000"/>
6
+ <stop offset="1" stop-color="#a00"/>
7
+ </linearGradient>
8
+ <linearGradient id="g" x1="501.4" x2="502.9" y1="291.4" y2="287.4" gradientUnits="userSpaceOnUse">
9
+ <stop offset="0" stop-color="#ff2a2a"/>
10
+ <stop offset="1" stop-color="red"/>
11
+ </linearGradient>
12
+ <linearGradient id="b" x1="484.8" x2="484.8" y1="311.7" y2="317.6" gradientUnits="userSpaceOnUse">
13
+ <stop offset="0" stop-color="#F5F549"/>
14
+ <stop offset="1" stop-color="#97C924"/>
15
+ </linearGradient>
16
+ <linearGradient id="a">
17
+ <stop offset="0" stop-color="#025"/>
18
+ <stop offset=".5" stop-color="#04a"/>
19
+ <stop offset="1" stop-color="#025"/>
20
+ </linearGradient>
21
+ <linearGradient xlink:href="#a" id="h" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
22
+ <linearGradient xlink:href="#b" id="v" x1="484.8" x2="484.8" y1="311.7" y2="317.6" gradientUnits="userSpaceOnUse"/>
23
+ <linearGradient xlink:href="#a" id="o" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
24
+ <linearGradient xlink:href="#a" id="p" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
25
+ <linearGradient xlink:href="#a" id="q" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
26
+ <linearGradient xlink:href="#a" id="r" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
27
+ <linearGradient xlink:href="#b" id="u" x1="484.8" x2="484.8" y1="311.7" y2="317.6" gradientUnits="userSpaceOnUse"/>
28
+ <linearGradient xlink:href="#a" id="x" x1="98.9" x2="125" y1="1440.2" y2="1440.2" gradientTransform="scale(4.45715 .22436)" gradientUnits="userSpaceOnUse"/>
29
+ <linearGradient xlink:href="#a" id="j" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
30
+ <linearGradient xlink:href="#a" id="l" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
31
+ <linearGradient xlink:href="#a" id="m" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
32
+ <linearGradient xlink:href="#a" id="i" x1="444.5" x2="634.4" y1="317.5" y2="317.5" gradientUnits="userSpaceOnUse"/>
33
+ <linearGradient xlink:href="#b" id="s" x1="484.8" x2="484.8" y1="311.7" y2="317.6" gradientUnits="userSpaceOnUse"/>
34
+ <linearGradient xlink:href="#a" id="y" x1="47.9" x2="61.7" y1="3054.2" y2="3054.2" gradientTransform="scale(9.12405 .1096)" gradientUnits="userSpaceOnUse"/>
35
+ <clipPath id="c">
36
+ <path d="m500 226.4-63.7 110.3h127.4z"/>
37
+ </clipPath>
38
+ </defs>
39
+ <path fill="#0067c6" d="M0 0h640v480H0z"/>
40
+ <path fill="#fff" d="M0 160h640v160H0z"/>
41
+ <path fill="#c8a400" d="m248 239.5 8 .5v-1.2l-3-.2.2-3.8 3.3-2.4.1-1.5-3.5 2.5c-.1-.8-.6-1.7-1.4-2-.8-.2-1.6-.2-2.3.3-.8.6-1 1.6-1 2.5l-.4 5.3zm1.2-1.1.3-4c.1-.6.2-1.4.8-1.8a1 1 0 0 1 1.5.5c.4 1 .2 2.1.1 3.2l-.1 2.2-2.6-.1zm-.2-11.2 7.8 1.8 1.8-7.6a198 198 0 0 1-1.1-.2l-1.5 6.4-2.4-.5 1.4-5.8-1.1-.3-1.4 5.8-2-.5 1.4-6.2-1.2-.2-1.7 7.3zm2.8-10.5 7.6 2.7.4-1.1-3-1 1.2-3.5c.2-1 .4-2-.1-3a2.5 2.5 0 0 0-2-1c-1 0-1.6.7-2 1.5-.6 1-1 2.2-1.3 3.4l-.8 2zm1.5-.7 1.2-3.4c.3-.6.6-1.3 1.3-1.5a1 1 0 0 1 1.2.9c.2 1-.3 2-.6 3l-.7 1.9-2.4-.9zm2.7-9 4.3 2.6c.8.4 1.8.6 2.7.2a6.5 6.5 0 0 0 2.4-3c.4-1 .8-2.2.2-3.2-.6-1-1.7-1.4-2.7-2l-2.7-1.6-.6 1 4 2.4c.7.4 1.2 1 1.1 1.9a6 6 0 0 1-1.2 2.5c-.4.6-1.2 1.1-2 1-.8-.2-1.5-.8-2.2-1.2l-2.7-1.5-.6 1zm5.8-9.3 6.3 4.8 3-3.8c.6-.9 1-2 .7-3a2.5 2.5 0 0 0-2-1.4c-.5 0-1 .3-1.2.4.2-.9-.5-1.7-1.2-1.9-1-.3-2 .3-2.6 1l-2 2.5-1 1.4zm1.6-.3c.7-1 1.4-2 2.2-2.8.4-.4 1-1 1.5-.6.5.2.7.9.4 1.3-.4.9-1 1.5-1.6 2.3l-.8 1.1-1.7-1.3zm2.6 2 2.3-3c.4-.4 1-1 1.6-.8.6.1 1 .7.8 1.3-.3 1-1.1 1.8-1.8 2.7l-1 1.3-2-1.5zm3-10.2 5.5 5.8 4.7-4.5-.8-.8-3.8 3.6h-.1l-4.7-5zm7-6.2 4.9 6.3 1-.7-5-6.3zm7.2-4.9a6.7 6.7 0 0 0-2 1.8 3.6 3.6 0 0 0-.1 4.2 4.1 4.1 0 0 0 1.6 1.5 3.6 3.6 0 0 0 2 .4 6.5 6.5 0 0 0 2.7-1 5.4 5.4 0 0 0 2-2c.4-.8.5-1.6.3-2.4l-1 .4c.2 1.6-.8 2.4-2 3-1.8 1.2-3.5 1.1-4.6-.5-1.1-1.9 0-3.4 1.6-4.4 1.1-.7 2.2-1.2 3.2-.5l.9-.8a3.2 3.2 0 0 0-2-.6c-.9 0-1.7.4-2.6 1zm9.5-4.7-.9 9 1.3-.5.2-2.8 4-1.6 2.2 1.8 1.2-.5-6.8-5.9-1.2.5zm1 1 2.7 2.2-3 1.2.3-3.5zm16.5-6 .5 8 4.3-.2c1.2-.2 2.4-.4 3.1-1.4 1-1 1.2-2.7.7-4.1a3.5 3.5 0 0 0-2.7-2.4c-1.2-.2-2.4 0-3.6 0l-2.3.2zm1.2 1.1 3.5-.1a3 3 0 0 1 1.8.5c.8.6 1.3 1.5 1.2 2.5a2.7 2.7 0 0 1-2 2.4c-.6.2-1.3.2-1.9.3l-2.2.1-.4-5.7zm10-1.5-.5 8 7.8.4v-1.1l-6.6-.4.1-2.4 6 .3v-1.1l-5.9-.3.1-2.2 6.4.4v-1.2l-7.5-.4zm20.8 3.3-2.9 7.5 1 .4 2.4-6v-.2l.2.3 2.8 8 1.3.5 2.9-7.5-1-.4-2.3 6-.1.2-.2-.3-2.7-8zM353 176l-3.7 7-1-.5 3.6-7.1zm6 3.5a6.7 6.7 0 0 0-2.4-1 3.6 3.6 0 0 0-4 1.5 4.1 4.1 0 0 0-.6 2.1c0 .7.1 1.4.6 2.1.4.7 1 1.3 2 2a6 6 0 0 0 2.7 1 3.5 3.5 0 0 0 2.2-.7l-.8-.9c-1.4 1-2.5.3-3.6-.4-1.8-1.2-2.5-2.8-1.4-4.5 1.2-1.8 3.1-1.3 4.7-.3 1 .7 2 1.5 1.8 2.7l1 .4a3.2 3.2 0 0 0-.3-2c-.4-.8-1-1.4-1.9-2zm7.6 5.7-8.3 3.4 1 .9 2.6-1 3.3 2.8-.7 2.7 1 .9 2.1-8.8-1-.9zm-.3 1.4-.8 3.4-2.5-2 3.3-1.4zm6.4 4.2-6.2 5 .7 1 2.5-2 2.4 3-.7 4 .9 1.1.8-4.2c.7.5 1.7.8 2.5.4.7-.4 1.4-1 1.4-1.8 0-1.1-.7-2-1.3-2.8l-3-3.7zm-.2 1.6 2.6 3.2c.4.6.9 1.4.4 2-.3.6-1.1.6-1.6.2-1-.7-1.6-1.7-2.4-2.6l-1-1.1 2-1.7zm9.5 11.1-9 .4.7 1.2 2.8-.1 2.2 3.8-1.6 2.3.7 1.2 4.9-7.6-.7-1.2zm-.7 1.2-2 3-1.5-2.8 3.5-.2zm5.9 9.4c-.5-1.3-1.3-2.7-2.7-3.4a3.8 3.8 0 0 0-4.5 1c-1 1-1 2.5-.7 3.9.3 1.5 1 3 2 4.1l-.6.2.4 1.1 3.8-1.3-1.5-4.1-.8.3 1 3-1.2.5a7 7 0 0 1-2.1-3.8c-.3-1.1-.3-2.4.5-3.2 1-1 2.6-1.3 3.7-.5s1.7 2.1 2 3.4c.3.9.2 1.9-.4 2.6-.2 0 0 .3.1.4l.3.5a2.8 2.8 0 0 0 1.1-2.2 7 7 0 0 0-.4-2.5zm2.3 6.3-4.5.8a4.1 4.1 0 0 0-1.9.8 2.5 2.5 0 0 0-.8 1.5v2.4c.3 1 .6 1.7 1 2.3.3.6.7 1 1.2 1a4 4 0 0 0 2 0l4.5-.8-.2-1.1-4.4.8c-2 .4-2.6-.6-3-2.4-.3-1.8 0-3 1.9-3.3l4.4-.9-.2-1.1zm2.4 13.6-8.3-3.6.1 1.4 2.6 1 .3 4.4-2.4 1.5.1 1.3 7.7-4.7-.1-1.3zm-1.2.7-3 1.9-.2-3.2 3.2 1.3zm-136.5 20-1.2.3 1.3 4.9 1.2-.3zm131.6 0 1.2.3-1.3 4.9-1.2-.3zm-119.2 20.5-9 1 .8 1.1 2.8-.3 2.4 3.6-1.4 2.5.8 1 4.3-7.8-.7-1.1zm-.7 1.3-1.7 3-1.8-2.6 3.5-.4zm4.1 3.6-5.7 5.3.8.8 4.8-4.5-2.6 7 1 .9 6.8-2-4.7 4.3.8.8 5.7-5.3-1.2-1.2-7 2 2.6-6.7zm8.3 8.4-4.8 6.5 6.2 4.6.7-.9-5.3-4 1.5-2 4.7 3.7.7-1-4.7-3.5 1.3-1.7 5 3.8.7-1-6-4.5zm7.8 5.8-3.7 7 1 .6 1.5-2.8 3.4 1.8.8 4 1.3.7-.9-4.2c.9.3 2 .1 2.5-.6.5-.6.9-1.3.6-2.1-.2-1-1.3-1.6-2.1-2.1l-4.4-2.3zm.5 1.5 3.6 2c.6.4 1.3.9 1.2 1.6 0 .7-.7 1-1.3.9-1.2-.2-2.2-.9-3.2-1.4l-1.5-.8 1.2-2.3zm8.6 3.2-3 7.4 1 .5 3-7.4zm7.2 2.5a6.7 6.7 0 0 0-2.6-.4 3.6 3.6 0 0 0-3.4 2.6 4.1 4.1 0 0 0 0 2.1c0 .8.4 1.4 1 2a6 6 0 0 0 2.4 1.3 5.4 5.4 0 0 0 2.9.2 3.4 3.4 0 0 0 2-1.2l-1-.6c-1 1.3-2.3 1-3.6.5-2-.7-3.1-2-2.5-4 .7-2 2.7-2 4.4-1.5 1.2.4 2.3 1 2.4 2.1l1.2.2a3.2 3.2 0 0 0-.9-2 5.4 5.4 0 0 0-2.3-1.3zm8 1.8-5.2 7.3 1.3.2 1.6-2.3 4.4.7.9 2.6 1.3.2-3-8.5-1.3-.2zm.5 1.3 1.2 3.4-3.2-.5 2-2.9zm18.3-1.2c-1 .1-1.7.4-2.4.9a3.6 3.6 0 0 0-1.7 3.9c.1.7.4 1.3 1 2 .4.5 1 .8 1.8 1 .7.2 1.7.2 2.8 0 1-.2 2-.6 2.6-1.2a3.4 3.4 0 0 0 1.1-2h-1.2c-.3 1.6-1.5 2-2.8 2.2-2.1.4-3.7-.3-4.1-2.3-.4-2.1 1.3-3.1 3-3.5 1.3-.2 2.5-.3 3.2.7l1-.4a3.2 3.2 0 0 0-1.6-1.3 5.4 5.4 0 0 0-2.7 0zm5.3-1 2.3 7.7 7.5-2.2-.4-1.1-6.3 1.9-.7-2.4 5.7-1.7-.3-1-5.7 1.6-.6-2 6-1.8-.3-1.1-7.2 2.1zm8.7-2.7 3.3 7.3 1-.5-2.8-6 7.8 3.5h.5l1-.5-3.4-7.3-1 .5 2.8 6-8-3.6-1.2.6zm8.8-4.1.6 1 2.8-2h.2l3.7 5.7 1-.7-3.7-5.6v-.1l2.9-2-.6-.9zm8-5.6 5.4 6 .9-.9-2.1-2.3 2.8-2.6 4 .6 1.2-1-4.3-.6c.5-.7.7-1.8.2-2.6-.4-.7-1-1.3-1.9-1.2-1 0-2 .8-2.7 1.4l-3.5 3.3zm1.6.1 3-2.8c.6-.4 1.4-.9 2-.5.7.3.7 1.1.3 1.6-.6 1-1.5 1.7-2.4 2.6l-1.1 1-1.8-2zm7.7-9.4 3.6 8.3.8-1-1-2.6 2.7-3.4 2.7.6.9-1-8.8-2-.9 1.1zm1.4.3 3.5.7-2 2.5-1.5-3.2zm2.1-4.8 6.7 4.3 3.5-5.4-1-.6-2.7 4.3-.1.2h-.1l-5.7-3.8z"/>
42
+ <g clip-path="url(#c)" transform="matrix(.8 0 0 .8 -80 0)">
43
+ <path fill="#fff" d="m500 226.4-31.5 54.5-15.4 26.7h93.8l-14.7-25.4-32.2-55.8z"/>
44
+ <g id="e">
45
+ <g id="d">
46
+ <path fill="#17c0eb" stroke="#17c0eb" stroke-width=".1" d="m500 226.4-2.4 4 2.4 55 2.4-55z" opacity=".6"/>
47
+ <path fill="#fff" d="M500 277.5h-.1l.1 3 .1-3h-.1z"/>
48
+ </g>
49
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(72 500 285.5)"/>
50
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(144 500 285.5)"/>
51
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(-144 500 285.5)"/>
52
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(-72 500 285.5)"/>
53
+ </g>
54
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(8 500 285.5)"/>
55
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(16 500 285.5)"/>
56
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(24 500 285.5)"/>
57
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(32 500 285.5)"/>
58
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(40 500 285.5)"/>
59
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(48 500 285.5)"/>
60
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(56 500 285.5)"/>
61
+ <use xlink:href="#e" width="100%" height="100%" transform="rotate(64 500 285.5)"/>
62
+ <path fill="red" d="M500 265.8a44.2 44.2 0 0 0-29 10.8L456.4 302a45 45 0 0 0-.8 8.3h5a39.4 39.4 0 0 1 78.7 0h5a45 45 0 0 0-.7-8.3L529 276.6a44.3 44.3 0 0 0-29-10.8z"/>
63
+ <path fill="#f60" d="M500 266.7a43.5 43.5 0 0 0-30.3 12.2l-12 20.9a43.6 43.6 0 0 0-1.3 10.4h4.3a39.4 39.4 0 0 1 78.6 0h4.3a43.9 43.9 0 0 0-1.3-10.5l-12-20.8a43.5 43.5 0 0 0-30.3-12.2z"/>
64
+ <path fill="#ff0" d="M500 267.5a42.7 42.7 0 0 0-32 14.3l-8.7 15a42.7 42.7 0 0 0-2 13.5h3.3a39.4 39.4 0 0 1 78.7 0h3.5c0-4.7-.8-9.2-2.1-13.4l-8.8-15.1a42.6 42.6 0 0 0-31.9-14.3z"/>
65
+ <path fill="#0f0" d="M500 268.3a42 42 0 0 0-34.9 18.6l-2.8 4.9a41.8 41.8 0 0 0-4.3 18.5h2.7a39.4 39.4 0 0 1 78.6 0h2.7a41.8 41.8 0 0 0-4.3-18.5l-2.8-5a42 42 0 0 0-34.9-18.6z"/>
66
+ <path fill="#0cf" d="M500 269a41.2 41.2 0 0 0-41.2 41.3h1.9a39.4 39.4 0 0 1 78.6 0h1.9A41.2 41.2 0 0 0 500 269z"/>
67
+ <path fill="#00f" d="M500 269.8a40.4 40.4 0 0 0-40.4 40.4h1.4a39 39 0 1 1 78 0h1.4A40.4 40.4 0 0 0 500 270z"/>
68
+ <path fill="purple" d="M500 270.7a39.6 39.6 0 0 0-39.6 40.3h.8v-.8a38.8 38.8 0 1 1 77.6.8h.8v-.8a39.6 39.6 0 0 0-39.6-39.6z"/>
69
+ <path fill="#510000" d="M500.4 288.1c-.7 0-1.2-.5-1.8-.6a2.2 2.2 0 0 0-.7 2.1c.3.1.3.4.9.9s.5.7.4 2c0 .4.1 1.5.6 1.6.5.1 1-.3 1.1-1.2.1-.7.4-1.2.7-1.6.3-1.9-.2-2.6-1.2-3.2z"/>
70
+ <path fill="red" d="M497.2 283.5c-.6 0-1.6 1-2 .5-.2-.3-.3-.9 0-1.4a4.8 4.8 0 0 1 2.2-2.3c2.3-1.4 3.9-1 5 1 1.1 1.8 2.2 3.8 2.3 5.4 0 .5.3 1.4-.2 1.9-1.3 1.4-4.6-1.5-6.5-1-.6.1-1.4.6-2 .2-.4-.3 0-1 .3-1.3.6-.5 1.5-2.4 1.4-3.2 0-.4 0 .2-.5.2z"/>
71
+ <path fill="url(#f)" d="M497 282.6c-1.2.4-1 1-1.6 1.5.2.1.8.3 1.4-.3.2-.2.5-.3.7-.3l-.7.7a5.2 5.2 0 0 0-1.4 1.8c-.3.8-.4 1.7-.3 1.8 0 0 .4.8 1.5 1.2 2 .8 2.4 2.5 4.5 2.5 1.6 0 1.4-1.1 2.7-.9 1 .2 1.7-.7.6-1.2a14 14 0 0 0-5.4 0c-.4-4 0-2.6-.1-4.4-.1-1.7-.7-1.8 0-3.3-.5 1-1.2.8-2 .8z"/>
72
+ <path fill="#ff2a2a" d="m501 279.8-.1.6.3 1 .2 1c0 .3.4.4.7.6.4.3 0 1 .3 1.1.2 0 .5-1 .5-1.2v-.7a15.3 15.3 0 0 0-.5-.9 3.6 3.6 0 0 0-.2-.3 4.2 4.2 0 0 0-.8-.9 4 4 0 0 0-.3-.2l-.2-.1z"/>
73
+ <path fill="url(#g)" d="m501.3 287.4-2-.7c-1.3-.4-2.6-1.2-3.5-.8-.3.1-.3.4-.4.9 0 .5-.5 1.3 0 1 .6-.4 2.4.8 3 1.1.3.2 1 .6 1.1 1 .2.6 0 1.8 0 2.4 0 .5.2 1.8.7 2 .6.1 1.1-.4 1.3-1.3.3-.9.4-1.4.8-1.9s.8-.8 1.3-.9c.6 0 1.4.5 1.4-.2 0-.4-.4-.8-.2-1.4.1-.5-.4-.4-.9-.6l-2.7-.6z"/>
74
+ <path fill="#910000" d="M498.4 288.9c-.4-.2-2.3-1.5-3-1-.3 0-.4 0-.4-.3l.2-.9c0-.3.2-.8.5-1 .7-.6 2.3.5 3.1.8l-.4 2.4z"/>
75
+ <path fill="#ff3a3a" d="M501.8 291.4c.9-1.6 1.5-1.4 2.6-1.4.4 0 .5-.3.4-.7-.3.6-1.7 0-2.5.3-1.5.7-1.2 3.7-2 4 .8.7 1.1-1.7 1.5-2.2z"/>
76
+ <g fill="url(#h)">
77
+ <path fill="#fff" d="m453.1 307.6-10 17.3H557l-10-17.2h-93.8z"/>
78
+ <g id="n" fill="url(#i)">
79
+ <path id="k" fill="url(#j)" d="M449.7 321.4a36 36 0 0 0-4.7.3l-.5.9c2.4-.3 4.7-.7 7.2-.7 3.2 0 6.2.8 9.7.8h4.6c3.5 0 6.4-.8 9.7-.8 3.3 0 6.3.8 9.8.8h4.6c3.5 0 6.4-.8 9.7-.8 3.3 0 6.3.8 9.8.8h4.5c3.5 0 6.5-.8 9.8-.8 3.3 0 6.3.8 9.8.8h4.5c3.5 0 6.5-.8 9.8-.8 2.6 0 5 .5 7.5.7l-.5-1a38 38 0 0 0-4.4-.2h-4.5c-3.5 0-6.5.7-9.8.8-3.3 0-6.3-.8-9.8-.8H522c-3.5 0-6.5.7-9.8.8-3.3 0-6.3-.8-9.8-.8H498c-3.5 0-6.5.7-9.8.8-3.3 0-6.3-.8-9.8-.8h-4.5c-3.5 0-6.5.7-9.8.8-3.3 0-6.2-.8-9.7-.8h-4.6z"/>
80
+ <use xlink:href="#k" width="100%" height="100%" y="-1.1" fill="url(#l)"/>
81
+ <use xlink:href="#k" width="100%" height="100%" y="-2.2" fill="url(#m)"/>
82
+ </g>
83
+ <use xlink:href="#n" width="100%" height="100%" y="-3.3" fill="url(#o)"/>
84
+ <use xlink:href="#n" width="100%" height="100%" y="-6.7" fill="url(#p)"/>
85
+ <path fill="url(#q)" d="M453.2 307.5v.2h93.7l-.1-.2h-93.6zm-.2.3-.1.3H547l-.1-.3h-94zm-.2.4-.2.3h94.8l-.2-.3h-94.4zm-.3.5-.3.5h95.6l-.3-.5h-95zm-.4.7-.3.5h96.4l-.3-.5h-95.8zm-.4.7-.2.4h97l-.2-.4h-96.6zm-.4.7-.2.4H549l-.3-.4h-97.4zm-.4.7-.3.6h98.8l-.3-.6H451z"/>
86
+ <path fill="url(#r)" d="M457.4 312.3c3.4.7 3.7 0 3.7 0zm81.5 0s.3.7 3.7 0z"/>
87
+ </g>
88
+ <g fill="#ccd11e">
89
+ <g id="t">
90
+ <path fill="url(#s)" d="M530.6 297c-1.7 0-2.2.9-2.2.9-2.7 10.6-11.8 21.3-22.6 21.3h-8V330h61.4l-6.2-11c-9.7-1.4-17.6-11.3-20.1-21.1 0 0-.6-.9-2.3-.9z"/>
91
+ <path fill="#97c924" d="M530.6 297.5c-.8 0-1.2.1-1.5.3l-.3.3a33.6 33.6 0 0 1-8.4 14.7c-4 4.1-9 6.9-14.6 6.9h-7.7v9.9H559l-5.7-10c-4.7-.7-9-3.2-12.4-6.8a33.6 33.6 0 0 1-8.4-14.7l-.3-.3a2.8 2.8 0 0 0-1.6-.3z"/>
92
+ <path fill="#ede71f" d="M530.6 297.5h.4v10.8a13 13 0 0 1-2 6.4c-.5 1.6-1 1-2.3 2.9a25.4 25.4 0 0 1-5.2 1.2c-2.5.4-8 .8-10.9.1a23 23 0 0 0 9.8-6 30.6 30.6 0 0 0 2.1-2.5 33.7 33.7 0 0 0 3-4.4l1-2a33.9 33.9 0 0 0 1.3-2.9 29.8 29.8 0 0 0 1-3l.3-.3.6-.2 1-.1z"/>
93
+ <path fill="#c6cb24" d="M530 298.9c-.5 6-2.3 13.2-6.7 17.8-1.6 1.3-3.7 2.6-5.6 2.3 6.7-5.5 10.8-14 12.2-20.1z"/>
94
+ <path fill="#9ecb34" d="M524.5 309.3c-1 2.7-4.8 6.7-8.8 10h-2.9c2.5-.2 8.3-5 11.7-10z"/>
95
+ </g>
96
+ <use xlink:href="#t" width="100%" height="100%" x="-15.3"/>
97
+ <g fill="#c6cb24">
98
+ <path fill="url(#u)" d="M502.2 298c2.8 10.5 11.8 21.2 22.6 21.2h8.1V330h-65.8v-10.8h8c10.8 0 19.9-10.7 22.6-21.3 0 0 .6-.8 2.3-.8 1.7 0 2.2.8 2.2.8z"/>
99
+ <path fill="#97c924" d="M500 297.5c.8 0 1.2.2 1.5.3l.3.3a33.6 33.6 0 0 0 8.4 14.7c4 4.1 9 6.9 14.6 6.9h7.7v9.9h-65v-10h7.7c5.5 0 10.6-2.7 14.6-6.8a33.6 33.6 0 0 0 8.3-14.7l.3-.3a3 3 0 0 1 1.6-.3z"/>
100
+ <path fill="#ede71f" d="M499.3 297.5a3.4 3.4 0 0 0-.3 0l-.6.3-.3.3a28.9 28.9 0 0 1-1 3 34.2 34.2 0 0 1-1.2 3 34.2 34.2 0 0 1-1 1.9 33.6 33.6 0 0 1-3 4.4 30.7 30.7 0 0 1-2.1 2.4 23 23 0 0 1-9.8 6.1c2.8.7 4 0 6.5-.4 2-.3 4.2-.6 6-1.2 1.5-2 1-1.3 1.5-2.9 1.2-2.2 3-4.2 3.4-6.7 1.6-3 1.9-8.6 1.9-10.2z"/>
101
+ <path d="M499.3 298.9c-.4 6-2.3 13.2-6.7 17.8-1.6 1.3-3.6 2.6-5.6 2.3 6.8-5.5 10.9-14 12.3-20.1z"/>
102
+ <path fill="#9ecb34" d="M493.8 309.3a31 31 0 0 1-8.8 10h-2.8c2.5-.2 8.2-5 11.6-10z"/>
103
+ <path fill="#ede71f" d="m501 297.6.5.2.4.3a32.3 32.3 0 0 0 1 3 33.6 33.6 0 0 0 1.2 3l1 1.9a33.6 33.6 0 0 0 3 4.4 30.7 30.7 0 0 0 2.1 2.4 24 24 0 0 0 9.8 6.5c-7.3 0-10.4-.6-13-4a19 19 0 0 1-4.2-7c-.5-2-2-6.5-1.9-10.7z"/>
104
+ <path d="M501.5 298.9c.4 6 2.2 12 6.6 16.6 1.6 1.4 3.6 2.6 5.6 2.3a31.1 31.1 0 0 1-12.2-18.9z"/>
105
+ </g>
106
+ <g id="w">
107
+ <path fill="url(#v)" d="M484.8 297c-1.8 0-2.3.9-2.3.9-2.5 9.8-11.8 22.3-21.5 23.8l-4.8 8.3h49v-11.3c-8.8-2.4-15.9-11.7-18.2-20.8 0 0-.5-.8-2.3-.8z"/>
108
+ <path fill="#97c924" d="M484.8 297.5c-.8 0-1.3.2-1.6.3l-.3.3a43.4 43.4 0 0 1-8.1 15c-3.4 4.3-9.7 8.6-14 9l-4.3 7.5h48v-10.7a23.2 23.2 0 0 1-9.5-6 33.6 33.6 0 0 1-8.4-14.8l-.3-.3a2.9 2.9 0 0 0-1.5-.3z"/>
109
+ <path fill="#93bc30" d="M483.4 298.9c-.6 9-5.6 20.5-11.3 22.4-1.9.7-5.1.9-6.2 1a36 36 0 0 0 17.6-23.4z"/>
110
+ <path fill="#ede71f" d="M484.8 297.5h-.5v10.8c0 2.3.9 4.2 2 6.4l.2.5c.5 1.1.8 1.5 2.3 2.7a22 22 0 0 0 14.8 4c-1.1-.9-2.3-1.7-3.4-2.4l4.5-.5a23 23 0 0 1-9.7-6.2 30.5 30.5 0 0 1-1.4-1.5l-.6-.8a35 35 0 0 1-3.2-4.5 34.2 34.2 0 0 1-1-2 34 34 0 0 1-1.6-3.9 31.7 31.7 0 0 1-.6-2l-.3-.3a2.2 2.2 0 0 0-.6-.2 3.6 3.6 0 0 0-1-.1z"/>
111
+ <path d="M485.4 298.9c.5 6 2.3 13.2 6.7 17.8 1.6 1.3 3.6 2.6 5.6 2.3a38.5 38.5 0 0 1-12.3-20.1z"/>
112
+ <path fill="#9ecb34" d="M489.6 307.3a35 35 0 0 0 14.6 14.9h2.5c-4.4-2.4-11.5-5.8-17-15z"/>
113
+ </g>
114
+ <use xlink:href="#w" width="100%" height="100%" x="-15.4" fill="#c6cb24"/>
115
+ </g>
116
+ <path fill="#fff" d="M556.5 324.7c-.6.2-4.4-.2-6.4 0l-1.3.3h-3.3c-3.6 0-6.7 1-10.1 1-3.4 0-6.5-1-10-1H522c-3.6 0-6.7 1-10.1 1-3.4 0-6.5-1-10-1h-3.4c-3.6 0-6.7 1-10 1-3.5 0-6.5-1-10.1-1H475c-3.6 0-6.6 1-10 1-3.5 0-6.5-1-10.1-1h-3.4c-2.8 0-6.2.6-8.9.8l-6.3 10.9h127.4z"/>
117
+ <path fill="url(#x)" d="M548 323.1h-.6c-3.2.1-5.6 1.1-11.2 1.1s-6.2-1-12.6-.8c-6 0-8.4 1.2-11.7 1.2-3.2 0-8.4-.7-12.5-.3-4 .4-8.8 1.3-12 1.3-3.9 0-7.8-.7-11.8-.3-4.1.4-6 1.5-11.1 1.5-4.4 0-9-.7-12.8-.7-3.4 0-7.2 1-10 1.4l-.9 1.5c2.3-.3 8.6-1.3 10.8-1.3 2.4 0 10.7.5 15.3.3 4.7-.1 5.2-1.2 10.7-1.2 3.8 0 6.6.4 10.5.4 2.5 0 4.7-1.2 8.4-1.2l2.8-.1c3.1-.5 8.4 0 12 .2 3.3.2 5.5-.6 9-.7l4.4-.1c3.5-.2 6.4.6 9.7.6 3.2-.2 6.4-1 9.8-1l4.5-.2c2.3 0 5.9 0 8.3.5l-.8-1.4c-2.4-.1-5.3-.7-8.2-.7z"/>
118
+ <g id="A">
119
+ <path id="z" fill="url(#y)" d="M450.3 334.8c-3.4 0-6.4.8-9.6.9a31.8 31.8 0 0 1-3.6-.3l-.5.8h6c3.5 0 6.4-.8 9.6-.9 3.3.1 6.2 1 9.7 1h4.5c3.4 0 6.4-.9 9.6-1 3.3.1 6.3 1 9.7 1h4.5c3.5 0 6.4-.9 9.7-1 3.2.1 6.1 1 9.6 1h4.5c3.4 0 6.4-.9 9.7-1 3.2.1 6.2 1 9.6 1h4.5c3.5 0 6.4-.9 9.6-1 3.3.1 6.2 1 9.7 1h4.5l1.8-.1-.5-.8c-1 .1-2.1.3-3.2.3-3.3 0-6.2-1-9.7-1h-4.5c-3.4 0-6.4 1-9.6 1-3.3-.1-6.2-1-9.7-1h-4.5c-3.4 0-6.4 1-9.6 1-3.3-.1-6.2-1-9.7-1h-4.5c-3.5 0-6.4 1-9.6 1-3.3-.1-6.2-1-9.7-1h-4.5c-3.4 0-6.4 1-9.6 1-3.3-.1-6.2-1-9.7-1h-4.5z"/>
120
+ <use xlink:href="#z" width="100%" height="100%" y="-1.3"/>
121
+ <use xlink:href="#z" width="100%" height="100%" y="-2.6"/>
122
+ </g>
123
+ <use xlink:href="#A" width="100%" height="100%" y="-3.9"/>
124
+ <use xlink:href="#A" width="100%" height="100%" y="-7.7"/>
125
+ <path fill="#97c924" d="m443.9 324.7-2.5 4.2c2.9-.5 7.1-1.7 10.7-1.7 3.6 0 8 .9 12.4 1 5 0 7-1.2 11-1.6 4.1-.4 8 .5 12 .6 3.1 0 7.9-1.1 12-1.5 4-.5 7.7.3 12.5.3 4.9.1 5.7-1.2 11.6-1.3 6.4-.1 7 .9 12.6.9 4.2.2 7.9-.9 11.7-1.1 3.8-.3 5.5 0 8.3 0l-1.9-3.2-101.3 2.3z"/>
126
+ <path fill="#fff" d="m550 324.6 4 .3a91.4 91.4 0 0 0 2.9.3l-.4-.5c-.6.2-4.4-.2-6.4 0z"/>
127
+ </g>
128
+ <path fill="#c8a400" d="m320 179.9-25.7 44.5L268 270h104l-25.7-44.6L320 180zm0 2.4 25.2 43.7 24.7 42.8h-99.8l25.2-43.8z"/>
129
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-nl" viewBox="0 0 640 480">
2
+ <path fill="#21468b" d="M0 0h640v480H0z"/>
3
+ <path fill="#fff" d="M0 0h640v320H0z"/>
4
+ <path fill="#ae1c28" d="M0 0h640v160H0z"/>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-no" viewBox="0 0 640 480">
2
+ <path fill="#ed2939" d="M0 0h640v480H0z"/>
3
+ <path fill="#fff" d="M180 0h120v480H180z"/>
4
+ <path fill="#fff" d="M0 180h640v120H0z"/>
5
+ <path fill="#002664" d="M210 0h60v480h-60z"/>
6
+ <path fill="#002664" d="M0 210h640v60H0z"/>
7
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-np" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0-16h512v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <path fill="#fff" d="M0 0h640v480H0z"/>
8
+ <g clip-path="url(#a)" transform="translate(0 15) scale(.9375)">
9
+ <g fill-rule="evenodd">
10
+ <path fill="#ce0000" stroke="#000063" stroke-width="13.8" d="M6.5 489.5h378.8L137.4 238.1l257.3.3L6.6-9.5v499z"/>
11
+ <path fill="#fff" d="m180.7 355.8-27 9 21.2 19.8-28.5-1.8 11.7 26.2-25.5-12.3.5 28.6-18.8-20.9-10.7 26.6-9.2-26.3-20.3 20.6 1.8-27.7L49 409l12.6-25-29.3.6 21.5-18.3-27.3-10.5 27-9L32.2 327l28.4 1.8L49 302.6l25.6 12.3-.5-28.6 18.8 20.9 10.7-26.6 9.1 26.3 20.4-20.6-1.9 27.7 27-11.4-12.7 25 29.4-.6-21.5 18.3zm-32.4-184.7-11.3 8.4 5.6 4.6a93.8 93.8 0 0 0 30.7-36c1.8 21.3-17.7 69-68.7 69.5a70.6 70.6 0 0 1-71.5-70.3c10 18.2 16.2 27 32 36.5l4.7-4.4-10.6-8.9 13.7-3.6-7.4-12.4 14.4 1-1.8-14.4 12.6 7.4 4-13.5 9 10.8 8.5-10.3 4.6 14 11.8-8.2-1.5 14.3 14.2-1.7-6.7 13.2 13.7 4z"/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-nr" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M-54.7 0H628v512H-54.7z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)" transform="translate(51.3) scale(.9375)">
8
+ <path fill="#002170" d="M-140 0H884v512H-140z"/>
9
+ <path fill="#ffb20d" d="M-140 234.1H884V278H-140z"/>
10
+ <path fill="#fff" d="m161.8 438-33-33-10.5 45.4-12-45-31.9 34 12.1-45L42 407.9l33-33-45.4-10.6 45-12-34-31.8 45 12L72 288l33 33 10.6-45.4 12 45 31.8-34-12 45 44.5-13.5-33 33 45.4 10.5-45 12 34 32-45-12.2z"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-nu" viewBox="0 0 640 480">
2
+ <path fill="#fedd00" d="M0 0h640v480H0z"/>
3
+ <path fill="#012169" d="M0 0h320v240H0z"/>
4
+ <path fill="#fff" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"/>
5
+ <path fill="#c8102e" d="M212 140.5 320 220v20l-135.5-99.5zm-92 10 3 17.5-96 72H0zM320 0v1.5l-124.5 94 1-22L295 0zM0 0l119.5 88h-30L0 21z"/>
6
+ <path fill="#fff" d="M120.5 0v240h80V0zM0 80v80h320V80z"/>
7
+ <path fill="#c8102e" d="M0 96.5v48h320v-48zM136.5 0v240h48V0z"/>
8
+ <circle cx="160" cy="120" r="40.8" fill="#012169"/>
9
+ <path fill="#fedd00" d="m160 79.2 24 73.8-62.8-45.6h77.6L136 153M66.7 98.3l14 43.4L43.9 115h45.7l-37 26.8m200.7-43.5 14.1 43.4-36.9-26.8h45.7l-37 26.8M160 178.3l14.1 43.4-37-26.8h45.7l-37 26.8M160 18.3l14.1 43.4-37-26.8h45.7l-37 26.8"/>
10
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-nz" viewBox="0 0 640 480">
2
+ <defs>
3
+ <g id="b">
4
+ <g id="a">
5
+ <path d="M0 0v.5L1 0z" transform="translate(0 -.3)"/>
6
+ <path d="M0 0v-.5L1 0z" transform="rotate(-36 .5 -.2)"/>
7
+ </g>
8
+ <use xlink:href="#a" transform="scale(-1 1)"/>
9
+ <use xlink:href="#a" transform="rotate(72 0 0)"/>
10
+ <use xlink:href="#a" transform="rotate(-72 0 0)"/>
11
+ <use xlink:href="#a" transform="scale(-1 1) rotate(72)"/>
12
+ </g>
13
+ </defs>
14
+ <path fill="#00247d" fill-rule="evenodd" d="M0 0h640v480H0z"/>
15
+ <g transform="translate(-111 36.1) scale(.66825)">
16
+ <use xlink:href="#b" width="100%" height="100%" fill="#fff" transform="matrix(45.4 0 0 45.4 900 120)"/>
17
+ <use xlink:href="#b" width="100%" height="100%" fill="#cc142b" transform="matrix(30 0 0 30 900 120)"/>
18
+ </g>
19
+ <g transform="rotate(82 525.2 114.6) scale(.66825)">
20
+ <use xlink:href="#b" width="100%" height="100%" fill="#fff" transform="rotate(-82 519 -457.7) scale(40.4)"/>
21
+ <use xlink:href="#b" width="100%" height="100%" fill="#cc142b" transform="rotate(-82 519 -457.7) scale(25)"/>
22
+ </g>
23
+ <g transform="rotate(82 525.2 114.6) scale(.66825)">
24
+ <use xlink:href="#b" width="100%" height="100%" fill="#fff" transform="rotate(-82 668.6 -327.7) scale(45.4)"/>
25
+ <use xlink:href="#b" width="100%" height="100%" fill="#cc142b" transform="rotate(-82 668.6 -327.7) scale(30)"/>
26
+ </g>
27
+ <g transform="translate(-111 36.1) scale(.66825)">
28
+ <use xlink:href="#b" width="100%" height="100%" fill="#fff" transform="matrix(50.4 0 0 50.4 900 480)"/>
29
+ <use xlink:href="#b" width="100%" height="100%" fill="#cc142b" transform="matrix(35 0 0 35 900 480)"/>
30
+ </g>
31
+ <path fill="#012169" d="M0 0h320v240H0z"/>
32
+ <path fill="#fff" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"/>
33
+ <path fill="#c8102e" d="M212 140.5 320 220v20l-135.5-99.5zm-92 10 3 17.5-96 72H0zM320 0v1.5l-124.5 94 1-22L295 0zM0 0l119.5 88h-30L0 21z"/>
34
+ <path fill="#fff" d="M120.5 0v240h80V0zM0 80v80h320V80z"/>
35
+ <path fill="#c8102e" d="M0 96.5v48h320v-48zM136.5 0v240h48V0z"/>
36
+ </svg>
@@ -0,0 +1,115 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-om" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)">
8
+ <path fill="#ef2d29" fill-rule="evenodd" d="M-3.3-21.6H699v553H-3.3z"/>
9
+ <path fill="#009025" fill-rule="evenodd" d="M174.6 317.3h535.7V525H174.6z"/>
10
+ <path fill="#fff" fill-rule="evenodd" d="M174.6-35.4h564.9v190h-565z"/>
11
+ <g stroke="#ef2d28">
12
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 111.3 -13.4)">
13
+ <rect width="138.2" height="85" x="17.7" y="467.7" stroke-width="1.4" rx="11.3" ry="11.8"/>
14
+ <rect width="131.1" height="78" x="21.3" y="471.3" stroke-width="1.3" rx="10.7" ry="10.9"/>
15
+ <path stroke-width="1.3" d="m65 396 9.7.5.4 5.8 8 5.3 6.2-6.7 7.5 5.3-7 5.8 1.7 8 8.8-.5V430l-7-.4-3.6 6.6 8 7.5-6.2 6.2-6.7-6.6-9.7 2.6.5 9.7-10.6 1-1.4-9.4-8.8-4.8-4.9 6.6-7.5-4.9 4.4-7.5-5.3-4.8H34l-.4-13.7 7.5.9 5.3-8-6.2-6.2 8-7 5.7 5.7 9.7-1.8L65 396z" transform="matrix(.68108 0 0 .5852 38 260.7)"/>
16
+ <ellipse cx="68.9" cy="426.8" stroke-width="1.3" rx="11.1" ry="9.9" transform="matrix(.65819 0 0 .70224 38.8 209.6)"/>
17
+ <path stroke-width="1.3" d="m39 474.8-10.7 10.6m17.8-10.6-10.7 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6L78 485.4m17.7-10.6L85 485.4m17.8-10.6L92 485.4m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m-17.7-10.6L78 485.4m46-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m0-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.7 10.6M85 474.8l10.6 10.6m-17.8-10.6 10.7 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6M85 474.8l10.6 10.6m-46-10.6 10.5 10.6m-17.7-10.6 10.7 10.6m-17.8-10.6L46 485.4m-17.8-10.6L39 485.4m0 49.6-10.6 10.7M46 535l-10.7 10.7M53.2 535l-10.7 10.7M60.2 535l-10.6 10.7M67.3 535l-10.6 10.7M74.4 535l-10.6 10.7M81.5 535 71 545.7M88.6 535 78 545.7M95.7 535 85 545.7m17.7-10.7L92 545.7m18-10.7-10.7 10.7M117 535l-10.6 10.7M88.6 535 78 545.7m46-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m0-10.7 10.6 10.7M127.6 535l10.6 10.7M120.5 535l10.6 10.7M113.4 535l10.6 10.7M106.3 535l10.6 10.7M99.2 535l10.7 10.7M92 535l10.7 10.7M85 535l10.6 10.7M78 535l10.6 10.7M70.9 535l10.6 10.7M63.8 535l10.6 10.7M56.7 535l10.6 10.7M85.1 535l10.6 10.7m-46-10.7 10.5 10.7M42.5 535l10.7 10.7M35.4 535l10.7 10.7M28.4 535 39 545.7"/>
18
+ </g>
19
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 19.1 -14)">
20
+ <rect width="138.2" height="85" x="17.7" y="467.7" stroke-width="1.4" rx="11.3" ry="11.8"/>
21
+ <rect width="131.1" height="78" x="21.3" y="471.3" stroke-width="1.3" rx="10.7" ry="10.9"/>
22
+ <path stroke-width="1.3" d="m65 396 9.7.5.4 5.8 8 5.3 6.2-6.7 7.5 5.3-7 5.8 1.7 8 8.8-.5V430l-7-.4-3.6 6.6 8 7.5-6.2 6.2-6.7-6.6-9.7 2.6.5 9.7-10.6 1-1.4-9.4-8.8-4.8-4.9 6.6-7.5-4.9 4.4-7.5-5.3-4.8H34l-.4-13.7 7.5.9 5.3-8-6.2-6.2 8-7 5.7 5.7 9.7-1.8L65 396z" transform="matrix(.68108 0 0 .5852 38 260.7)"/>
23
+ <ellipse cx="68.9" cy="426.8" stroke-width="1.3" rx="11.1" ry="9.9" transform="matrix(.65819 0 0 .70224 38.8 209.6)"/>
24
+ <path stroke-width="1.3" d="m39 474.8-10.7 10.6m17.8-10.6-10.7 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6L78 485.4m17.7-10.6L85 485.4m17.8-10.6L92 485.4m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m-17.7-10.6L78 485.4m46-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m0-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.7 10.6M85 474.8l10.6 10.6m-17.8-10.6 10.7 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6M85 474.8l10.6 10.6m-46-10.6 10.5 10.6m-17.7-10.6 10.7 10.6m-17.8-10.6L46 485.4m-17.8-10.6L39 485.4m0 49.6-10.6 10.7M46 535l-10.7 10.7M53.2 535l-10.7 10.7M60.2 535l-10.6 10.7M67.3 535l-10.6 10.7M74.4 535l-10.6 10.7M81.5 535 71 545.7M88.6 535 78 545.7M95.7 535 85 545.7m17.7-10.7L92 545.7m18-10.7-10.7 10.7M117 535l-10.6 10.7M88.6 535 78 545.7m46-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m0-10.7 10.6 10.7M127.6 535l10.6 10.7M120.5 535l10.6 10.7M113.4 535l10.6 10.7M106.3 535l10.6 10.7M99.2 535l10.7 10.7M92 535l10.7 10.7M85 535l10.6 10.7M78 535l10.6 10.7M70.9 535l10.6 10.7M63.8 535l10.6 10.7M56.7 535l10.6 10.7M85.1 535l10.6 10.7m-46-10.7 10.5 10.7M42.5 535l10.7 10.7M35.4 535l10.7 10.7M28.4 535 39 545.7"/>
25
+ </g>
26
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="M538.6 531.5c1.7 166.6 24.8 202 3.5 202s-31.9-92.1-31.9-205.5 14.2-205.5 35.5-205.5-9 31.9-7.1 209z" transform="matrix(-.32136 -.12684 -.20158 .20221 345.9 61.4)"/>
27
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.2" d="m545.7 779.5-60.3 17.7c56.7 60.3 120.5 85 138.2 74.4 17.7-10.6-31.9-35.4-78-92z" transform="matrix(-.19848 0 0 .17744 145.3 -13.4)"/>
28
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m547.3 786.9-51 14.7c56.7 60.3 112.8 77.4 127.3 70 14.6-7.3-30.3-28-76.3-84.7z" transform="matrix(-.19334 0 0 .17062 142.8 -8.1)"/>
29
+ <path fill="none" stroke-width="1.8" d="M353.1 634.2c.2 1.3.8 7.1 1.3 9.4 0 3.2.3 5.6.6 8.1.8 2.2.7 4.2 3.1 5a9.9 9.9 0 0 0 5 4.4 27.7 27.7 0 0 0 6.3 3.8 11.6 11.6 0 0 0 7.5.6c2.2-1.5 3.8-3.1 5.6-4.4.4-2 .8-4.9 1.3-6.9a32.6 32.6 0 0 0-1.3 8.2c.2 3 1.3 4.4 2.5 6.8" transform="matrix(-.13978 0 0 .12414 123 20.4)"/>
30
+ <path fill="none" stroke-width="1.8" d="m389.4 681.7.6-.6c-1.5 1.5-.9.8 2.5-1.3 2.4-1.2 5-1.8 8.1-2.4h8.8c3.4 0 5.7.5 8.1 1.2 1.8 1.8 4.4 2.8 6.3 4.4a11 11 0 0 1 3.7 5c1.7 1.7 2.8 4.3 4.4 5.6.7 2.9 2.1 2.8 3.1 5-3 .2-5.3.6-6.9 2.5-2.6 1.3 2.2-1.3 3.2-2.5 2-.6 2.5-1.2 5.6-1.2 2.8-1 4.6.7 7.5 1.2 1.7 1 2.2 1.3 4.4 1.3" transform="matrix(-.13978 0 0 .12414 124.9 19.7)"/>
31
+ <path fill="none" stroke-width="1.8" d="M438.1 724.9c1.3 0 7.1 1.1 9.4 0 2.6-.7 4-2 5.6-4.4.8-1.7 0 3 0 5 .3 3.7 1.4 3.7 3.2 6.2 1.8 1.2 3.7 2.8 5.6 3.8a18 18 0 0 0 5.6 3.1c2 1 4.1 1.8 5.6 3.1 2.1 1.5 2 3.3 3.2 5.7-.3 3-.8 4.8-2.5 6.2-.8 2.1-2.4 4.2-3.8 5.6-1.5 3-3.3 4.3.6 5 2.2 1 3.4.2 5.7 0" transform="matrix(-.13978 0 0 .12414 127 18.2)"/>
32
+ <path fill="none" stroke-width="1.8" d="M480.6 771.7c1.6-.4 7-2.2 9.4-3.1h8.8c3.3.3 4 1.3 6.8 2.5 1.9 1.9 3.1 3.2 5.7 4.4 1.3 1.7 4 4.7 5 6.9a25.5 25.5 0 0 1 1.2 8c0 3.7-1 4.4-1.2 7.6a19.3 19.3 0 0 1-3.8 7.5c-.3.8-.5 1-1.2 1.2" transform="matrix(-.13978 0 0 .12414 127.4 17.8)"/>
33
+ <path fill="none" stroke-width="2.3" d="M538.1 818c.4 0 1.2 2 2.5 3.7 2.9 3 3.2 3.2 7.5 3.2 4-.2 3.5-1.6 6.3-2.5 1.3-2 2.9-3.6 4.4-6.3 1-1.6 1.9-4.1 3-5.6 1.2-1.9 2.6-3.3 3.8-5 1.2-.5 1.6-1 3.2-1.3-3.6.6-4 1.9-6.3 3.8a58.9 58.9 0 0 0-3.1 5.6c-.4 2.7-1.2 4.8-1.3 8.1 0 3.5 0 5.9 1.3 8.8 1.5 1.5 2.5 3.1 4.4 4.4a36.7 36.7 0 0 1 4.3 5l5.7 3.7c1.8 1.1 3.9 2.2 6.8 2.5 3.7-.3 4.8-1.3 7.5-2.5 2.4-1.7 4.2-2.8 6.3-4.4a21 21 0 0 0 4.4-5c3.3-.8 5.5-.5 7.5 1.3a16.5 16.5 0 0 1 4.3 4.4c1 .5 2.8 2 3.8 2.5" transform="matrix(-.09924 0 0 .09799 109.5 38.8)"/>
34
+ <path fill="none" stroke-width="1.9" d="M503.8 836.1c-.8.3-3.8 2.4-5 3.1-.8 2.7-2.1 4.1-2.5 7-.7 2.6-.7 5.6-.7 8.7.7 3.2 2 5.5 3.2 8 2 1.4 3 2.4 5.6 3.8 2.5.4 5 .7 8.1.7 2 .6 5.6.9 7.5 0 2.8-.4 4.9-1.5 6.9-2.5 2.3-1.3 3.7-2.6 6.2-3.8 1.3-1.8 3.2-3.5 5-5.6 1.6-2.1 2.7-3.3 3.8-5.6-1 2.6-2.3 5-3.1 7.5-1.5 2.6-2.3 3.6-2.5 6.8-1 2.6-.7 5.8-.7 8.8.3 2 .4 5.8 1.3 7.5v1.9" transform="matrix(-.12338 0 0 .12229 111.4 19.3)"/>
35
+ <path fill="none" stroke-width="1.2" d="M541.3 799.2v.7c0-1.7 0-.9-.7 2.5-1.1 1.4-4 1.8-6.2 1.2-2-1.7-2-3-5.6-3.7-3.6.2-5 1.2-7 2.5a9.5 9.5 0 0 0-5 4.3c-.7 2.1-1.1 3.6 1.3 4.4a15.2 15.2 0 0 0 7 2.5c2.8 0 4.9-.3 6.2 1.3 2 2 1.8 3.2 1.8 6.8.7 1.1.8 4.4 1.3 5.7a10.6 10.6 0 0 0 5.6 1.2c.7-2 1.4-5.4 1.9-7.5.5-2.2.6-5.4 1.9-6.9a16.6 16.6 0 0 1 4.3-4.4 8 8 0 0 1 3.8-2.4c-2.5 1.2-2.8 2.6-3.1 5.6 2.1 1 2.7 1.8 6.2 1.9 3.5-.3 4.3-1.2 5.6-3.2.3 3.2 1.3 4.2 2 7 1.2 1.8 1.7 3.7 3 6.2-.5 3-1.7 3.1-1.8 6.8-.8 2.5-.8 4.8-2.5 6.3-.8 1-1.4 1.1-3.2 1.2 3.6 0 5.8-.4 8.2-1.8 1.8-1.2 3.2-2.6 5-3.8a23.9 23.9 0 0 1 7.5-3.8c2.9 0 5-.3 6.2 1.3 1.8 1.3 3 3.5 3.8 6.3.5 3.2.8 5.4-.7 7.5-1 2.4-1.3 3.3 0 6.2 1.5 2 3.6 2.3 7 3.1 2.3-.1 4.6-.6 6.2-1.2" transform="matrix(-.19848 0 0 .17744 145.3 -13.4)"/>
36
+ <g fill-rule="evenodd" stroke-width="1.3" transform="matrix(-.19848 0 0 .17744 145.3 -13.4)">
37
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4h-35.4z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.8 541)"/>
38
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4" transform="matrix(1.1373 -.58739 .44532 .86221 -554.8 471.8)"/>
39
+ <path fill="#fff" d="M563.4 301.2c.2 18.9 0 40.2 0 60.2H535c0-20-.2-41.3 0-60.2h28.4z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
40
+ <path fill="#fff" d="M559.8 304.7c.2 19 0 33.1 0 53.2h-21.2c0-20-.2-34.3 0-53.2h21.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
41
+ <path fill="#fff" d="M542.1 311.8h14.2v39h-14.2zm0 0 14.2 39m-14.2 0 14.2-39m-14.2-198.4h14.2" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
42
+ <circle cx="545.7" cy="92.1" r="3.5" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.8)"/>
43
+ </g>
44
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="M538.6 531.5c1.7 166.6 24.8 202 3.5 202s-31.9-92.1-31.9-205.5 14.2-205.5 35.5-205.5-9 31.9-7.1 209z" transform="matrix(.32136 -.12684 .20158 .20221 -181.5 60.8)"/>
45
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.2" d="m545.7 779.5-60.3 17.7c56.7 60.3 120.5 85 138.2 74.4 17.7-10.6-31.9-35.4-78-92z" transform="matrix(.19848 0 0 .17744 19.1 -14)"/>
46
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m547.3 786.9-51 14.7c56.7 60.3 112.8 77.4 127.3 70 14.6-7.3-30.3-28-76.3-84.7z" transform="matrix(.19334 0 0 .17062 21.6 -8.8)"/>
47
+ <path fill="none" stroke-width="1.8" d="M353.1 634.2c.2 1.3.8 7.1 1.3 9.4 0 3.2.3 5.6.6 8.1.8 2.2.7 4.2 3.1 5a9.9 9.9 0 0 0 5 4.4 27.7 27.7 0 0 0 6.3 3.8 11.6 11.6 0 0 0 7.5.6c2.2-1.5 3.8-3.1 5.6-4.4.4-2 .8-4.9 1.3-6.9a32.6 32.6 0 0 0-1.3 8.2c.2 3 1.3 4.4 2.5 6.8" transform="matrix(.13978 0 0 .12414 41.4 19.7)"/>
48
+ <path fill="none" stroke-width="1.8" d="m389.4 681.7.6-.6c-1.5 1.5-.9.8 2.5-1.3 2.4-1.2 5-1.8 8.1-2.4h8.8c3.4 0 5.7.5 8.1 1.2 1.8 1.8 4.4 2.8 6.3 4.4a11 11 0 0 1 3.7 5c1.7 1.7 2.8 4.3 4.4 5.6.7 2.9 2.1 2.8 3.1 5-3 .2-5.3.6-6.9 2.5-2.6 1.3 2.2-1.3 3.2-2.5 2-.6 2.5-1.2 5.6-1.2 2.8-1 4.6.7 7.5 1.2 1.7 1 2.2 1.3 4.4 1.3" transform="matrix(.13978 0 0 .12414 39.5 19)"/>
49
+ <path fill="none" stroke-width="1.8" d="M438.1 724.9c1.3 0 7.1 1.1 9.4 0 2.6-.7 4-2 5.6-4.4.8-1.7 0 3 0 5 .3 3.7 1.4 3.7 3.2 6.2 1.8 1.2 3.7 2.8 5.6 3.8a18 18 0 0 0 5.6 3.1c2 1 4.1 1.8 5.6 3.1 2.1 1.5 2 3.3 3.2 5.7-.3 3-.8 4.8-2.5 6.2-.8 2.1-2.4 4.2-3.8 5.6-1.5 3-3.3 4.3.6 5 2.2 1 3.4.2 5.7 0" transform="matrix(.13978 0 0 .12414 37.4 17.6)"/>
50
+ <path fill="none" stroke-width="1.8" d="M480.6 771.7c1.6-.4 7-2.2 9.4-3.1h8.8c3.3.3 4 1.3 6.8 2.5 1.9 1.9 3.1 3.2 5.7 4.4 1.3 1.7 4 4.7 5 6.9a25.5 25.5 0 0 1 1.2 8c0 3.7-1 4.4-1.2 7.6a19.3 19.3 0 0 1-3.8 7.5c-.3.8-.5 1-1.2 1.2" transform="matrix(.13978 0 0 .12414 37 17.2)"/>
51
+ <path fill="none" stroke-width="2.3" d="M538.1 818c.4 0 1.2 2 2.5 3.7 2.9 3 3.2 3.2 7.5 3.2 4-.2 3.5-1.6 6.3-2.5 1.3-2 2.9-3.6 4.4-6.3 1-1.6 1.9-4.1 3-5.6 1.2-1.9 2.6-3.3 3.8-5 1.2-.5 1.6-1 3.2-1.3-3.6.6-4 1.9-6.3 3.8a58.9 58.9 0 0 0-3.1 5.6c-.4 2.7-1.2 4.8-1.3 8.1 0 3.5 0 5.9 1.3 8.8 1.5 1.5 2.5 3.1 4.4 4.4a36.7 36.7 0 0 1 4.3 5l5.7 3.7c1.8 1.1 3.9 2.2 6.8 2.5 3.7-.3 4.8-1.3 7.5-2.5 2.4-1.7 4.2-2.8 6.3-4.4a21 21 0 0 0 4.4-5c3.3-.8 5.5-.5 7.5 1.3a16.5 16.5 0 0 1 4.3 4.4c1 .5 2.8 2 3.8 2.5" transform="matrix(.09924 0 0 .09799 55 38.2)"/>
52
+ <path fill="none" stroke-width="1.9" d="M503.8 836.1c-.8.3-3.8 2.4-5 3.1-.8 2.7-2.1 4.1-2.5 7-.7 2.6-.7 5.6-.7 8.7.7 3.2 2 5.5 3.2 8 2 1.4 3 2.4 5.6 3.8 2.5.4 5 .7 8.1.7 2 .6 5.6.9 7.5 0 2.8-.4 4.9-1.5 6.9-2.5 2.3-1.3 3.7-2.6 6.2-3.8 1.3-1.8 3.2-3.5 5-5.6 1.6-2.1 2.7-3.3 3.8-5.6-1 2.6-2.3 5-3.1 7.5-1.5 2.6-2.3 3.6-2.5 6.8-1 2.6-.7 5.8-.7 8.8.3 2 .4 5.8 1.3 7.5v1.9" transform="matrix(.12338 0 0 .12229 53 18.6)"/>
53
+ <path fill="none" stroke-width="1.2" d="M541.3 799.2v.7c0-1.7 0-.9-.7 2.5-1.1 1.4-4 1.8-6.2 1.2-2-1.7-2-3-5.6-3.7-3.6.2-5 1.2-7 2.5a9.5 9.5 0 0 0-5 4.3c-.7 2.1-1.1 3.6 1.3 4.4a15.2 15.2 0 0 0 7 2.5c2.8 0 4.9-.3 6.2 1.3 2 2 1.8 3.2 1.8 6.8.7 1.1.8 4.4 1.3 5.7a10.6 10.6 0 0 0 5.6 1.2c.7-2 1.4-5.4 1.9-7.5.5-2.2.6-5.4 1.9-6.9a16.6 16.6 0 0 1 4.3-4.4 8 8 0 0 1 3.8-2.4c-2.5 1.2-2.8 2.6-3.1 5.6 2.1 1 2.7 1.8 6.2 1.9 3.5-.3 4.3-1.2 5.6-3.2.3 3.2 1.3 4.2 2 7 1.2 1.8 1.7 3.7 3 6.2-.5 3-1.7 3.1-1.8 6.8-.8 2.5-.8 4.8-2.5 6.3-.8 1-1.4 1.1-3.2 1.2 3.6 0 5.8-.4 8.2-1.8 1.8-1.2 3.2-2.6 5-3.8a23.9 23.9 0 0 1 7.5-3.8c2.9 0 5-.3 6.2 1.3 1.8 1.3 3 3.5 3.8 6.3.5 3.2.8 5.4-.7 7.5-1 2.4-1.3 3.3 0 6.2 1.5 2 3.6 2.3 7 3.1 2.3-.1 4.6-.6 6.2-1.2" transform="matrix(.19848 0 0 .17744 19.1 -14)"/>
54
+ <g fill-rule="evenodd" stroke-width="1.3" transform="matrix(.19848 0 0 .17744 19.1 -14)">
55
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4h-35.4z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.8 541)"/>
56
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4" transform="matrix(1.1373 -.58739 .44532 .86221 -554.8 471.8)"/>
57
+ <path fill="#fff" d="M563.4 301.2c.2 18.9 0 40.2 0 60.2H535c0-20-.2-41.3 0-60.2h28.4z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
58
+ <path fill="#fff" d="M559.8 304.7c.2 19 0 33.1 0 53.2h-21.2c0-20-.2-34.3 0-53.2h21.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
59
+ <path fill="#fff" d="M542.1 311.8h14.2v39h-14.2zm0 0 14.2 39m-14.2 0 14.2-39m-14.2-198.4h14.2" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
60
+ <circle cx="545.7" cy="92.1" r="3.5" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.8)"/>
61
+ </g>
62
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 19.1 -14)">
63
+ <path stroke-width="1.3" d="M305.6 396.9c0 124 .5 170.7-5.6 177.1-5.8 6.9-167.1 0-167.1 35.4s132.8 71 172.7 71c53.2 0 79.7-35.5 79.7-106.4V397h-79.7z" transform="matrix(1.3333 0 0 1 -141.7 0)"/>
64
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 35.4)"/>
65
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="scale(1 .99999)"/>
66
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 17.7)"/>
67
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 53.1)"/>
68
+ <ellipse cx="256.9" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 394.3)"/>
69
+ <ellipse cx="292.3" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 391.1)"/>
70
+ <ellipse cx="327.8" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 390.5)"/>
71
+ <ellipse cx="363.2" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 390.5)"/>
72
+ <ellipse cx="398.6" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 391.1)"/>
73
+ <ellipse cx="434.1" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 394.3)"/>
74
+ <path stroke-width="1.3" d="M265.8 485.4 372 581.1m-95.6-95.7 95.7 85M290.5 489l81.6 70.9m-71-71 71 60.3M311.8 489l60.2 49.6M322.4 489l49.6 39m-39-39 39 28.3M343.8 489l28.4 21.2M354.3 489l17.8 14.2M365 489l7 7m-106.2 0L372 591.8m0-106.3L255 591.7m106.3-106.3-102.7 92.2m88.6-88.6-81.5 70.8m70.8-70.8-70.8 60.2M326 489l-60.2 49.6m49.6-49.6-49.6 39m39-39-39 28.3M294 489l-28.3 21.2m17.7-21.2-17.7 14.2m7-14.2-7 7m106.3 0L255 602.5m117-95.7L255 613m117-95.7L255 623.6m117-95.7L255 634.4m117-95.7L255 644.9m117-95.7L255 655.5m117-95.7L255 666.1m117-95.6L255 676.8m117-95.7-109.9 99.2M372 591.7l-99.2 88.6m95.6-74.4-78 70.9M365 620l-63.8 56.7m56.7-39-32 28.3m-60.1-159.4 102.7 92.1m-102.7-81.5 102.7 92.2M265.8 528l99.2 88.5m-99.2-78 99.2 88.7m-99.2-78 95.6 85m-99.2-77.9 95.7 85M262.2 567l88.6 78m-92.1-71 88.6 78M255 581l85 74.4m-85-63.8 81.5 70.9M255 602.3l71 63.7"/>
75
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 70.9)"/>
76
+ <path stroke-width="1.3" d="m255.1 613 63.8 56.7m-63.8-46 56.7 49.5m-56.7-39 49.6 42.6m-49.6-32 35.5 32M255 655.5l28.4 24.8M255 666.1l17.7 14.2"/>
77
+ <ellipse cx="256.9" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 447.5)"/>
78
+ <ellipse cx="292.3" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 444.3)"/>
79
+ <ellipse cx="327.8" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 443.6)"/>
80
+ <ellipse cx="363.2" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 443.6)"/>
81
+ <ellipse cx="398.6" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 444.3)"/>
82
+ <ellipse cx="434.1" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 447.5)"/>
83
+ <path stroke-width="1.3" d="m113.4 652 127.5-74.4m-134.6 70.8 120.5-70.8m-124 63.7 109.8-63.7M99.2 634.3l95.7-56.7M92 627.2l88.6-49.6m-85 39 60.2-35.5M92 609.4l46-28.3m-46 17.7 32-17.7m0 74.4 120.4-70.9M134.7 659 248 591.7m-102.7 70.9 106.3-63.8m-95.7 67.3 88.6-53.1M170 666.1l78-46m-67.4 49.6 67.3-39m-56.7 42.5 53.2-31.9m-39 32 42.5-24.9m-28.3 28.4L248 659m-14 17.8 17.7-10.6"/>
84
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(0 1 -.99999 0 655.5 308.3)"/>
85
+ <path stroke-width="1.3" d="m49.6 623.6 42.5-35.4m-42.5 10.6 42.5 42.5"/>
86
+ <path stroke-width="1.3" d="m260.1 388 5.6 26.6c35.5 5.9 65.3 5.9 100.8 0l11.1-26.6c-35.4 5.9-82 5.9-117.5 0z" transform="matrix(0 .63333 -.8 0 423.8 416.3)"/>
87
+ <path stroke-width="1.3" d="M258.7 350.8v-17.9c-10.7.2-17.8-10.5-17.8-21.2l-35.4.1c0 10.6-7 21.3-17.7 21.3v17.7h70.9z" transform="matrix(1.4983 0 0 1 -15.6 53.1)"/>
88
+ <path stroke-width="1.4" d="M296 343.7h45.6V365H296zm3.9-21.3h37.9v21.3h-38zm0-21.2h37.9v21.2h-38zm3.8-28.4H334v28.4h-30.3zm-1.3-24.8h33v24.8h-33z"/>
89
+ <ellipse cx="237.4" cy="161.2" stroke-width="1.3" rx="42.5" ry="33.7" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
90
+ <path stroke-width="1.3" d="M258.7 159.4c0 9.3 10.6 24.8 10.6 24.8-7.7 6.2-20.2 10.7-31.9 10.7s-26.3-2.6-31.9-10.7c0 0 10.6-15.4 10.6-24.7s-10.6-21.3-10.6-21.3a54.6 54.6 0 0 1 32-10.6c11.6 0 24 4.5 31.8 10.6 0 0-10.6 12-10.6 21.3z" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
91
+ <path stroke-width="1.3" d="M251.6 159.4c0 9.3 10.6 28.4 10.6 28.4-7.7 6-13 7-24.8 7s-19.2 1.1-24.8-7c0 0 10.6-19 10.6-28.4s-10.6-24.8-10.6-24.8c7.7-6 13-7 24.8-7 11.7 0 17.1 1 24.8 7 0 0-10.6 15.5-10.6 24.8z" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
92
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 75.3 60.2)"/>
93
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 163.2 60.2)"/>
94
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 119.3 60.2)"/>
95
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 119.3 24.8)"/>
96
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0702 0 0 1 80 226.8)"/>
97
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0702 0 0 1 140.6 226.8)"/>
98
+ <path stroke-width="1.3" d="M212.6 311.8h49.6l-24.8 31.9-24.8-31.9z" transform="matrix(1.0702 0 0 1 64.8 53.1)"/>
99
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.427 0 0 1.3333 40.7 167.7)"/>
100
+ </g>
101
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 18.8 -19.1)">
102
+ <rect width="81.5" height="21.3" x="262.2" y="524.4" stroke-width="1.2" rx="4.3" ry="3.7"/>
103
+ <path stroke-width="1.2" d="M368.5 506.7c-9.8 0-17.7 8.3-17.7 18.5v16.1a18 18 0 0 0 17.7 18.5 18 18 0 0 0 17.7-18.5v-16a18 18 0 0 0-17.7-18.6zm0 7c-5.9 0-10.6 6.7-10.6 14.9v9.3c0 8.2 4.7 14.8 10.6 14.8 5.9 0 10.6-6.6 10.6-14.8v-9.3c0-8.2-4.7-14.8-10.6-14.8zm-92.1-3.5c-6 0-10.6 6.6-10.6 14.9v16.4c0 8.2 4.7 14.8 10.6 14.8 5.9 0 10.6-6.6 10.6-14.8V525c0-8.3-4.7-14.9-10.6-14.9zm0-7a18 18 0 0 0-17.7 18.5v23.2a18 18 0 0 0 17.7 18.5c9.8 0 17.7-8.3 17.7-18.5v-23.2a18 18 0 0 0-17.7-18.6z"/>
104
+ <path stroke-width="1.2" d="M248 517.3c-5.9 0-10.6 6.6-10.6 14.8v3.9c0 8.2 4.7 14.8 10.6 14.8 6 0 10.7-6.6 10.7-14.8v-3.9c0-8.2-4.8-14.8-10.7-14.8zm0-7a18 18 0 0 0-17.7 18.5v10.6a18 18 0 0 0 17.7 18.5c9.8 0 17.8-8.3 17.8-18.5v-10.6a18 18 0 0 0-17.8-18.6z"/>
105
+ <path stroke-width=".9" d="M478.4 237.4c-6 0-10.7 6.6-10.7 14.8v16.5c0 8.1 4.8 14.8 10.7 14.8 5.8 0 10.6-6.6 10.6-14.9v-16.4c0-8.2-4.8-14.8-10.6-14.8zm0-7a18 18 0 0 0-17.8 18.4V272a18 18 0 0 0 17.7 18.6c9.9 0 17.8-8.3 17.8-18.6v-23.2a18 18 0 0 0-17.7-18.5z" transform="matrix(1.8 0 0 1.1176 -655.5 242.2)"/>
106
+ <path stroke-width=".9" d="M478.4 237.4c-6 0-10.7 6.6-10.7 14.8v16.5c0 8.1 4.8 14.8 10.7 14.8 5.8 0 10.6-6.6 10.6-14.9v-16.4c0-8.2-4.8-14.8-10.6-14.8zm0-7a18 18 0 0 0-17.8 18.4V272a18 18 0 0 0 17.7 18.6c9.9 0 17.8-8.3 17.8-18.6v-23.2a18 18 0 0 0-17.7-18.5z" transform="matrix(1.8 0 0 1.1176 -425.2 245.7)"/>
107
+ <rect width="42.5" height="21.3" x="375.6" y="524.4" stroke-width="1.2" rx="2.3" ry="3.7"/>
108
+ <rect width="24.8" height="28.4" x="336.6" y="520.9" stroke-width="1.2" rx="1.3" ry="4.9"/>
109
+ <rect width="24.8" height="28.4" x="219.7" y="520.9" stroke-width="1.2" rx="1.3" ry="4.9"/>
110
+ <rect width="49.6" height="35.4" x="141.7" y="517.3" stroke-width="1.2" rx="2.6" ry="6.1"/>
111
+ <rect width="46.1" height="35.4" x="450" y="520.9" stroke-width="1.2" rx="2.5" ry="6.1"/>
112
+ </g>
113
+ </g>
114
+ </g>
115
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pa" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)">
8
+ <path fill="#fff" d="M0 0h640v480H0z"/>
9
+ <path fill="#fff" fill-rule="evenodd" d="M92.5 0h477.2v480H92.4z"/>
10
+ <path fill="#db0000" fill-rule="evenodd" d="M323 3.6h358v221.7H323z"/>
11
+ <path fill="#0000ab" fill-rule="evenodd" d="M3.2 225.3h319.9V480H3.2zm211.6-47.6-42-29.4-41.7 29.6 15.5-48L105 100l51.6-.4 16-48 16.3 47.9h51.6l-41.5 30 15.9 48z"/>
12
+ <path fill="#d80000" fill-rule="evenodd" d="m516.9 413.9-42.4-27.7-42.1 28 15.6-45.6-42-28 52-.5 16.2-45.4 16.4 45.3h52l-41.8 28.5 16 45.4z"/>
13
+ </g>
14
+ </svg>