mimir-ui-kit 1.3.1 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1298) hide show
  1. package/README.md +53 -53
  2. package/dist/NavigationButtons-B8tMfqrg.js +4907 -0
  3. package/dist/assets/Button.css +1 -0
  4. package/dist/assets/Drawer.css +1 -0
  5. package/dist/assets/Input.css +1 -0
  6. package/dist/assets/InputPassword.css +1 -0
  7. package/dist/assets/Loader.css +1 -0
  8. package/dist/assets/MergedButton.css +1 -0
  9. package/dist/assets/OtpInput.css +1 -0
  10. package/dist/assets/ProgressBar.css +1 -0
  11. package/dist/assets/RadioGroup.css +1 -0
  12. package/dist/assets/Slider.css +1 -0
  13. package/dist/assets/Steps.css +1 -0
  14. package/dist/assets/Vote.css +1 -0
  15. package/dist/assets/fonts/11d5bc9f0cad36d1.woff2 +0 -0
  16. package/dist/assets/fonts/1a738bfdbc1e4d9d.woff +0 -0
  17. package/dist/assets/fonts/242d04bef81519ae.woff2 +0 -0
  18. package/dist/assets/fonts/3b9f59412b17ff93.woff +0 -0
  19. package/dist/assets/fonts/3cdd7fabbe89d2b9.woff +0 -0
  20. package/dist/assets/fonts/43b748f250df0f08.woff +0 -0
  21. package/dist/assets/fonts/585d10920d676fcd.woff2 +0 -0
  22. package/dist/assets/fonts/63611593e008a77c.woff2 +0 -0
  23. package/dist/assets/fonts/badaa6d1837432de.woff +0 -0
  24. package/dist/assets/fonts/cac2ba46e8c8adc9.woff2 +0 -0
  25. package/dist/assets/fonts/d080ae18fd04e52c.woff2 +0 -0
  26. package/dist/assets/fonts/e51d2feb30084bc2.woff2 +0 -0
  27. package/dist/assets/fonts/ee3db32f0aadef5d.woff2 +0 -0
  28. package/dist/assets/fonts/f4d681a788c6d497.woff2 +0 -0
  29. package/dist/assets/index.css +1 -0
  30. package/dist/components/Button/Button.d.ts +134 -0
  31. package/dist/components/Button/Button.js +96 -0
  32. package/dist/components/Button/constants.d.ts +25 -0
  33. package/dist/components/Button/constants.js +35 -0
  34. package/dist/components/Button/index.d.ts +2 -0
  35. package/dist/components/Button/index.js +9 -0
  36. package/dist/components/Button/types.d.ts +28 -0
  37. package/dist/components/Button/types.js +1 -0
  38. package/dist/components/Drawer/Drawer.d.ts +38 -0
  39. package/dist/components/Drawer/Drawer.js +144 -0
  40. package/dist/components/Drawer/constants.d.ts +5 -0
  41. package/dist/components/Drawer/constants.js +9 -0
  42. package/dist/components/Drawer/index.d.ts +2 -0
  43. package/dist/components/Drawer/index.js +6 -0
  44. package/dist/components/Image/Image.d.ts +21 -0
  45. package/dist/components/Image/Image.js +49 -0
  46. package/dist/components/Image/index.d.ts +1 -0
  47. package/dist/components/Image/index.js +4 -0
  48. package/dist/components/Input/Input.d.ts +63 -0
  49. package/dist/components/Input/Input.js +121 -0
  50. package/dist/components/Input/constants.d.ts +12 -0
  51. package/dist/components/Input/constants.js +18 -0
  52. package/dist/components/Input/index.d.ts +3 -0
  53. package/dist/components/Input/index.js +7 -0
  54. package/dist/components/Input/types.d.ts +11 -0
  55. package/dist/components/Input/types.js +1 -0
  56. package/dist/components/InputPassword/InputPassword.d.ts +12 -0
  57. package/dist/components/InputPassword/InputPassword.js +50 -0
  58. package/dist/components/InputPassword/index.d.ts +2 -0
  59. package/dist/components/InputPassword/index.js +4 -0
  60. package/dist/components/InputPhoneNumber/InputPhoneNumber.d.ts +12 -0
  61. package/dist/components/InputPhoneNumber/InputPhoneNumber.js +38 -0
  62. package/dist/components/InputPhoneNumber/index.d.ts +2 -0
  63. package/dist/components/InputPhoneNumber/index.js +7 -0
  64. package/dist/components/InputPhoneNumber/utils.d.ts +2 -0
  65. package/dist/components/InputPhoneNumber/utils.js +26 -0
  66. package/dist/components/Loader/Loader.d.ts +1 -0
  67. package/dist/components/Loader/Loader.js +18 -0
  68. package/dist/components/Loader/index.d.ts +1 -0
  69. package/dist/components/Loader/index.js +4 -0
  70. package/dist/components/MergedButton/MergedButton.d.ts +17 -0
  71. package/dist/components/MergedButton/MergedButton.js +55 -0
  72. package/dist/components/MergedButton/constants.d.ts +5 -0
  73. package/dist/components/MergedButton/constants.js +9 -0
  74. package/dist/components/MergedButton/index.d.ts +2 -0
  75. package/dist/components/MergedButton/index.js +6 -0
  76. package/dist/components/OtpInput/OtpInput.d.ts +23 -0
  77. package/dist/components/OtpInput/OtpInput.js +70 -0
  78. package/dist/components/OtpInput/constants.d.ts +3 -0
  79. package/dist/components/OtpInput/constants.js +8 -0
  80. package/dist/components/OtpInput/hooks.d.ts +20 -0
  81. package/dist/components/OtpInput/hooks.js +139 -0
  82. package/dist/components/OtpInput/index.d.ts +1 -0
  83. package/dist/components/OtpInput/index.js +4 -0
  84. package/dist/components/Portal/Portal.d.ts +7 -0
  85. package/dist/components/Portal/Portal.js +10 -0
  86. package/dist/components/Portal/index.d.ts +1 -0
  87. package/dist/components/Portal/index.js +4 -0
  88. package/dist/components/RadioGroup/RadioGroup.d.ts +30 -0
  89. package/dist/components/RadioGroup/RadioGroup.js +1106 -0
  90. package/dist/components/RadioGroup/index.d.ts +2 -0
  91. package/dist/components/RadioGroup/index.js +4 -0
  92. package/dist/components/Slider/NavigationButtons/NavigationButtons.d.ts +1 -0
  93. package/dist/components/Slider/NavigationButtons/NavigationButtons.js +7 -0
  94. package/dist/components/Slider/NavigationButtons/index.d.ts +1 -0
  95. package/dist/components/Slider/NavigationButtons/index.js +4 -0
  96. package/dist/components/Slider/ProgressBar/ProgressBar.d.ts +1 -0
  97. package/dist/components/Slider/ProgressBar/ProgressBar.js +15 -0
  98. package/dist/components/Slider/ProgressBar/index.d.ts +1 -0
  99. package/dist/components/Slider/ProgressBar/index.js +4 -0
  100. package/dist/components/Slider/Slider.d.ts +32 -0
  101. package/dist/components/Slider/Slider.js +417 -0
  102. package/dist/components/Slider/index.d.ts +1 -0
  103. package/dist/components/Slider/index.js +4 -0
  104. package/dist/components/Steps/Steps.d.ts +79 -0
  105. package/dist/components/Steps/Steps.js +94 -0
  106. package/dist/components/Steps/constants.d.ts +41 -0
  107. package/dist/components/Steps/constants.js +55 -0
  108. package/dist/components/Steps/types.d.ts +6 -0
  109. package/dist/components/Steps/types.js +1 -0
  110. package/dist/components/Vote/Vote.d.ts +119 -0
  111. package/dist/components/Vote/Vote.js +100 -0
  112. package/dist/components/Vote/constants.d.ts +7 -0
  113. package/dist/components/Vote/constants.js +15 -0
  114. package/dist/components/Vote/types.d.ts +6 -0
  115. package/dist/components/Vote/types.js +1 -0
  116. package/dist/components/index.d.ts +16 -0
  117. package/dist/components/index.js +37 -0
  118. package/dist/hooks/index.d.ts +2 -0
  119. package/dist/hooks/index.js +8 -0
  120. package/dist/hooks/useLockBodyScroll/index.d.ts +1 -0
  121. package/dist/hooks/useLockBodyScroll/index.js +4 -0
  122. package/dist/hooks/useLockBodyScroll/useLockBodyScroll.d.ts +6 -0
  123. package/dist/hooks/useLockBodyScroll/useLockBodyScroll.js +20 -0
  124. package/dist/hooks/useMediaQuery/constants.d.ts +10 -0
  125. package/dist/hooks/useMediaQuery/constants.js +14 -0
  126. package/dist/hooks/useMediaQuery/index.d.ts +2 -0
  127. package/dist/hooks/useMediaQuery/index.js +6 -0
  128. package/dist/hooks/useMediaQuery/useMediaQuery.d.ts +14 -0
  129. package/dist/hooks/useMediaQuery/useMediaQuery.js +19 -0
  130. package/dist/icons/Icon.d.ts +8 -0
  131. package/dist/icons/Icon.js +13 -0
  132. package/dist/icons/components/16px/Accept16px.d.ts +4 -0
  133. package/dist/icons/components/16px/Accept16px.js +27 -0
  134. package/dist/icons/components/16px/Acts16px.d.ts +4 -0
  135. package/dist/icons/components/16px/Acts16px.js +40 -0
  136. package/dist/icons/components/16px/Acts16pxF.d.ts +4 -0
  137. package/dist/icons/components/16px/Acts16pxF.js +35 -0
  138. package/dist/icons/components/16px/AdditionalServicess16px.d.ts +4 -0
  139. package/dist/icons/components/16px/AdditionalServicess16px.js +33 -0
  140. package/dist/icons/components/16px/AdditionalServicess16pxF.d.ts +4 -0
  141. package/dist/icons/components/16px/AdditionalServicess16pxF.js +22 -0
  142. package/dist/icons/components/16px/Agents16px.d.ts +4 -0
  143. package/dist/icons/components/16px/Agents16px.js +24 -0
  144. package/dist/icons/components/16px/Agents16pxF.d.ts +4 -0
  145. package/dist/icons/components/16px/Agents16pxF.js +22 -0
  146. package/dist/icons/components/16px/Alarm16px.d.ts +4 -0
  147. package/dist/icons/components/16px/Alarm16px.js +25 -0
  148. package/dist/icons/components/16px/ArrowDown16px.d.ts +4 -0
  149. package/dist/icons/components/16px/ArrowDown16px.js +24 -0
  150. package/dist/icons/components/16px/ArrowLeft16px.d.ts +4 -0
  151. package/dist/icons/components/16px/ArrowLeft16px.js +24 -0
  152. package/dist/icons/components/16px/ArrowRight16px.d.ts +4 -0
  153. package/dist/icons/components/16px/ArrowRight16px.js +24 -0
  154. package/dist/icons/components/16px/ArrowUp16px.d.ts +4 -0
  155. package/dist/icons/components/16px/ArrowUp16px.js +24 -0
  156. package/dist/icons/components/16px/ArrowUpright16px.d.ts +4 -0
  157. package/dist/icons/components/16px/ArrowUpright16px.js +24 -0
  158. package/dist/icons/components/16px/AttachFile16px.d.ts +4 -0
  159. package/dist/icons/components/16px/AttachFile16px.js +24 -0
  160. package/dist/icons/components/16px/Bell16px.d.ts +4 -0
  161. package/dist/icons/components/16px/Bell16px.js +44 -0
  162. package/dist/icons/components/16px/Bell16pxF.d.ts +4 -0
  163. package/dist/icons/components/16px/Bell16pxF.js +34 -0
  164. package/dist/icons/components/16px/Calculator16px.d.ts +4 -0
  165. package/dist/icons/components/16px/Calculator16px.js +24 -0
  166. package/dist/icons/components/16px/CalculatorLkk16px.d.ts +4 -0
  167. package/dist/icons/components/16px/CalculatorLkk16px.js +35 -0
  168. package/dist/icons/components/16px/CalculatorLkk16pxF.d.ts +4 -0
  169. package/dist/icons/components/16px/CalculatorLkk16pxF.js +24 -0
  170. package/dist/icons/components/16px/Calendar16px.d.ts +4 -0
  171. package/dist/icons/components/16px/Calendar16px.js +24 -0
  172. package/dist/icons/components/16px/Camera16px.d.ts +4 -0
  173. package/dist/icons/components/16px/Camera16px.js +36 -0
  174. package/dist/icons/components/16px/Car16px.d.ts +4 -0
  175. package/dist/icons/components/16px/Car16px.js +35 -0
  176. package/dist/icons/components/16px/Car16pxF.d.ts +4 -0
  177. package/dist/icons/components/16px/Car16pxF.js +24 -0
  178. package/dist/icons/components/16px/Catalog16px.d.ts +4 -0
  179. package/dist/icons/components/16px/Catalog16px.js +24 -0
  180. package/dist/icons/components/16px/Certs16px.d.ts +4 -0
  181. package/dist/icons/components/16px/Certs16px.js +33 -0
  182. package/dist/icons/components/16px/Certs16pxF.d.ts +4 -0
  183. package/dist/icons/components/16px/Certs16pxF.js +33 -0
  184. package/dist/icons/components/16px/Change16px.d.ts +4 -0
  185. package/dist/icons/components/16px/Change16px.js +22 -0
  186. package/dist/icons/components/16px/Chat16px.d.ts +4 -0
  187. package/dist/icons/components/16px/Chat16px.js +33 -0
  188. package/dist/icons/components/16px/Chat16pxF.d.ts +4 -0
  189. package/dist/icons/components/16px/Chat16pxF.js +24 -0
  190. package/dist/icons/components/16px/Chatbot16px.d.ts +4 -0
  191. package/dist/icons/components/16px/Chatbot16px.js +264 -0
  192. package/dist/icons/components/16px/Close16px.d.ts +4 -0
  193. package/dist/icons/components/16px/Close16px.js +24 -0
  194. package/dist/icons/components/16px/CloseFloatMenuArrow16px.d.ts +4 -0
  195. package/dist/icons/components/16px/CloseFloatMenuArrow16px.js +22 -0
  196. package/dist/icons/components/16px/CloseFloatMenuMobileArrow16px.d.ts +4 -0
  197. package/dist/icons/components/16px/CloseFloatMenuMobileArrow16px.js +22 -0
  198. package/dist/icons/components/16px/Coin16px.d.ts +4 -0
  199. package/dist/icons/components/16px/Coin16px.js +35 -0
  200. package/dist/icons/components/16px/Coin16pxF.d.ts +4 -0
  201. package/dist/icons/components/16px/Coin16pxF.js +42 -0
  202. package/dist/icons/components/16px/Contracts16px.d.ts +4 -0
  203. package/dist/icons/components/16px/Contracts16px.js +35 -0
  204. package/dist/icons/components/16px/Contracts16pxF.d.ts +4 -0
  205. package/dist/icons/components/16px/Contracts16pxF.js +33 -0
  206. package/dist/icons/components/16px/CopyClipboard16px.d.ts +4 -0
  207. package/dist/icons/components/16px/CopyClipboard16px.js +27 -0
  208. package/dist/icons/components/16px/Done16px.d.ts +4 -0
  209. package/dist/icons/components/16px/Done16px.js +24 -0
  210. package/dist/icons/components/16px/Download16px.d.ts +4 -0
  211. package/dist/icons/components/16px/Download16px.js +31 -0
  212. package/dist/icons/components/16px/DragHandle16px.d.ts +4 -0
  213. package/dist/icons/components/16px/DragHandle16px.js +22 -0
  214. package/dist/icons/components/16px/DragHandleHorizontal16px.d.ts +4 -0
  215. package/dist/icons/components/16px/DragHandleHorizontal16px.js +22 -0
  216. package/dist/icons/components/16px/DragHandleVertical16px.d.ts +4 -0
  217. package/dist/icons/components/16px/DragHandleVertical16px.js +22 -0
  218. package/dist/icons/components/16px/DropdownArrowBottom16px.d.ts +4 -0
  219. package/dist/icons/components/16px/DropdownArrowBottom16px.js +24 -0
  220. package/dist/icons/components/16px/DropdownArrowLeft16px.d.ts +4 -0
  221. package/dist/icons/components/16px/DropdownArrowLeft16px.js +24 -0
  222. package/dist/icons/components/16px/DropdownArrowRight16px.d.ts +4 -0
  223. package/dist/icons/components/16px/DropdownArrowRight16px.js +24 -0
  224. package/dist/icons/components/16px/DropdownArrowUp16px.d.ts +4 -0
  225. package/dist/icons/components/16px/DropdownArrowUp16px.js +24 -0
  226. package/dist/icons/components/16px/Dzen16px.d.ts +4 -0
  227. package/dist/icons/components/16px/Dzen16px.js +22 -0
  228. package/dist/icons/components/16px/Euro16px.d.ts +4 -0
  229. package/dist/icons/components/16px/Euro16px.js +25 -0
  230. package/dist/icons/components/16px/Eye16px.d.ts +4 -0
  231. package/dist/icons/components/16px/Eye16px.js +35 -0
  232. package/dist/icons/components/16px/Failure16px.d.ts +4 -0
  233. package/dist/icons/components/16px/Failure16px.js +27 -0
  234. package/dist/icons/components/16px/Favorite16px.d.ts +4 -0
  235. package/dist/icons/components/16px/Favorite16px.js +24 -0
  236. package/dist/icons/components/16px/Favorite16pxF.d.ts +4 -0
  237. package/dist/icons/components/16px/Favorite16pxF.js +22 -0
  238. package/dist/icons/components/16px/Filter16px.d.ts +4 -0
  239. package/dist/icons/components/16px/Filter16px.js +24 -0
  240. package/dist/icons/components/16px/Flag16pxF.d.ts +4 -0
  241. package/dist/icons/components/16px/Flag16pxF.js +16 -0
  242. package/dist/icons/components/16px/Folder16px.d.ts +4 -0
  243. package/dist/icons/components/16px/Folder16px.js +24 -0
  244. package/dist/icons/components/16px/Fullscreen16px.d.ts +4 -0
  245. package/dist/icons/components/16px/Fullscreen16px.js +24 -0
  246. package/dist/icons/components/16px/Galery16px.d.ts +4 -0
  247. package/dist/icons/components/16px/Galery16px.js +27 -0
  248. package/dist/icons/components/16px/Gear16px.d.ts +4 -0
  249. package/dist/icons/components/16px/Gear16px.js +35 -0
  250. package/dist/icons/components/16px/Gift16px.d.ts +4 -0
  251. package/dist/icons/components/16px/Gift16px.js +33 -0
  252. package/dist/icons/components/16px/Hint16px.d.ts +4 -0
  253. package/dist/icons/components/16px/Hint16px.js +25 -0
  254. package/dist/icons/components/16px/Home16px.d.ts +4 -0
  255. package/dist/icons/components/16px/Home16px.js +33 -0
  256. package/dist/icons/components/16px/Home16pxF.d.ts +4 -0
  257. package/dist/icons/components/16px/Home16pxF.js +24 -0
  258. package/dist/icons/components/16px/Hot16pxF.d.ts +4 -0
  259. package/dist/icons/components/16px/Hot16pxF.js +22 -0
  260. package/dist/icons/components/16px/Kebab16px.d.ts +4 -0
  261. package/dist/icons/components/16px/Kebab16px.js +16 -0
  262. package/dist/icons/components/16px/List16px.d.ts +4 -0
  263. package/dist/icons/components/16px/List16px.js +22 -0
  264. package/dist/icons/components/16px/Location16px.d.ts +4 -0
  265. package/dist/icons/components/16px/Location16px.js +35 -0
  266. package/dist/icons/components/16px/Map16px.d.ts +4 -0
  267. package/dist/icons/components/16px/Map16px.js +24 -0
  268. package/dist/icons/components/16px/Menu16px.d.ts +4 -0
  269. package/dist/icons/components/16px/Menu16px.js +22 -0
  270. package/dist/icons/components/16px/MenuMobile16px.d.ts +4 -0
  271. package/dist/icons/components/16px/MenuMobile16px.js +24 -0
  272. package/dist/icons/components/16px/Minus16px.d.ts +4 -0
  273. package/dist/icons/components/16px/Minus16px.js +16 -0
  274. package/dist/icons/components/16px/Navigation16px.d.ts +4 -0
  275. package/dist/icons/components/16px/Navigation16px.js +24 -0
  276. package/dist/icons/components/16px/News16px.d.ts +4 -0
  277. package/dist/icons/components/16px/News16px.js +33 -0
  278. package/dist/icons/components/16px/News16pxF.d.ts +4 -0
  279. package/dist/icons/components/16px/News16pxF.js +24 -0
  280. package/dist/icons/components/16px/Number16px.d.ts +4 -0
  281. package/dist/icons/components/16px/Number16px.js +33 -0
  282. package/dist/icons/components/16px/OpenFloatMenuArrow16px.d.ts +4 -0
  283. package/dist/icons/components/16px/OpenFloatMenuArrow16px.js +22 -0
  284. package/dist/icons/components/16px/OpenFloatMenuMobileArrow16px.d.ts +4 -0
  285. package/dist/icons/components/16px/OpenFloatMenuMobileArrow16px.js +22 -0
  286. package/dist/icons/components/16px/Orders16px.d.ts +4 -0
  287. package/dist/icons/components/16px/Orders16px.js +33 -0
  288. package/dist/icons/components/16px/Orders16pxF.d.ts +4 -0
  289. package/dist/icons/components/16px/Orders16pxF.js +27 -0
  290. package/dist/icons/components/16px/Pause16px.d.ts +4 -0
  291. package/dist/icons/components/16px/Pause16px.js +16 -0
  292. package/dist/icons/components/16px/Pen16px.d.ts +4 -0
  293. package/dist/icons/components/16px/Pen16px.js +35 -0
  294. package/dist/icons/components/16px/Pen16pxF.d.ts +4 -0
  295. package/dist/icons/components/16px/Pen16pxF.js +24 -0
  296. package/dist/icons/components/16px/Phone16px.d.ts +4 -0
  297. package/dist/icons/components/16px/Phone16px.js +24 -0
  298. package/dist/icons/components/16px/Play16pxF.d.ts +4 -0
  299. package/dist/icons/components/16px/Play16pxF.js +22 -0
  300. package/dist/icons/components/16px/Plus16px.d.ts +4 -0
  301. package/dist/icons/components/16px/Plus16px.js +24 -0
  302. package/dist/icons/components/16px/Pound16px.d.ts +4 -0
  303. package/dist/icons/components/16px/Pound16px.js +25 -0
  304. package/dist/icons/components/16px/PriceDown16px.d.ts +4 -0
  305. package/dist/icons/components/16px/PriceDown16px.js +35 -0
  306. package/dist/icons/components/16px/PriceUp16px.d.ts +4 -0
  307. package/dist/icons/components/16px/PriceUp16px.js +35 -0
  308. package/dist/icons/components/16px/Question16px.d.ts +4 -0
  309. package/dist/icons/components/16px/Question16px.js +24 -0
  310. package/dist/icons/components/16px/Question16pxF.d.ts +4 -0
  311. package/dist/icons/components/16px/Question16pxF.js +24 -0
  312. package/dist/icons/components/16px/Rutube16px.d.ts +4 -0
  313. package/dist/icons/components/16px/Rutube16px.js +22 -0
  314. package/dist/icons/components/16px/Scan16px.d.ts +4 -0
  315. package/dist/icons/components/16px/Scan16px.js +22 -0
  316. package/dist/icons/components/16px/Search16px.d.ts +4 -0
  317. package/dist/icons/components/16px/Search16px.js +24 -0
  318. package/dist/icons/components/16px/Share16pxF.d.ts +4 -0
  319. package/dist/icons/components/16px/Share16pxF.js +22 -0
  320. package/dist/icons/components/16px/ShopingCard16px.d.ts +4 -0
  321. package/dist/icons/components/16px/ShopingCard16px.js +24 -0
  322. package/dist/icons/components/16px/Sort16px.d.ts +4 -0
  323. package/dist/icons/components/16px/Sort16px.js +24 -0
  324. package/dist/icons/components/16px/Star16px.d.ts +4 -0
  325. package/dist/icons/components/16px/Star16px.js +24 -0
  326. package/dist/icons/components/16px/Star16pxF.d.ts +4 -0
  327. package/dist/icons/components/16px/Star16pxF.js +22 -0
  328. package/dist/icons/components/16px/StarHalf16pxF.d.ts +4 -0
  329. package/dist/icons/components/16px/StarHalf16pxF.js +24 -0
  330. package/dist/icons/components/16px/Telegram16pxF.d.ts +4 -0
  331. package/dist/icons/components/16px/Telegram16pxF.js +22 -0
  332. package/dist/icons/components/16px/TelegramPlane16pxF.d.ts +4 -0
  333. package/dist/icons/components/16px/TelegramPlane16pxF.js +22 -0
  334. package/dist/icons/components/16px/Timer16px.d.ts +4 -0
  335. package/dist/icons/components/16px/Timer16px.js +40 -0
  336. package/dist/icons/components/16px/Trash16px.d.ts +4 -0
  337. package/dist/icons/components/16px/Trash16px.js +24 -0
  338. package/dist/icons/components/16px/TwinArrowLeft16px.d.ts +4 -0
  339. package/dist/icons/components/16px/TwinArrowLeft16px.js +22 -0
  340. package/dist/icons/components/16px/TwinArrowRight16px.d.ts +4 -0
  341. package/dist/icons/components/16px/TwinArrowRight16px.js +22 -0
  342. package/dist/icons/components/16px/USDollar16px.d.ts +4 -0
  343. package/dist/icons/components/16px/USDollar16px.js +25 -0
  344. package/dist/icons/components/16px/Umbrella16px.d.ts +4 -0
  345. package/dist/icons/components/16px/Umbrella16px.js +24 -0
  346. package/dist/icons/components/16px/Umbrella16pxF.d.ts +4 -0
  347. package/dist/icons/components/16px/Umbrella16pxF.js +22 -0
  348. package/dist/icons/components/16px/UnionIcon16px.d.ts +4 -0
  349. package/dist/icons/components/16px/UnionIcon16px.js +24 -0
  350. package/dist/icons/components/16px/User16px.d.ts +4 -0
  351. package/dist/icons/components/16px/User16px.js +33 -0
  352. package/dist/icons/components/16px/User16pxF.d.ts +4 -0
  353. package/dist/icons/components/16px/User16pxF.js +22 -0
  354. package/dist/icons/components/16px/Users16px.d.ts +4 -0
  355. package/dist/icons/components/16px/Users16px.js +33 -0
  356. package/dist/icons/components/16px/Users16pxF.d.ts +4 -0
  357. package/dist/icons/components/16px/Users16pxF.js +22 -0
  358. package/dist/icons/components/16px/VK16pxF.d.ts +4 -0
  359. package/dist/icons/components/16px/VK16pxF.js +24 -0
  360. package/dist/icons/components/16px/Waiting16px.d.ts +4 -0
  361. package/dist/icons/components/16px/Waiting16px.js +24 -0
  362. package/dist/icons/components/16px/Whatsapp16px.d.ts +4 -0
  363. package/dist/icons/components/16px/Whatsapp16px.js +33 -0
  364. package/dist/icons/components/16px/WriteUs16px.d.ts +4 -0
  365. package/dist/icons/components/16px/WriteUs16px.js +27 -0
  366. package/dist/icons/components/16px/Youtube16pxF.d.ts +4 -0
  367. package/dist/icons/components/16px/Youtube16pxF.js +22 -0
  368. package/dist/icons/components/16px/Yuan16px.d.ts +4 -0
  369. package/dist/icons/components/16px/Yuan16px.js +25 -0
  370. package/dist/icons/components/24px/Accept24px.d.ts +4 -0
  371. package/dist/icons/components/24px/Accept24px.js +29 -0
  372. package/dist/icons/components/24px/Acts24px.d.ts +4 -0
  373. package/dist/icons/components/24px/Acts24px.js +41 -0
  374. package/dist/icons/components/24px/Acts24pxF.d.ts +4 -0
  375. package/dist/icons/components/24px/Acts24pxF.js +34 -0
  376. package/dist/icons/components/24px/AdditionalServicess24px.d.ts +4 -0
  377. package/dist/icons/components/24px/AdditionalServicess24px.js +34 -0
  378. package/dist/icons/components/24px/AdditionalServicess24pxF.d.ts +4 -0
  379. package/dist/icons/components/24px/AdditionalServicess24pxF.js +23 -0
  380. package/dist/icons/components/24px/Agents24px.d.ts +4 -0
  381. package/dist/icons/components/24px/Agents24px.js +25 -0
  382. package/dist/icons/components/24px/Agents24pxF.d.ts +4 -0
  383. package/dist/icons/components/24px/Agents24pxF.js +32 -0
  384. package/dist/icons/components/24px/Alarm24px.d.ts +4 -0
  385. package/dist/icons/components/24px/Alarm24px.js +26 -0
  386. package/dist/icons/components/24px/ArrowDown24px.d.ts +4 -0
  387. package/dist/icons/components/24px/ArrowDown24px.js +25 -0
  388. package/dist/icons/components/24px/ArrowLeft24px.d.ts +4 -0
  389. package/dist/icons/components/24px/ArrowLeft24px.js +25 -0
  390. package/dist/icons/components/24px/ArrowRight24px.d.ts +4 -0
  391. package/dist/icons/components/24px/ArrowRight24px.js +25 -0
  392. package/dist/icons/components/24px/ArrowUp24px.d.ts +4 -0
  393. package/dist/icons/components/24px/ArrowUp24px.js +25 -0
  394. package/dist/icons/components/24px/ArrowUpright24px.d.ts +4 -0
  395. package/dist/icons/components/24px/ArrowUpright24px.js +25 -0
  396. package/dist/icons/components/24px/AttachFile24px.d.ts +4 -0
  397. package/dist/icons/components/24px/AttachFile24px.js +25 -0
  398. package/dist/icons/components/24px/Bell24px.d.ts +4 -0
  399. package/dist/icons/components/24px/Bell24px.js +45 -0
  400. package/dist/icons/components/24px/Bell24pxF.d.ts +4 -0
  401. package/dist/icons/components/24px/Bell24pxF.js +28 -0
  402. package/dist/icons/components/24px/Calculator24px.d.ts +4 -0
  403. package/dist/icons/components/24px/Calculator24px.js +25 -0
  404. package/dist/icons/components/24px/CalculatorLkk24px.d.ts +4 -0
  405. package/dist/icons/components/24px/CalculatorLkk24px.js +34 -0
  406. package/dist/icons/components/24px/CalculatorLkk24pxF.d.ts +4 -0
  407. package/dist/icons/components/24px/CalculatorLkk24pxF.js +25 -0
  408. package/dist/icons/components/24px/Calendar24px.d.ts +4 -0
  409. package/dist/icons/components/24px/Calendar24px.js +25 -0
  410. package/dist/icons/components/24px/Camera24px.d.ts +4 -0
  411. package/dist/icons/components/24px/Camera24px.js +25 -0
  412. package/dist/icons/components/24px/Car24px.d.ts +4 -0
  413. package/dist/icons/components/24px/Car24px.js +36 -0
  414. package/dist/icons/components/24px/Car24pxF.d.ts +4 -0
  415. package/dist/icons/components/24px/Car24pxF.js +34 -0
  416. package/dist/icons/components/24px/Catalog24px.d.ts +4 -0
  417. package/dist/icons/components/24px/Catalog24px.js +25 -0
  418. package/dist/icons/components/24px/Certs24px.d.ts +4 -0
  419. package/dist/icons/components/24px/Certs24px.js +34 -0
  420. package/dist/icons/components/24px/Certs24pxF.d.ts +4 -0
  421. package/dist/icons/components/24px/Certs24pxF.js +34 -0
  422. package/dist/icons/components/24px/Change24px.d.ts +4 -0
  423. package/dist/icons/components/24px/Change24px.js +25 -0
  424. package/dist/icons/components/24px/Chat24px.d.ts +4 -0
  425. package/dist/icons/components/24px/Chat24px.js +30 -0
  426. package/dist/icons/components/24px/Chat24pxF.d.ts +4 -0
  427. package/dist/icons/components/24px/Chat24pxF.js +25 -0
  428. package/dist/icons/components/24px/Chatbot24px.d.ts +4 -0
  429. package/dist/icons/components/24px/Chatbot24px.js +265 -0
  430. package/dist/icons/components/24px/Close24px.d.ts +4 -0
  431. package/dist/icons/components/24px/Close24px.js +25 -0
  432. package/dist/icons/components/24px/CloseFloatMenuArrow24px.d.ts +4 -0
  433. package/dist/icons/components/24px/CloseFloatMenuArrow24px.js +25 -0
  434. package/dist/icons/components/24px/CloseFloatMenuMobileArrow24px.d.ts +4 -0
  435. package/dist/icons/components/24px/CloseFloatMenuMobileArrow24px.js +23 -0
  436. package/dist/icons/components/24px/Coin24px.d.ts +4 -0
  437. package/dist/icons/components/24px/Coin24px.js +26 -0
  438. package/dist/icons/components/24px/Coin24pxF.d.ts +4 -0
  439. package/dist/icons/components/24px/Coin24pxF.js +43 -0
  440. package/dist/icons/components/24px/Contracts24px.d.ts +4 -0
  441. package/dist/icons/components/24px/Contracts24px.js +36 -0
  442. package/dist/icons/components/24px/Contracts24pxF.d.ts +4 -0
  443. package/dist/icons/components/24px/Contracts24pxF.js +34 -0
  444. package/dist/icons/components/24px/CopyClipboard24px.d.ts +4 -0
  445. package/dist/icons/components/24px/CopyClipboard24px.js +28 -0
  446. package/dist/icons/components/24px/Done24px.d.ts +4 -0
  447. package/dist/icons/components/24px/Done24px.js +25 -0
  448. package/dist/icons/components/24px/Download24px.d.ts +4 -0
  449. package/dist/icons/components/24px/Download24px.js +32 -0
  450. package/dist/icons/components/24px/DragHandle24px.d.ts +4 -0
  451. package/dist/icons/components/24px/DragHandle24px.js +23 -0
  452. package/dist/icons/components/24px/DragHandleHorizontal24px.d.ts +4 -0
  453. package/dist/icons/components/24px/DragHandleHorizontal24px.js +23 -0
  454. package/dist/icons/components/24px/DragHandleVertical24px.d.ts +4 -0
  455. package/dist/icons/components/24px/DragHandleVertical24px.js +23 -0
  456. package/dist/icons/components/24px/DropdownArrowDown24px.d.ts +4 -0
  457. package/dist/icons/components/24px/DropdownArrowDown24px.js +25 -0
  458. package/dist/icons/components/24px/DropdownArrowLeft24px.d.ts +4 -0
  459. package/dist/icons/components/24px/DropdownArrowLeft24px.js +25 -0
  460. package/dist/icons/components/24px/DropdownArrowRight24px.d.ts +4 -0
  461. package/dist/icons/components/24px/DropdownArrowRight24px.js +25 -0
  462. package/dist/icons/components/24px/DropdownArrowUp24px.d.ts +4 -0
  463. package/dist/icons/components/24px/DropdownArrowUp24px.js +25 -0
  464. package/dist/icons/components/24px/Dzen24px.d.ts +4 -0
  465. package/dist/icons/components/24px/Dzen24px.js +23 -0
  466. package/dist/icons/components/24px/Euro24px.d.ts +4 -0
  467. package/dist/icons/components/24px/Euro24px.js +26 -0
  468. package/dist/icons/components/24px/Eye24px.d.ts +4 -0
  469. package/dist/icons/components/24px/Eye24px.js +36 -0
  470. package/dist/icons/components/24px/Failure24px.d.ts +4 -0
  471. package/dist/icons/components/24px/Failure24px.js +28 -0
  472. package/dist/icons/components/24px/Favorite24px.d.ts +4 -0
  473. package/dist/icons/components/24px/Favorite24px.js +25 -0
  474. package/dist/icons/components/24px/Favorite24pxF.d.ts +4 -0
  475. package/dist/icons/components/24px/Favorite24pxF.js +23 -0
  476. package/dist/icons/components/24px/Filter24px.d.ts +4 -0
  477. package/dist/icons/components/24px/Filter24px.js +23 -0
  478. package/dist/icons/components/24px/Flag24pxF.d.ts +4 -0
  479. package/dist/icons/components/24px/Flag24pxF.js +17 -0
  480. package/dist/icons/components/24px/Folder24px.d.ts +4 -0
  481. package/dist/icons/components/24px/Folder24px.js +25 -0
  482. package/dist/icons/components/24px/Fullscreen24px.d.ts +4 -0
  483. package/dist/icons/components/24px/Fullscreen24px.js +25 -0
  484. package/dist/icons/components/24px/Galery24px.d.ts +4 -0
  485. package/dist/icons/components/24px/Galery24px.js +28 -0
  486. package/dist/icons/components/24px/Gear24px.d.ts +4 -0
  487. package/dist/icons/components/24px/Gear24px.js +36 -0
  488. package/dist/icons/components/24px/Gift24px.d.ts +4 -0
  489. package/dist/icons/components/24px/Gift24px.js +25 -0
  490. package/dist/icons/components/24px/Hint24px.d.ts +4 -0
  491. package/dist/icons/components/24px/Hint24px.js +28 -0
  492. package/dist/icons/components/24px/Home24px.d.ts +4 -0
  493. package/dist/icons/components/24px/Home24px.js +36 -0
  494. package/dist/icons/components/24px/Home24pxF.d.ts +4 -0
  495. package/dist/icons/components/24px/Home24pxF.js +25 -0
  496. package/dist/icons/components/24px/Hot24pxF.d.ts +4 -0
  497. package/dist/icons/components/24px/Hot24pxF.js +23 -0
  498. package/dist/icons/components/24px/Improvements24px.d.ts +4 -0
  499. package/dist/icons/components/24px/Improvements24px.js +43 -0
  500. package/dist/icons/components/24px/Improvements24pxF.d.ts +4 -0
  501. package/dist/icons/components/24px/Improvements24pxF.js +37 -0
  502. package/dist/icons/components/24px/Kebab24px.d.ts +4 -0
  503. package/dist/icons/components/24px/Kebab24px.js +23 -0
  504. package/dist/icons/components/24px/List24px.d.ts +4 -0
  505. package/dist/icons/components/24px/List24px.js +23 -0
  506. package/dist/icons/components/24px/Location24px.d.ts +4 -0
  507. package/dist/icons/components/24px/Location24px.js +36 -0
  508. package/dist/icons/components/24px/Map24px.d.ts +4 -0
  509. package/dist/icons/components/24px/Map24px.js +25 -0
  510. package/dist/icons/components/24px/Menu24px.d.ts +4 -0
  511. package/dist/icons/components/24px/Menu24px.js +23 -0
  512. package/dist/icons/components/24px/MenuMobile24px.d.ts +4 -0
  513. package/dist/icons/components/24px/MenuMobile24px.js +25 -0
  514. package/dist/icons/components/24px/Minus24px.d.ts +4 -0
  515. package/dist/icons/components/24px/Minus24px.js +25 -0
  516. package/dist/icons/components/24px/Navigation24px.d.ts +4 -0
  517. package/dist/icons/components/24px/Navigation24px.js +25 -0
  518. package/dist/icons/components/24px/News24px.d.ts +4 -0
  519. package/dist/icons/components/24px/News24px.js +34 -0
  520. package/dist/icons/components/24px/News24pxF.d.ts +4 -0
  521. package/dist/icons/components/24px/News24pxF.js +25 -0
  522. package/dist/icons/components/24px/Number24px.d.ts +4 -0
  523. package/dist/icons/components/24px/Number24px.js +34 -0
  524. package/dist/icons/components/24px/OpenFloatMenuArrow24px.d.ts +4 -0
  525. package/dist/icons/components/24px/OpenFloatMenuArrow24px.js +23 -0
  526. package/dist/icons/components/24px/OpenFloatMenuMobileArrow24px.d.ts +4 -0
  527. package/dist/icons/components/24px/OpenFloatMenuMobileArrow24px.js +25 -0
  528. package/dist/icons/components/24px/Orders24px.d.ts +4 -0
  529. package/dist/icons/components/24px/Orders24px.js +34 -0
  530. package/dist/icons/components/24px/Orders24pxF.d.ts +4 -0
  531. package/dist/icons/components/24px/Orders24pxF.js +28 -0
  532. package/dist/icons/components/24px/Pause24px.d.ts +4 -0
  533. package/dist/icons/components/24px/Pause24px.js +17 -0
  534. package/dist/icons/components/24px/Pen24px.d.ts +4 -0
  535. package/dist/icons/components/24px/Pen24px.js +36 -0
  536. package/dist/icons/components/24px/Pen24pxF.d.ts +4 -0
  537. package/dist/icons/components/24px/Pen24pxF.js +25 -0
  538. package/dist/icons/components/24px/Phone24px.d.ts +4 -0
  539. package/dist/icons/components/24px/Phone24px.js +25 -0
  540. package/dist/icons/components/24px/Play24px.d.ts +4 -0
  541. package/dist/icons/components/24px/Play24px.js +23 -0
  542. package/dist/icons/components/24px/Plus24px.d.ts +4 -0
  543. package/dist/icons/components/24px/Plus24px.js +25 -0
  544. package/dist/icons/components/24px/Pound24px.d.ts +4 -0
  545. package/dist/icons/components/24px/Pound24px.js +26 -0
  546. package/dist/icons/components/24px/PriceDown24px.d.ts +4 -0
  547. package/dist/icons/components/24px/PriceDown24px.js +34 -0
  548. package/dist/icons/components/24px/PriceUp24px.d.ts +4 -0
  549. package/dist/icons/components/24px/PriceUp24px.js +34 -0
  550. package/dist/icons/components/24px/Question24px.d.ts +4 -0
  551. package/dist/icons/components/24px/Question24px.js +34 -0
  552. package/dist/icons/components/24px/Question24pxF.d.ts +4 -0
  553. package/dist/icons/components/24px/Question24pxF.js +25 -0
  554. package/dist/icons/components/24px/Rutube24px.d.ts +4 -0
  555. package/dist/icons/components/24px/Rutube24px.js +23 -0
  556. package/dist/icons/components/24px/Scan24px.d.ts +4 -0
  557. package/dist/icons/components/24px/Scan24px.js +23 -0
  558. package/dist/icons/components/24px/Search24px.d.ts +4 -0
  559. package/dist/icons/components/24px/Search24px.js +25 -0
  560. package/dist/icons/components/24px/Share24pxF.d.ts +4 -0
  561. package/dist/icons/components/24px/Share24pxF.js +23 -0
  562. package/dist/icons/components/24px/ShopingCard24px.d.ts +4 -0
  563. package/dist/icons/components/24px/ShopingCard24px.js +25 -0
  564. package/dist/icons/components/24px/Sort24px.d.ts +4 -0
  565. package/dist/icons/components/24px/Sort24px.js +23 -0
  566. package/dist/icons/components/24px/Star24px.d.ts +4 -0
  567. package/dist/icons/components/24px/Star24px.js +25 -0
  568. package/dist/icons/components/24px/Star24pxF.d.ts +4 -0
  569. package/dist/icons/components/24px/Star24pxF.js +23 -0
  570. package/dist/icons/components/24px/StarHalf24pxF.d.ts +4 -0
  571. package/dist/icons/components/24px/StarHalf24pxF.js +25 -0
  572. package/dist/icons/components/24px/Telegram24pxF.d.ts +4 -0
  573. package/dist/icons/components/24px/Telegram24pxF.js +23 -0
  574. package/dist/icons/components/24px/TelegramPlane24pxF.d.ts +4 -0
  575. package/dist/icons/components/24px/TelegramPlane24pxF.js +23 -0
  576. package/dist/icons/components/24px/Timer24px.d.ts +4 -0
  577. package/dist/icons/components/24px/Timer24px.js +41 -0
  578. package/dist/icons/components/24px/Trash24px.d.ts +4 -0
  579. package/dist/icons/components/24px/Trash24px.js +45 -0
  580. package/dist/icons/components/24px/TwinArrowLeft24px.d.ts +4 -0
  581. package/dist/icons/components/24px/TwinArrowLeft24px.js +23 -0
  582. package/dist/icons/components/24px/TwinArrowRight24px.d.ts +4 -0
  583. package/dist/icons/components/24px/TwinArrowRight24px.js +25 -0
  584. package/dist/icons/components/24px/USDollar24px.d.ts +4 -0
  585. package/dist/icons/components/24px/USDollar24px.js +26 -0
  586. package/dist/icons/components/24px/Umbrella24px.d.ts +4 -0
  587. package/dist/icons/components/24px/Umbrella24px.js +25 -0
  588. package/dist/icons/components/24px/Umbrella24pxF.d.ts +4 -0
  589. package/dist/icons/components/24px/Umbrella24pxF.js +23 -0
  590. package/dist/icons/components/24px/UnionIcon24px.d.ts +4 -0
  591. package/dist/icons/components/24px/UnionIcon24px.js +25 -0
  592. package/dist/icons/components/24px/User24px.d.ts +4 -0
  593. package/dist/icons/components/24px/User24px.js +34 -0
  594. package/dist/icons/components/24px/User24pxF.d.ts +4 -0
  595. package/dist/icons/components/24px/User24pxF.js +23 -0
  596. package/dist/icons/components/24px/Users24px.d.ts +4 -0
  597. package/dist/icons/components/24px/Users24px.js +25 -0
  598. package/dist/icons/components/24px/Users24pxF.d.ts +4 -0
  599. package/dist/icons/components/24px/Users24pxF.js +32 -0
  600. package/dist/icons/components/24px/VK24pxF.d.ts +4 -0
  601. package/dist/icons/components/24px/VK24pxF.js +25 -0
  602. package/dist/icons/components/24px/Waiting24px.d.ts +4 -0
  603. package/dist/icons/components/24px/Waiting24px.js +25 -0
  604. package/dist/icons/components/24px/Whatsapp24px.d.ts +4 -0
  605. package/dist/icons/components/24px/Whatsapp24px.js +34 -0
  606. package/dist/icons/components/24px/WriteUs24px.d.ts +4 -0
  607. package/dist/icons/components/24px/WriteUs24px.js +28 -0
  608. package/dist/icons/components/24px/Youtube24pxF.d.ts +4 -0
  609. package/dist/icons/components/24px/Youtube24pxF.js +23 -0
  610. package/dist/icons/components/24px/Yuan24px.d.ts +4 -0
  611. package/dist/icons/components/24px/Yuan24px.js +26 -0
  612. package/dist/icons/components/32px/Accept32px.d.ts +4 -0
  613. package/dist/icons/components/32px/Accept32px.js +28 -0
  614. package/dist/icons/components/32px/Acts32px.d.ts +4 -0
  615. package/dist/icons/components/32px/Acts32px.js +41 -0
  616. package/dist/icons/components/32px/AdditionalServicess32px.d.ts +4 -0
  617. package/dist/icons/components/32px/AdditionalServicess32px.js +25 -0
  618. package/dist/icons/components/32px/AdditionalServicess32pxF.d.ts +4 -0
  619. package/dist/icons/components/32px/AdditionalServicess32pxF.js +23 -0
  620. package/dist/icons/components/32px/Agents32px.d.ts +4 -0
  621. package/dist/icons/components/32px/Agents32px.js +37 -0
  622. package/dist/icons/components/32px/Alarm32px.d.ts +4 -0
  623. package/dist/icons/components/32px/Alarm32px.js +26 -0
  624. package/dist/icons/components/32px/ArrowDown32px.d.ts +4 -0
  625. package/dist/icons/components/32px/ArrowDown32px.js +25 -0
  626. package/dist/icons/components/32px/ArrowLeft32px.d.ts +4 -0
  627. package/dist/icons/components/32px/ArrowLeft32px.js +25 -0
  628. package/dist/icons/components/32px/ArrowRight32px.d.ts +4 -0
  629. package/dist/icons/components/32px/ArrowRight32px.js +25 -0
  630. package/dist/icons/components/32px/ArrowUp32px.d.ts +4 -0
  631. package/dist/icons/components/32px/ArrowUp32px.js +25 -0
  632. package/dist/icons/components/32px/ArrowUpright32px.d.ts +4 -0
  633. package/dist/icons/components/32px/ArrowUpright32px.js +25 -0
  634. package/dist/icons/components/32px/AttachFile32px.d.ts +4 -0
  635. package/dist/icons/components/32px/AttachFile32px.js +25 -0
  636. package/dist/icons/components/32px/Bell32px.d.ts +4 -0
  637. package/dist/icons/components/32px/Bell32px.js +45 -0
  638. package/dist/icons/components/32px/Bell32pxF.d.ts +4 -0
  639. package/dist/icons/components/32px/Bell32pxF.js +28 -0
  640. package/dist/icons/components/32px/Calculator32px.d.ts +4 -0
  641. package/dist/icons/components/32px/Calculator32px.js +25 -0
  642. package/dist/icons/components/32px/CalculatorLkk32px.d.ts +4 -0
  643. package/dist/icons/components/32px/CalculatorLkk32px.js +34 -0
  644. package/dist/icons/components/32px/CalculatorLkk32pxF.d.ts +4 -0
  645. package/dist/icons/components/32px/CalculatorLkk32pxF.js +25 -0
  646. package/dist/icons/components/32px/Calendar32px.d.ts +4 -0
  647. package/dist/icons/components/32px/Calendar32px.js +25 -0
  648. package/dist/icons/components/32px/Camera32px.d.ts +4 -0
  649. package/dist/icons/components/32px/Camera32px.js +37 -0
  650. package/dist/icons/components/32px/Car32px.d.ts +4 -0
  651. package/dist/icons/components/32px/Car32px.js +36 -0
  652. package/dist/icons/components/32px/Car32pxF.d.ts +4 -0
  653. package/dist/icons/components/32px/Car32pxF.js +28 -0
  654. package/dist/icons/components/32px/Catalog32px.d.ts +4 -0
  655. package/dist/icons/components/32px/Catalog32px.js +25 -0
  656. package/dist/icons/components/32px/Certs32px.d.ts +4 -0
  657. package/dist/icons/components/32px/Certs32px.js +34 -0
  658. package/dist/icons/components/32px/Certs32pxF.d.ts +4 -0
  659. package/dist/icons/components/32px/Certs32pxF.js +34 -0
  660. package/dist/icons/components/32px/Change32px.d.ts +4 -0
  661. package/dist/icons/components/32px/Change32px.js +25 -0
  662. package/dist/icons/components/32px/Chat32px.d.ts +4 -0
  663. package/dist/icons/components/32px/Chat32px.js +34 -0
  664. package/dist/icons/components/32px/Chat32pxF.d.ts +4 -0
  665. package/dist/icons/components/32px/Chat32pxF.js +25 -0
  666. package/dist/icons/components/32px/Chatbot32px.d.ts +4 -0
  667. package/dist/icons/components/32px/Chatbot32px.js +265 -0
  668. package/dist/icons/components/32px/Close32px.d.ts +4 -0
  669. package/dist/icons/components/32px/Close32px.js +25 -0
  670. package/dist/icons/components/32px/CloseFloatMenuArrow32px.d.ts +4 -0
  671. package/dist/icons/components/32px/CloseFloatMenuArrow32px.js +23 -0
  672. package/dist/icons/components/32px/CloseFloatMenuMobileArrow32px.d.ts +4 -0
  673. package/dist/icons/components/32px/CloseFloatMenuMobileArrow32px.js +23 -0
  674. package/dist/icons/components/32px/Coin32px.d.ts +4 -0
  675. package/dist/icons/components/32px/Coin32px.js +36 -0
  676. package/dist/icons/components/32px/Coin32pxF.d.ts +4 -0
  677. package/dist/icons/components/32px/Coin32pxF.js +34 -0
  678. package/dist/icons/components/32px/Contracts32px.d.ts +4 -0
  679. package/dist/icons/components/32px/Contracts32px.js +36 -0
  680. package/dist/icons/components/32px/Contracts32pxF.d.ts +4 -0
  681. package/dist/icons/components/32px/Contracts32pxF.js +34 -0
  682. package/dist/icons/components/32px/CopyClipboard32px.d.ts +4 -0
  683. package/dist/icons/components/32px/CopyClipboard32px.js +34 -0
  684. package/dist/icons/components/32px/Done32px.d.ts +4 -0
  685. package/dist/icons/components/32px/Done32px.js +25 -0
  686. package/dist/icons/components/32px/Download32px.d.ts +4 -0
  687. package/dist/icons/components/32px/Download32px.js +32 -0
  688. package/dist/icons/components/32px/DragHandle32px.d.ts +4 -0
  689. package/dist/icons/components/32px/DragHandle32px.js +23 -0
  690. package/dist/icons/components/32px/DragHandleHorizontal32px.d.ts +4 -0
  691. package/dist/icons/components/32px/DragHandleHorizontal32px.js +23 -0
  692. package/dist/icons/components/32px/DragHandleVertical32px.d.ts +4 -0
  693. package/dist/icons/components/32px/DragHandleVertical32px.js +23 -0
  694. package/dist/icons/components/32px/DropdownArrowDown32px.d.ts +4 -0
  695. package/dist/icons/components/32px/DropdownArrowDown32px.js +25 -0
  696. package/dist/icons/components/32px/DropdownArrowLeft32px.d.ts +4 -0
  697. package/dist/icons/components/32px/DropdownArrowLeft32px.js +25 -0
  698. package/dist/icons/components/32px/DropdownArrowRight32px.d.ts +4 -0
  699. package/dist/icons/components/32px/DropdownArrowRight32px.js +25 -0
  700. package/dist/icons/components/32px/DropdownArrowUp32px.d.ts +4 -0
  701. package/dist/icons/components/32px/DropdownArrowUp32px.js +17 -0
  702. package/dist/icons/components/32px/Dzen32px.d.ts +4 -0
  703. package/dist/icons/components/32px/Dzen32px.js +23 -0
  704. package/dist/icons/components/32px/Euro32px.d.ts +4 -0
  705. package/dist/icons/components/32px/Euro32px.js +26 -0
  706. package/dist/icons/components/32px/Eye32px.d.ts +4 -0
  707. package/dist/icons/components/32px/Eye32px.js +36 -0
  708. package/dist/icons/components/32px/Failure32px.d.ts +4 -0
  709. package/dist/icons/components/32px/Failure32px.js +28 -0
  710. package/dist/icons/components/32px/Favorite32px.d.ts +4 -0
  711. package/dist/icons/components/32px/Favorite32px.js +25 -0
  712. package/dist/icons/components/32px/Favorite32pxF.d.ts +4 -0
  713. package/dist/icons/components/32px/Favorite32pxF.js +23 -0
  714. package/dist/icons/components/32px/Filter32px.d.ts +4 -0
  715. package/dist/icons/components/32px/Filter32px.js +23 -0
  716. package/dist/icons/components/32px/Flag32pxF.d.ts +4 -0
  717. package/dist/icons/components/32px/Flag32pxF.js +17 -0
  718. package/dist/icons/components/32px/Folder32px.d.ts +4 -0
  719. package/dist/icons/components/32px/Folder32px.js +25 -0
  720. package/dist/icons/components/32px/Fullscreen32px.d.ts +4 -0
  721. package/dist/icons/components/32px/Fullscreen32px.js +25 -0
  722. package/dist/icons/components/32px/Galery32px.d.ts +4 -0
  723. package/dist/icons/components/32px/Galery32px.js +28 -0
  724. package/dist/icons/components/32px/Gear32px.d.ts +4 -0
  725. package/dist/icons/components/32px/Gear32px.js +36 -0
  726. package/dist/icons/components/32px/Gift32px.d.ts +4 -0
  727. package/dist/icons/components/32px/Gift32px.js +25 -0
  728. package/dist/icons/components/32px/Hint32px.d.ts +4 -0
  729. package/dist/icons/components/32px/Hint32px.js +28 -0
  730. package/dist/icons/components/32px/Home32px.d.ts +4 -0
  731. package/dist/icons/components/32px/Home32px.js +28 -0
  732. package/dist/icons/components/32px/Home32pxF.d.ts +4 -0
  733. package/dist/icons/components/32px/Home32pxF.js +25 -0
  734. package/dist/icons/components/32px/Hot32pxF.d.ts +4 -0
  735. package/dist/icons/components/32px/Hot32pxF.js +23 -0
  736. package/dist/icons/components/32px/Kebab32px.d.ts +4 -0
  737. package/dist/icons/components/32px/Kebab32px.js +17 -0
  738. package/dist/icons/components/32px/List32px.d.ts +4 -0
  739. package/dist/icons/components/32px/List32px.js +23 -0
  740. package/dist/icons/components/32px/Location32px.d.ts +4 -0
  741. package/dist/icons/components/32px/Location32px.js +36 -0
  742. package/dist/icons/components/32px/Map32px.d.ts +4 -0
  743. package/dist/icons/components/32px/Map32px.js +25 -0
  744. package/dist/icons/components/32px/Menu32px.d.ts +4 -0
  745. package/dist/icons/components/32px/Menu32px.js +23 -0
  746. package/dist/icons/components/32px/MenuMobile32px.d.ts +4 -0
  747. package/dist/icons/components/32px/MenuMobile32px.js +25 -0
  748. package/dist/icons/components/32px/Minus32px.d.ts +4 -0
  749. package/dist/icons/components/32px/Minus32px.js +25 -0
  750. package/dist/icons/components/32px/Navigation32px.d.ts +4 -0
  751. package/dist/icons/components/32px/Navigation32px.js +25 -0
  752. package/dist/icons/components/32px/News32px.d.ts +4 -0
  753. package/dist/icons/components/32px/News32px.js +34 -0
  754. package/dist/icons/components/32px/News32pxF.d.ts +4 -0
  755. package/dist/icons/components/32px/News32pxF.js +25 -0
  756. package/dist/icons/components/32px/Number32px.d.ts +4 -0
  757. package/dist/icons/components/32px/Number32px.js +34 -0
  758. package/dist/icons/components/32px/OpenFloatMenuArrow32px.d.ts +4 -0
  759. package/dist/icons/components/32px/OpenFloatMenuArrow32px.js +23 -0
  760. package/dist/icons/components/32px/OpenFloatMenuMobileArrow32px.d.ts +4 -0
  761. package/dist/icons/components/32px/OpenFloatMenuMobileArrow32px.js +25 -0
  762. package/dist/icons/components/32px/Orders32px.d.ts +4 -0
  763. package/dist/icons/components/32px/Orders32px.js +43 -0
  764. package/dist/icons/components/32px/Orders32pxF.d.ts +4 -0
  765. package/dist/icons/components/32px/Orders32pxF.js +34 -0
  766. package/dist/icons/components/32px/Pause32px.d.ts +4 -0
  767. package/dist/icons/components/32px/Pause32px.js +17 -0
  768. package/dist/icons/components/32px/Pen32px.d.ts +4 -0
  769. package/dist/icons/components/32px/Pen32px.js +24 -0
  770. package/dist/icons/components/32px/Pen32pxF.d.ts +4 -0
  771. package/dist/icons/components/32px/Pen32pxF.js +25 -0
  772. package/dist/icons/components/32px/Phone32px.d.ts +4 -0
  773. package/dist/icons/components/32px/Phone32px.js +23 -0
  774. package/dist/icons/components/32px/Play32px.d.ts +4 -0
  775. package/dist/icons/components/32px/Play32px.js +23 -0
  776. package/dist/icons/components/32px/Plus32px.d.ts +4 -0
  777. package/dist/icons/components/32px/Plus32px.js +25 -0
  778. package/dist/icons/components/32px/Pound32px.d.ts +4 -0
  779. package/dist/icons/components/32px/Pound32px.js +26 -0
  780. package/dist/icons/components/32px/PriceDown32px.d.ts +4 -0
  781. package/dist/icons/components/32px/PriceDown32px.js +45 -0
  782. package/dist/icons/components/32px/PriceUp32px.d.ts +4 -0
  783. package/dist/icons/components/32px/PriceUp32px.js +36 -0
  784. package/dist/icons/components/32px/Question32px.d.ts +4 -0
  785. package/dist/icons/components/32px/Question32px.js +34 -0
  786. package/dist/icons/components/32px/Question32pxF.d.ts +4 -0
  787. package/dist/icons/components/32px/Question32pxF.js +25 -0
  788. package/dist/icons/components/32px/Rutube32px.d.ts +4 -0
  789. package/dist/icons/components/32px/Rutube32px.js +23 -0
  790. package/dist/icons/components/32px/Scan32px.d.ts +4 -0
  791. package/dist/icons/components/32px/Scan32px.js +23 -0
  792. package/dist/icons/components/32px/Search32px.d.ts +4 -0
  793. package/dist/icons/components/32px/Search32px.js +25 -0
  794. package/dist/icons/components/32px/Share32pxF.d.ts +4 -0
  795. package/dist/icons/components/32px/Share32pxF.js +23 -0
  796. package/dist/icons/components/32px/ShopimgCard32px.d.ts +4 -0
  797. package/dist/icons/components/32px/ShopimgCard32px.js +25 -0
  798. package/dist/icons/components/32px/Sort32px.d.ts +4 -0
  799. package/dist/icons/components/32px/Sort32px.js +23 -0
  800. package/dist/icons/components/32px/Star32px.d.ts +4 -0
  801. package/dist/icons/components/32px/Star32px.js +25 -0
  802. package/dist/icons/components/32px/Star32pxF.d.ts +4 -0
  803. package/dist/icons/components/32px/Star32pxF.js +23 -0
  804. package/dist/icons/components/32px/StarHalf32pxF.d.ts +4 -0
  805. package/dist/icons/components/32px/StarHalf32pxF.js +25 -0
  806. package/dist/icons/components/32px/Telegram32pxF.d.ts +4 -0
  807. package/dist/icons/components/32px/Telegram32pxF.js +23 -0
  808. package/dist/icons/components/32px/TelegramPlane32pxF.d.ts +4 -0
  809. package/dist/icons/components/32px/TelegramPlane32pxF.js +23 -0
  810. package/dist/icons/components/32px/Timer32px.d.ts +4 -0
  811. package/dist/icons/components/32px/Timer32px.js +35 -0
  812. package/dist/icons/components/32px/Trash32px.d.ts +4 -0
  813. package/dist/icons/components/32px/Trash32px.js +45 -0
  814. package/dist/icons/components/32px/TwinArrowLeft32px.d.ts +4 -0
  815. package/dist/icons/components/32px/TwinArrowLeft32px.js +23 -0
  816. package/dist/icons/components/32px/TwinArrowRight32px.d.ts +4 -0
  817. package/dist/icons/components/32px/TwinArrowRight32px.js +23 -0
  818. package/dist/icons/components/32px/USDollar32px.d.ts +4 -0
  819. package/dist/icons/components/32px/USDollar32px.js +26 -0
  820. package/dist/icons/components/32px/Umbrella32px.d.ts +4 -0
  821. package/dist/icons/components/32px/Umbrella32px.js +25 -0
  822. package/dist/icons/components/32px/Umbrella32pxF.d.ts +4 -0
  823. package/dist/icons/components/32px/Umbrella32pxF.js +25 -0
  824. package/dist/icons/components/32px/UnionIcon32px.d.ts +4 -0
  825. package/dist/icons/components/32px/UnionIcon32px.js +25 -0
  826. package/dist/icons/components/32px/User32px.d.ts +4 -0
  827. package/dist/icons/components/32px/User32px.js +34 -0
  828. package/dist/icons/components/32px/User32pxF.d.ts +4 -0
  829. package/dist/icons/components/32px/User32pxF.js +23 -0
  830. package/dist/icons/components/32px/Users32px.d.ts +4 -0
  831. package/dist/icons/components/32px/Users32px.js +25 -0
  832. package/dist/icons/components/32px/Users32pxF.d.ts +4 -0
  833. package/dist/icons/components/32px/Users32pxF.js +26 -0
  834. package/dist/icons/components/32px/VK32pxF.d.ts +4 -0
  835. package/dist/icons/components/32px/VK32pxF.js +25 -0
  836. package/dist/icons/components/32px/Waiting32px.d.ts +4 -0
  837. package/dist/icons/components/32px/Waiting32px.js +25 -0
  838. package/dist/icons/components/32px/Whatsapp32px.d.ts +4 -0
  839. package/dist/icons/components/32px/Whatsapp32px.js +34 -0
  840. package/dist/icons/components/32px/WriteUs32px.d.ts +4 -0
  841. package/dist/icons/components/32px/WriteUs32px.js +28 -0
  842. package/dist/icons/components/32px/Youtube32pxF.d.ts +4 -0
  843. package/dist/icons/components/32px/Youtube32pxF.js +23 -0
  844. package/dist/icons/components/32px/Yuan32px.d.ts +4 -0
  845. package/dist/icons/components/32px/Yuan32px.js +26 -0
  846. package/dist/icons/components/Mans.d.ts +4 -0
  847. package/dist/icons/components/Mans.js +21 -0
  848. package/dist/icons/components/Step.d.ts +4 -0
  849. package/dist/icons/components/Step.js +22 -0
  850. package/dist/icons/components/auto-logo/ACE.d.ts +4 -0
  851. package/dist/icons/components/auto-logo/ACE.js +23 -0
  852. package/dist/icons/components/auto-logo/Alim.d.ts +4 -0
  853. package/dist/icons/components/auto-logo/Alim.js +25 -0
  854. package/dist/icons/components/auto-logo/Amur.d.ts +4 -0
  855. package/dist/icons/components/auto-logo/Amur.js +25 -0
  856. package/dist/icons/components/auto-logo/Ankai.d.ts +4 -0
  857. package/dist/icons/components/auto-logo/Ankai.js +25 -0
  858. package/dist/icons/components/auto-logo/ArrowLength.d.ts +4 -0
  859. package/dist/icons/components/auto-logo/ArrowLength.js +23 -0
  860. package/dist/icons/components/auto-logo/Audi.d.ts +4 -0
  861. package/dist/icons/components/auto-logo/Audi.js +22 -0
  862. package/dist/icons/components/auto-logo/BMW.d.ts +4 -0
  863. package/dist/icons/components/auto-logo/BMW.js +43 -0
  864. package/dist/icons/components/auto-logo/BRP.d.ts +4 -0
  865. package/dist/icons/components/auto-logo/BRP.js +34 -0
  866. package/dist/icons/components/auto-logo/Bomag.d.ts +4 -0
  867. package/dist/icons/components/auto-logo/Bomag.js +34 -0
  868. package/dist/icons/components/auto-logo/Case.d.ts +4 -0
  869. package/dist/icons/components/auto-logo/Case.js +25 -0
  870. package/dist/icons/components/auto-logo/Caterpillar.d.ts +4 -0
  871. package/dist/icons/components/auto-logo/Caterpillar.js +39 -0
  872. package/dist/icons/components/auto-logo/ChMZAP.d.ts +4 -0
  873. package/dist/icons/components/auto-logo/ChMZAP.js +48 -0
  874. package/dist/icons/components/auto-logo/ChTZ.d.ts +4 -0
  875. package/dist/icons/components/auto-logo/ChTZ.js +34 -0
  876. package/dist/icons/components/auto-logo/Changan.d.ts +4 -0
  877. package/dist/icons/components/auto-logo/Changan.js +23 -0
  878. package/dist/icons/components/auto-logo/Cherry.d.ts +4 -0
  879. package/dist/icons/components/auto-logo/Cherry.js +34 -0
  880. package/dist/icons/components/auto-logo/Citroen.d.ts +4 -0
  881. package/dist/icons/components/auto-logo/Citroen.js +25 -0
  882. package/dist/icons/components/auto-logo/DaewooFull.d.ts +4 -0
  883. package/dist/icons/components/auto-logo/DaewooFull.js +60 -0
  884. package/dist/icons/components/auto-logo/DaewooSymbol.d.ts +4 -0
  885. package/dist/icons/components/auto-logo/DaewooSymbol.js +53 -0
  886. package/dist/icons/components/auto-logo/Daf.d.ts +4 -0
  887. package/dist/icons/components/auto-logo/Daf.js +25 -0
  888. package/dist/icons/components/auto-logo/Dayun.d.ts +4 -0
  889. package/dist/icons/components/auto-logo/Dayun.js +25 -0
  890. package/dist/icons/components/auto-logo/DongFeng.d.ts +4 -0
  891. package/dist/icons/components/auto-logo/DongFeng.js +25 -0
  892. package/dist/icons/components/auto-logo/Ducati.d.ts +4 -0
  893. package/dist/icons/components/auto-logo/Ducati.js +34 -0
  894. package/dist/icons/components/auto-logo/Exeed.d.ts +4 -0
  895. package/dist/icons/components/auto-logo/Exeed.js +34 -0
  896. package/dist/icons/components/auto-logo/Faw.d.ts +4 -0
  897. package/dist/icons/components/auto-logo/Faw.js +36 -0
  898. package/dist/icons/components/auto-logo/Fenix.d.ts +4 -0
  899. package/dist/icons/components/auto-logo/Fenix.js +116 -0
  900. package/dist/icons/components/auto-logo/Fiat.d.ts +4 -0
  901. package/dist/icons/components/auto-logo/Fiat.js +39 -0
  902. package/dist/icons/components/auto-logo/Ford.d.ts +4 -0
  903. package/dist/icons/components/auto-logo/Ford.js +43 -0
  904. package/dist/icons/components/auto-logo/Foton.d.ts +4 -0
  905. package/dist/icons/components/auto-logo/Foton.js +34 -0
  906. package/dist/icons/components/auto-logo/Gac.d.ts +4 -0
  907. package/dist/icons/components/auto-logo/Gac.js +23 -0
  908. package/dist/icons/components/auto-logo/Gaz.d.ts +4 -0
  909. package/dist/icons/components/auto-logo/Gaz.js +61 -0
  910. package/dist/icons/components/auto-logo/Geely.d.ts +4 -0
  911. package/dist/icons/components/auto-logo/Geely.js +27 -0
  912. package/dist/icons/components/auto-logo/Genesis.d.ts +4 -0
  913. package/dist/icons/components/auto-logo/Genesis.js +32 -0
  914. package/dist/icons/components/auto-logo/Gitte.d.ts +4 -0
  915. package/dist/icons/components/auto-logo/Gitte.js +25 -0
  916. package/dist/icons/components/auto-logo/Grunwald.d.ts +4 -0
  917. package/dist/icons/components/auto-logo/Grunwald.js +25 -0
  918. package/dist/icons/components/auto-logo/HartungFull.d.ts +4 -0
  919. package/dist/icons/components/auto-logo/HartungFull.js +34 -0
  920. package/dist/icons/components/auto-logo/HartungSymbol.d.ts +4 -0
  921. package/dist/icons/components/auto-logo/HartungSymbol.js +34 -0
  922. package/dist/icons/components/auto-logo/Haval.d.ts +4 -0
  923. package/dist/icons/components/auto-logo/Haval.js +25 -0
  924. package/dist/icons/components/auto-logo/Higer.d.ts +4 -0
  925. package/dist/icons/components/auto-logo/Higer.js +25 -0
  926. package/dist/icons/components/auto-logo/Hitachi.d.ts +4 -0
  927. package/dist/icons/components/auto-logo/Hitachi.js +23 -0
  928. package/dist/icons/components/auto-logo/Honda.d.ts +4 -0
  929. package/dist/icons/components/auto-logo/Honda.js +39 -0
  930. package/dist/icons/components/auto-logo/Hongqi.d.ts +4 -0
  931. package/dist/icons/components/auto-logo/Hongqi.js +32 -0
  932. package/dist/icons/components/auto-logo/Hongyan.d.ts +4 -0
  933. package/dist/icons/components/auto-logo/Hongyan.js +25 -0
  934. package/dist/icons/components/auto-logo/Howo.d.ts +4 -0
  935. package/dist/icons/components/auto-logo/Howo.js +48 -0
  936. package/dist/icons/components/auto-logo/Hyundai.d.ts +4 -0
  937. package/dist/icons/components/auto-logo/Hyundai.js +25 -0
  938. package/dist/icons/components/auto-logo/Infiniti.d.ts +4 -0
  939. package/dist/icons/components/auto-logo/Infiniti.js +23 -0
  940. package/dist/icons/components/auto-logo/Isuzu.d.ts +4 -0
  941. package/dist/icons/components/auto-logo/Isuzu.js +25 -0
  942. package/dist/icons/components/auto-logo/Iveco.d.ts +4 -0
  943. package/dist/icons/components/auto-logo/Iveco.js +25 -0
  944. package/dist/icons/components/auto-logo/JCB.d.ts +4 -0
  945. package/dist/icons/components/auto-logo/JCB.js +34 -0
  946. package/dist/icons/components/auto-logo/Jac.d.ts +4 -0
  947. package/dist/icons/components/auto-logo/Jac.js +23 -0
  948. package/dist/icons/components/auto-logo/Juterborg.d.ts +4 -0
  949. package/dist/icons/components/auto-logo/Juterborg.js +59 -0
  950. package/dist/icons/components/auto-logo/KIA.d.ts +4 -0
  951. package/dist/icons/components/auto-logo/KIA.js +25 -0
  952. package/dist/icons/components/auto-logo/Kaiyi.d.ts +4 -0
  953. package/dist/icons/components/auto-logo/Kaiyi.js +25 -0
  954. package/dist/icons/components/auto-logo/Kamaz.d.ts +4 -0
  955. package/dist/icons/components/auto-logo/Kamaz.js +37 -0
  956. package/dist/icons/components/auto-logo/Kassbohrer.d.ts +4 -0
  957. package/dist/icons/components/auto-logo/Kassbohrer.js +25 -0
  958. package/dist/icons/components/auto-logo/Komatsu.d.ts +4 -0
  959. package/dist/icons/components/auto-logo/Komatsu.js +23 -0
  960. package/dist/icons/components/auto-logo/Ktm.d.ts +4 -0
  961. package/dist/icons/components/auto-logo/Ktm.js +23 -0
  962. package/dist/icons/components/auto-logo/LCCE.d.ts +4 -0
  963. package/dist/icons/components/auto-logo/LCCE.js +39 -0
  964. package/dist/icons/components/auto-logo/Lada.d.ts +4 -0
  965. package/dist/icons/components/auto-logo/Lada.js +25 -0
  966. package/dist/icons/components/auto-logo/Lexus.d.ts +4 -0
  967. package/dist/icons/components/auto-logo/Lexus.js +25 -0
  968. package/dist/icons/components/auto-logo/LiuGong.d.ts +4 -0
  969. package/dist/icons/components/auto-logo/LiuGong.js +32 -0
  970. package/dist/icons/components/auto-logo/Lonking.d.ts +4 -0
  971. package/dist/icons/components/auto-logo/Lonking.js +32 -0
  972. package/dist/icons/components/auto-logo/Lovol.d.ts +4 -0
  973. package/dist/icons/components/auto-logo/Lovol.js +23 -0
  974. package/dist/icons/components/auto-logo/MTZBelarus.d.ts +4 -0
  975. package/dist/icons/components/auto-logo/MTZBelarus.js +36 -0
  976. package/dist/icons/components/auto-logo/Man.d.ts +4 -0
  977. package/dist/icons/components/auto-logo/Man.js +23 -0
  978. package/dist/icons/components/auto-logo/Maz.d.ts +4 -0
  979. package/dist/icons/components/auto-logo/Maz.js +34 -0
  980. package/dist/icons/components/auto-logo/MercedesBenz.d.ts +4 -0
  981. package/dist/icons/components/auto-logo/MercedesBenz.js +25 -0
  982. package/dist/icons/components/auto-logo/Meusburger.d.ts +4 -0
  983. package/dist/icons/components/auto-logo/Meusburger.js +25 -0
  984. package/dist/icons/components/auto-logo/Mitsubishi.d.ts +4 -0
  985. package/dist/icons/components/auto-logo/Mitsubishi.js +23 -0
  986. package/dist/icons/components/auto-logo/NefAZ.d.ts +4 -0
  987. package/dist/icons/components/auto-logo/NefAZ.js +32 -0
  988. package/dist/icons/components/auto-logo/NursanTrailer.d.ts +4 -0
  989. package/dist/icons/components/auto-logo/NursanTrailer.js +23 -0
  990. package/dist/icons/components/auto-logo/Omoda.d.ts +4 -0
  991. package/dist/icons/components/auto-logo/Omoda.js +39 -0
  992. package/dist/icons/components/auto-logo/PSATss.d.ts +4 -0
  993. package/dist/icons/components/auto-logo/PSATss.js +39 -0
  994. package/dist/icons/components/auto-logo/Paz.d.ts +4 -0
  995. package/dist/icons/components/auto-logo/Paz.js +25 -0
  996. package/dist/icons/components/auto-logo/Peugeot.d.ts +4 -0
  997. package/dist/icons/components/auto-logo/Peugeot.js +23 -0
  998. package/dist/icons/components/auto-logo/Raskat.d.ts +4 -0
  999. package/dist/icons/components/auto-logo/Raskat.js +39 -0
  1000. package/dist/icons/components/auto-logo/Renault.d.ts +4 -0
  1001. package/dist/icons/components/auto-logo/Renault.js +32 -0
  1002. package/dist/icons/components/auto-logo/RussianCarsEmblem.d.ts +4 -0
  1003. package/dist/icons/components/auto-logo/RussianCarsEmblem.js +34 -0
  1004. package/dist/icons/components/auto-logo/RussianCarsKremlin.d.ts +4 -0
  1005. package/dist/icons/components/auto-logo/RussianCarsKremlin.js +43 -0
  1006. package/dist/icons/components/auto-logo/Sany.d.ts +4 -0
  1007. package/dist/icons/components/auto-logo/Sany.js +52 -0
  1008. package/dist/icons/components/auto-logo/Scania.d.ts +4 -0
  1009. package/dist/icons/components/auto-logo/Scania.js +59 -0
  1010. package/dist/icons/components/auto-logo/Schmitz.d.ts +4 -0
  1011. package/dist/icons/components/auto-logo/Schmitz.js +25 -0
  1012. package/dist/icons/components/auto-logo/Shacman.d.ts +4 -0
  1013. package/dist/icons/components/auto-logo/Shacman.js +32 -0
  1014. package/dist/icons/components/auto-logo/Shantui.d.ts +4 -0
  1015. package/dist/icons/components/auto-logo/Shantui.js +23 -0
  1016. package/dist/icons/components/auto-logo/Sinanli.d.ts +4 -0
  1017. package/dist/icons/components/auto-logo/Sinanli.js +73 -0
  1018. package/dist/icons/components/auto-logo/Sitrak.d.ts +4 -0
  1019. package/dist/icons/components/auto-logo/Sitrak.js +36 -0
  1020. package/dist/icons/components/auto-logo/SobolIztechmash.d.ts +4 -0
  1021. package/dist/icons/components/auto-logo/SobolIztechmash.js +62 -0
  1022. package/dist/icons/components/auto-logo/Sokol.d.ts +4 -0
  1023. package/dist/icons/components/auto-logo/Sokol.js +23 -0
  1024. package/dist/icons/components/auto-logo/Sollers.d.ts +4 -0
  1025. package/dist/icons/components/auto-logo/Sollers.js +25 -0
  1026. package/dist/icons/components/auto-logo/TitanLipetskiyZavodPricepcenter.d.ts +4 -0
  1027. package/dist/icons/components/auto-logo/TitanLipetskiyZavodPricepcenter.js +23 -0
  1028. package/dist/icons/components/auto-logo/Tonar.d.ts +4 -0
  1029. package/dist/icons/components/auto-logo/Tonar.js +25 -0
  1030. package/dist/icons/components/auto-logo/Toyota.d.ts +4 -0
  1031. package/dist/icons/components/auto-logo/Toyota.js +23 -0
  1032. package/dist/icons/components/auto-logo/Trekol.d.ts +4 -0
  1033. package/dist/icons/components/auto-logo/Trekol.js +36 -0
  1034. package/dist/icons/components/auto-logo/UAT.d.ts +4 -0
  1035. package/dist/icons/components/auto-logo/UAT.js +23 -0
  1036. package/dist/icons/components/auto-logo/Uaz.d.ts +4 -0
  1037. package/dist/icons/components/auto-logo/Uaz.js +72 -0
  1038. package/dist/icons/components/auto-logo/Ural.d.ts +4 -0
  1039. package/dist/icons/components/auto-logo/Ural.js +23 -0
  1040. package/dist/icons/components/auto-logo/VIS.d.ts +4 -0
  1041. package/dist/icons/components/auto-logo/VIS.js +23 -0
  1042. package/dist/icons/components/auto-logo/VKR.d.ts +4 -0
  1043. package/dist/icons/components/auto-logo/VKR.js +34 -0
  1044. package/dist/icons/components/auto-logo/Volkswagen.d.ts +4 -0
  1045. package/dist/icons/components/auto-logo/Volkswagen.js +25 -0
  1046. package/dist/icons/components/auto-logo/Volvo.d.ts +4 -0
  1047. package/dist/icons/components/auto-logo/Volvo.js +23 -0
  1048. package/dist/icons/components/auto-logo/Wielton.d.ts +4 -0
  1049. package/dist/icons/components/auto-logo/Wielton.js +23 -0
  1050. package/dist/icons/components/auto-logo/XCMG.d.ts +4 -0
  1051. package/dist/icons/components/auto-logo/XCMG.js +39 -0
  1052. package/dist/icons/components/auto-logo/Yutong.d.ts +4 -0
  1053. package/dist/icons/components/auto-logo/Yutong.js +74 -0
  1054. package/dist/icons/components/auto-logo/Zoomlion.d.ts +4 -0
  1055. package/dist/icons/components/auto-logo/Zoomlion.js +23 -0
  1056. package/dist/icons/components/car-icons/AllMetal.d.ts +4 -0
  1057. package/dist/icons/components/car-icons/AllMetal.js +34 -0
  1058. package/dist/icons/components/car-icons/AllMetalCargoAndPassenger.d.ts +4 -0
  1059. package/dist/icons/components/car-icons/AllMetalCargoAndPassenger.js +34 -0
  1060. package/dist/icons/components/car-icons/AsphaltPaver.d.ts +4 -0
  1061. package/dist/icons/components/car-icons/AsphaltPaver.js +37 -0
  1062. package/dist/icons/components/car-icons/Autotower.d.ts +4 -0
  1063. package/dist/icons/components/car-icons/Autotower.js +34 -0
  1064. package/dist/icons/components/car-icons/Awning.d.ts +4 -0
  1065. package/dist/icons/components/car-icons/Awning.js +35 -0
  1066. package/dist/icons/components/car-icons/BackhoeLoader.d.ts +4 -0
  1067. package/dist/icons/components/car-icons/BackhoeLoader.js +41 -0
  1068. package/dist/icons/components/car-icons/Buggy.d.ts +4 -0
  1069. package/dist/icons/components/car-icons/Buggy.js +34 -0
  1070. package/dist/icons/components/car-icons/Bulldozer.d.ts +4 -0
  1071. package/dist/icons/components/car-icons/Bulldozer.js +36 -0
  1072. package/dist/icons/components/car-icons/Bus.d.ts +4 -0
  1073. package/dist/icons/components/car-icons/Bus.js +25 -0
  1074. package/dist/icons/components/car-icons/BusBus.d.ts +4 -0
  1075. package/dist/icons/components/car-icons/BusBus.js +34 -0
  1076. package/dist/icons/components/car-icons/BusMinibus.d.ts +4 -0
  1077. package/dist/icons/components/car-icons/BusMinibus.js +34 -0
  1078. package/dist/icons/components/car-icons/BusShiftBuses.d.ts +4 -0
  1079. package/dist/icons/components/car-icons/BusShiftBuses.js +44 -0
  1080. package/dist/icons/components/car-icons/CargoAScrapTruckFromTheCmu.d.ts +4 -0
  1081. package/dist/icons/components/car-icons/CargoAScrapTruckFromTheCmu.js +41 -0
  1082. package/dist/icons/components/car-icons/CargoAutotower.d.ts +4 -0
  1083. package/dist/icons/components/car-icons/CargoAutotower.js +34 -0
  1084. package/dist/icons/components/car-icons/CargoAwning.d.ts +4 -0
  1085. package/dist/icons/components/car-icons/CargoAwning.js +41 -0
  1086. package/dist/icons/components/car-icons/CargoConcreteMixerTruck.d.ts +4 -0
  1087. package/dist/icons/components/car-icons/CargoConcreteMixerTruck.js +41 -0
  1088. package/dist/icons/components/car-icons/CargoDrillingRig.d.ts +4 -0
  1089. package/dist/icons/components/car-icons/CargoDrillingRig.js +34 -0
  1090. package/dist/icons/components/car-icons/CargoDumpTruck.d.ts +4 -0
  1091. package/dist/icons/components/car-icons/CargoDumpTruck.js +41 -0
  1092. package/dist/icons/components/car-icons/CargoGarbageTruck.d.ts +4 -0
  1093. package/dist/icons/components/car-icons/CargoGarbageTruck.js +41 -0
  1094. package/dist/icons/components/car-icons/CargoGrainCarrier.d.ts +4 -0
  1095. package/dist/icons/components/car-icons/CargoGrainCarrier.js +41 -0
  1096. package/dist/icons/components/car-icons/CargoIsothermal.d.ts +4 -0
  1097. package/dist/icons/components/car-icons/CargoIsothermal.js +41 -0
  1098. package/dist/icons/components/car-icons/CargoOnBoard.d.ts +4 -0
  1099. package/dist/icons/components/car-icons/CargoOnBoard.js +41 -0
  1100. package/dist/icons/components/car-icons/CargoOnBoardWithCmu.d.ts +4 -0
  1101. package/dist/icons/components/car-icons/CargoOnBoardWithCmu.js +41 -0
  1102. package/dist/icons/components/car-icons/CargoPromotionalItem.d.ts +4 -0
  1103. package/dist/icons/components/car-icons/CargoPromotionalItem.js +41 -0
  1104. package/dist/icons/components/car-icons/CargoSortingTruck.d.ts +4 -0
  1105. package/dist/icons/components/car-icons/CargoSortingTruck.js +41 -0
  1106. package/dist/icons/components/car-icons/CargoTankerTruck.d.ts +4 -0
  1107. package/dist/icons/components/car-icons/CargoTankerTruck.js +41 -0
  1108. package/dist/icons/components/car-icons/CargoTowTruck.d.ts +4 -0
  1109. package/dist/icons/components/car-icons/CargoTowTruck.js +34 -0
  1110. package/dist/icons/components/car-icons/CargoTruckCrane.d.ts +4 -0
  1111. package/dist/icons/components/car-icons/CargoTruckCrane.js +43 -0
  1112. package/dist/icons/components/car-icons/CargoVacuumMachine.d.ts +4 -0
  1113. package/dist/icons/components/car-icons/CargoVacuumMachine.js +34 -0
  1114. package/dist/icons/components/car-icons/Clearance.d.ts +4 -0
  1115. package/dist/icons/components/car-icons/Clearance.js +25 -0
  1116. package/dist/icons/components/car-icons/CombineHarvester.d.ts +4 -0
  1117. package/dist/icons/components/car-icons/CombineHarvester.js +41 -0
  1118. package/dist/icons/components/car-icons/Compartment.d.ts +4 -0
  1119. package/dist/icons/components/car-icons/Compartment.js +34 -0
  1120. package/dist/icons/components/car-icons/ConcreteMixerTruck.d.ts +4 -0
  1121. package/dist/icons/components/car-icons/ConcreteMixerTruck.js +41 -0
  1122. package/dist/icons/components/car-icons/ConcretePump.d.ts +4 -0
  1123. package/dist/icons/components/car-icons/ConcretePump.js +42 -0
  1124. package/dist/icons/components/car-icons/Crossover.d.ts +4 -0
  1125. package/dist/icons/components/car-icons/Crossover.js +34 -0
  1126. package/dist/icons/components/car-icons/DrillingRigg.d.ts +4 -0
  1127. package/dist/icons/components/car-icons/DrillingRigg.js +34 -0
  1128. package/dist/icons/components/car-icons/DumpTruck.d.ts +4 -0
  1129. package/dist/icons/components/car-icons/DumpTruck.js +41 -0
  1130. package/dist/icons/components/car-icons/Excavator.d.ts +4 -0
  1131. package/dist/icons/components/car-icons/Excavator.js +25 -0
  1132. package/dist/icons/components/car-icons/ForestPreparationEquipment.d.ts +4 -0
  1133. package/dist/icons/components/car-icons/ForestPreparationEquipment.js +41 -0
  1134. package/dist/icons/components/car-icons/ForkliftTruck.d.ts +4 -0
  1135. package/dist/icons/components/car-icons/ForkliftTruck.js +34 -0
  1136. package/dist/icons/components/car-icons/FrontLoader.d.ts +4 -0
  1137. package/dist/icons/components/car-icons/FrontLoader.js +41 -0
  1138. package/dist/icons/components/car-icons/Hatchback.d.ts +4 -0
  1139. package/dist/icons/components/car-icons/Hatchback.js +34 -0
  1140. package/dist/icons/components/car-icons/IceRink.d.ts +4 -0
  1141. package/dist/icons/components/car-icons/IceRink.js +36 -0
  1142. package/dist/icons/components/car-icons/Isothermal.d.ts +4 -0
  1143. package/dist/icons/components/car-icons/Isothermal.js +41 -0
  1144. package/dist/icons/components/car-icons/Liftback.d.ts +4 -0
  1145. package/dist/icons/components/car-icons/Liftback.js +25 -0
  1146. package/dist/icons/components/car-icons/MiniEscalator.d.ts +4 -0
  1147. package/dist/icons/components/car-icons/MiniEscalator.js +43 -0
  1148. package/dist/icons/components/car-icons/MiniLoader.d.ts +4 -0
  1149. package/dist/icons/components/car-icons/MiniLoader.js +34 -0
  1150. package/dist/icons/components/car-icons/MiningDumpTruck.d.ts +4 -0
  1151. package/dist/icons/components/car-icons/MiningDumpTruck.js +41 -0
  1152. package/dist/icons/components/car-icons/Minitractor.d.ts +4 -0
  1153. package/dist/icons/components/car-icons/Minitractor.js +34 -0
  1154. package/dist/icons/components/car-icons/Minivan.d.ts +4 -0
  1155. package/dist/icons/components/car-icons/Minivan.js +34 -0
  1156. package/dist/icons/components/car-icons/MotorGrader.d.ts +4 -0
  1157. package/dist/icons/components/car-icons/MotorGrader.js +34 -0
  1158. package/dist/icons/components/car-icons/MotorVehiclesBike.d.ts +4 -0
  1159. package/dist/icons/components/car-icons/MotorVehiclesBike.js +26 -0
  1160. package/dist/icons/components/car-icons/MotorVehiclesQuadBike.d.ts +4 -0
  1161. package/dist/icons/components/car-icons/MotorVehiclesQuadBike.js +32 -0
  1162. package/dist/icons/components/car-icons/OffRoadVehicle.d.ts +4 -0
  1163. package/dist/icons/components/car-icons/OffRoadVehicle.js +34 -0
  1164. package/dist/icons/components/car-icons/OnBoard.d.ts +4 -0
  1165. package/dist/icons/components/car-icons/OnBoard.js +41 -0
  1166. package/dist/icons/components/car-icons/OnBoardCargoAndPassengerTransport.d.ts +4 -0
  1167. package/dist/icons/components/car-icons/OnBoardCargoAndPassengerTransport.js +41 -0
  1168. package/dist/icons/components/car-icons/OnBoardWithCmu.d.ts +4 -0
  1169. package/dist/icons/components/car-icons/OnBoardWithCmu.js +41 -0
  1170. package/dist/icons/components/car-icons/OtherAgriculturalMachinery.d.ts +4 -0
  1171. package/dist/icons/components/car-icons/OtherAgriculturalMachinery.js +50 -0
  1172. package/dist/icons/components/car-icons/OtherCareerTechniques.d.ts +4 -0
  1173. package/dist/icons/components/car-icons/OtherCareerTechniques.js +41 -0
  1174. package/dist/icons/components/car-icons/Pickup.d.ts +4 -0
  1175. package/dist/icons/components/car-icons/Pickup.js +25 -0
  1176. package/dist/icons/components/car-icons/PickupTruck.d.ts +4 -0
  1177. package/dist/icons/components/car-icons/PickupTruck.js +34 -0
  1178. package/dist/icons/components/car-icons/PilingInstallation.d.ts +4 -0
  1179. package/dist/icons/components/car-icons/PilingInstallation.js +36 -0
  1180. package/dist/icons/components/car-icons/PromotionalItem.d.ts +4 -0
  1181. package/dist/icons/components/car-icons/PromotionalItem.js +41 -0
  1182. package/dist/icons/components/car-icons/PublicUtilityVehicle.d.ts +4 -0
  1183. package/dist/icons/components/car-icons/PublicUtilityVehicle.js +48 -0
  1184. package/dist/icons/components/car-icons/QuarryExcavator.d.ts +4 -0
  1185. package/dist/icons/components/car-icons/QuarryExcavator.js +28 -0
  1186. package/dist/icons/components/car-icons/Scooter.d.ts +4 -0
  1187. package/dist/icons/components/car-icons/Scooter.js +32 -0
  1188. package/dist/icons/components/car-icons/Sedan.d.ts +4 -0
  1189. package/dist/icons/components/car-icons/Sedan.js +34 -0
  1190. package/dist/icons/components/car-icons/Snowmobile.d.ts +4 -0
  1191. package/dist/icons/components/car-icons/Snowmobile.js +41 -0
  1192. package/dist/icons/components/car-icons/TankerTruck.d.ts +4 -0
  1193. package/dist/icons/components/car-icons/TankerTruck.js +41 -0
  1194. package/dist/icons/components/car-icons/TelescopicLoader.d.ts +4 -0
  1195. package/dist/icons/components/car-icons/TelescopicLoader.js +34 -0
  1196. package/dist/icons/components/car-icons/TheLift.d.ts +4 -0
  1197. package/dist/icons/components/car-icons/TheLift.js +39 -0
  1198. package/dist/icons/components/car-icons/TowTruck.d.ts +4 -0
  1199. package/dist/icons/components/car-icons/TowTruck.js +34 -0
  1200. package/dist/icons/components/car-icons/Tractor.d.ts +4 -0
  1201. package/dist/icons/components/car-icons/Tractor.js +34 -0
  1202. package/dist/icons/components/car-icons/TractorTruck.d.ts +4 -0
  1203. package/dist/icons/components/car-icons/TractorTruck.js +41 -0
  1204. package/dist/icons/components/car-icons/Trailerr.d.ts +4 -0
  1205. package/dist/icons/components/car-icons/Trailerr.js +25 -0
  1206. package/dist/icons/components/car-icons/TrailersCarCarrier.d.ts +4 -0
  1207. package/dist/icons/components/car-icons/TrailersCarCarrier.js +43 -0
  1208. package/dist/icons/components/car-icons/TrailersCattleTruck.d.ts +4 -0
  1209. package/dist/icons/components/car-icons/TrailersCattleTruck.js +34 -0
  1210. package/dist/icons/components/car-icons/TrailersContainerShip.d.ts +4 -0
  1211. package/dist/icons/components/car-icons/TrailersContainerShip.js +42 -0
  1212. package/dist/icons/components/car-icons/TrailersCurtainSide.d.ts +4 -0
  1213. package/dist/icons/components/car-icons/TrailersCurtainSide.js +41 -0
  1214. package/dist/icons/components/car-icons/TrailersDumpTruck.d.ts +4 -0
  1215. package/dist/icons/components/car-icons/TrailersDumpTruck.js +41 -0
  1216. package/dist/icons/components/car-icons/TrailersGrainTruck.d.ts +4 -0
  1217. package/dist/icons/components/car-icons/TrailersGrainTruck.js +41 -0
  1218. package/dist/icons/components/car-icons/TrailersHeavyTruck.d.ts +4 -0
  1219. package/dist/icons/components/car-icons/TrailersHeavyTruck.js +41 -0
  1220. package/dist/icons/components/car-icons/TrailersIsothermal.d.ts +4 -0
  1221. package/dist/icons/components/car-icons/TrailersIsothermal.js +41 -0
  1222. package/dist/icons/components/car-icons/TrailersOther.d.ts +4 -0
  1223. package/dist/icons/components/car-icons/TrailersOther.js +41 -0
  1224. package/dist/icons/components/car-icons/TrailersTankerTruck.d.ts +4 -0
  1225. package/dist/icons/components/car-icons/TrailersTankerTruck.js +41 -0
  1226. package/dist/icons/components/car-icons/TruckCrane.d.ts +4 -0
  1227. package/dist/icons/components/car-icons/TruckCrane.js +43 -0
  1228. package/dist/icons/components/car-icons/Universal.d.ts +4 -0
  1229. package/dist/icons/components/car-icons/Universal.js +34 -0
  1230. package/dist/icons/components/car-icons/Van.d.ts +4 -0
  1231. package/dist/icons/components/car-icons/Van.js +25 -0
  1232. package/dist/icons/components/car-icons/Ycles.d.ts +4 -0
  1233. package/dist/icons/components/car-icons/Ycles.js +44 -0
  1234. package/dist/icons/components/car-parameters-icons/Acceleration.d.ts +4 -0
  1235. package/dist/icons/components/car-parameters-icons/Acceleration.js +34 -0
  1236. package/dist/icons/components/car-parameters-icons/Berths.d.ts +4 -0
  1237. package/dist/icons/components/car-parameters-icons/Berths.js +39 -0
  1238. package/dist/icons/components/car-parameters-icons/Bucket.d.ts +4 -0
  1239. package/dist/icons/components/car-parameters-icons/Bucket.js +23 -0
  1240. package/dist/icons/components/car-parameters-icons/BucketLoadingCapacity.d.ts +4 -0
  1241. package/dist/icons/components/car-parameters-icons/BucketLoadingCapacity.js +25 -0
  1242. package/dist/icons/components/car-parameters-icons/BucketVolume.d.ts +4 -0
  1243. package/dist/icons/components/car-parameters-icons/BucketVolume.js +32 -0
  1244. package/dist/icons/components/car-parameters-icons/CabinTurn.d.ts +4 -0
  1245. package/dist/icons/components/car-parameters-icons/CabinTurn.js +34 -0
  1246. package/dist/icons/components/car-parameters-icons/CarBodySize.d.ts +4 -0
  1247. package/dist/icons/components/car-parameters-icons/CarBodySize.js +34 -0
  1248. package/dist/icons/components/car-parameters-icons/CarBodyType.d.ts +4 -0
  1249. package/dist/icons/components/car-parameters-icons/CarBodyType.js +25 -0
  1250. package/dist/icons/components/car-parameters-icons/CarColor.d.ts +4 -0
  1251. package/dist/icons/components/car-parameters-icons/CarColor.js +34 -0
  1252. package/dist/icons/components/car-parameters-icons/Cylinders.d.ts +4 -0
  1253. package/dist/icons/components/car-parameters-icons/Cylinders.js +37 -0
  1254. package/dist/icons/components/car-parameters-icons/Dimensions.d.ts +4 -0
  1255. package/dist/icons/components/car-parameters-icons/Dimensions.js +34 -0
  1256. package/dist/icons/components/car-parameters-icons/EngineType.d.ts +4 -0
  1257. package/dist/icons/components/car-parameters-icons/EngineType.js +23 -0
  1258. package/dist/icons/components/car-parameters-icons/FuelConsumption.d.ts +4 -0
  1259. package/dist/icons/components/car-parameters-icons/FuelConsumption.js +23 -0
  1260. package/dist/icons/components/car-parameters-icons/GearType.d.ts +4 -0
  1261. package/dist/icons/components/car-parameters-icons/GearType.js +26 -0
  1262. package/dist/icons/components/car-parameters-icons/LiftingHeight.d.ts +4 -0
  1263. package/dist/icons/components/car-parameters-icons/LiftingHeight.js +23 -0
  1264. package/dist/icons/components/car-parameters-icons/LoadingCapacity.d.ts +4 -0
  1265. package/dist/icons/components/car-parameters-icons/LoadingCapacity.js +25 -0
  1266. package/dist/icons/components/car-parameters-icons/NumberOfAxes.d.ts +4 -0
  1267. package/dist/icons/components/car-parameters-icons/NumberOfAxes.js +25 -0
  1268. package/dist/icons/components/car-parameters-icons/NumberOfSeats.d.ts +4 -0
  1269. package/dist/icons/components/car-parameters-icons/NumberOfSeats.js +23 -0
  1270. package/dist/icons/components/car-parameters-icons/TrailerType.d.ts +4 -0
  1271. package/dist/icons/components/car-parameters-icons/TrailerType.js +32 -0
  1272. package/dist/icons/components/car-parameters-icons/UnloadingType.d.ts +4 -0
  1273. package/dist/icons/components/car-parameters-icons/UnloadingType.js +32 -0
  1274. package/dist/icons/components/car-parameters-icons/Weight.d.ts +4 -0
  1275. package/dist/icons/components/car-parameters-icons/Weight.js +36 -0
  1276. package/dist/icons/components/car-parameters-icons/WheelDriveType.d.ts +4 -0
  1277. package/dist/icons/components/car-parameters-icons/WheelDriveType.js +32 -0
  1278. package/dist/icons/components/car-parameters-icons/WheelSheme.d.ts +4 -0
  1279. package/dist/icons/components/car-parameters-icons/WheelSheme.js +34 -0
  1280. package/dist/icons/components/cars-stubus/Bike.d.ts +4 -0
  1281. package/dist/icons/components/cars-stubus/Bike.js +25 -0
  1282. package/dist/icons/components/cars-stubus/Car.d.ts +4 -0
  1283. package/dist/icons/components/cars-stubus/Car.js +25 -0
  1284. package/dist/icons/components/cars-stubus/Equipment.d.ts +4 -0
  1285. package/dist/icons/components/cars-stubus/Equipment.js +25 -0
  1286. package/dist/icons/components/cars-stubus/Truck.d.ts +4 -0
  1287. package/dist/icons/components/cars-stubus/Truck.js +25 -0
  1288. package/dist/icons/components/index.d.ts +575 -0
  1289. package/dist/icons/components/index.js +579 -0
  1290. package/dist/icons/components/types.d.ts +2 -0
  1291. package/dist/icons/components/types.js +1 -0
  1292. package/dist/icons/index.d.ts +2 -0
  1293. package/dist/icons/index.js +4 -0
  1294. package/dist/index-CweZ_OcN.js +65 -0
  1295. package/dist/index-_ACzPKPw.js +1996 -0
  1296. package/dist/index.d.ts +4 -0
  1297. package/dist/index.js +45 -0
  1298. package/package.json +127 -127
@@ -0,0 +1,62 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SobolIztechmash = (props) => {
3
+ return /* @__PURE__ */ jsxs(
4
+ "svg",
5
+ {
6
+ width: "42px",
7
+ height: "18px",
8
+ viewBox: "0 0 42 18",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx(
13
+ "path",
14
+ {
15
+ d: "M8.587 2h.253v3.04h-.253V2zM8.587 12.387h.253v2.786h-.253v-2.786zM8.587 5.42h.253v.253h-.253V5.42zM8.587 11.373h.253v.254h-.253v-.254zM8.587 6.053h.253v1.774h-.253V6.053zM8.587 9.347h.253v1.52h-.253v-1.52zM4.787 8.587v.253H2v-.253h2.787zM5.8 8.587v.253h-.253v-.253H5.8zM8.84 8.587v.253h-.253v-.253h.253zM9.853 8.587v.253h-.506v-.253h.506zM8.08 8.587v.253H6.307v-.253H8.08zM8.333 2.961a5.727 5.727 0 00-.234.02L7.9 2.238a.213.213 0 00-.261-.15l-1.32.353a.213.213 0 00-.15.261l.199.743c-.36.16-.7.356-1.014.583l-.543-.542a.213.213 0 00-.302 0l-.965.966a.213.213 0 000 .302l.544.543c-.23.317-.426.656-.585 1.013l-.743-.199a.213.213 0 00-.261.151l-.354 1.32a.213.213 0 00.151.26l.741.2c-.01.096-.017.194-.022.291h1.774a3.927 3.927 0 013.544-3.782v-1.59zM9.093 4.551V2.965c.06.004.118.01.176.015l.199-.74a.213.213 0 01.261-.152l1.32.354a.213.213 0 01.15.261L11 3.445c.357.16.697.356 1.013.585l.544-.544a.214.214 0 01.302 0l.965.966a.213.213 0 010 .301l-.542.543c.227.314.422.652.582 1.01h-1.867a3.925 3.925 0 00-2.904-1.755zM11.816 10.867h2.065v.08l-.015-.004c-.16.356-.356.696-.585 1.013l.543.543a.213.213 0 010 .302l-.965.966a.214.214 0 01-.302 0l-.542-.543a5.635 5.635 0 01-1.015.583l.2.743a.213.213 0 01-.151.262l-1.32.353a.213.213 0 01-.261-.15l-.2-.744a5.775 5.775 0 01-.175.016v-1.919a3.921 3.921 0 002.723-1.501zM9.093 11.86a3.41 3.41 0 002.05-.993h-2.05v.992zM11.37 6.307H9.79a2.39 2.39 0 00-.697-.224V5.061a3.415 3.415 0 012.277 1.246z",
16
+ fill: "#000"
17
+ }
18
+ ),
19
+ /* @__PURE__ */ jsx(
20
+ "path",
21
+ {
22
+ d: "M5.296 8.333a3.42 3.42 0 013.037-3.272v1.022a2.408 2.408 0 00-2.023 2.25H5.296zM8.333 10.837a2.41 2.41 0 01-1.942-1.744H5.35a3.422 3.422 0 002.982 2.766v-1.022z",
23
+ fill: "#000"
24
+ }
25
+ ),
26
+ /* @__PURE__ */ jsx(
27
+ "path",
28
+ {
29
+ d: "M3.028 9.093h1.81a3.929 3.929 0 003.495 3.275v1.925a5.726 5.726 0 01-.234-.02l-.199.741a.213.213 0 01-.261.151l-1.32-.353a.214.214 0 01-.15-.261l.199-.743a5.712 5.712 0 01-1.013-.585l-.544.544a.214.214 0 01-.301 0l-.966-.966a.213.213 0 010-.302l.542-.542a5.643 5.643 0 01-.583-1.014l-.743.199a.213.213 0 01-.261-.151l-.354-1.32a.213.213 0 01.151-.26l.743-.2a5.709 5.709 0 01-.011-.118zM11.12 6.813h-.76v3.547h.76l1.773-3.103v3.103h.76V7.7l.507-.887h-1.773L11.12 9.03V6.813zM14.16 6.813h1.013l.76 1.064V6.813h1.014v1.064l.76-1.064h1.013l-1.267 1.774 1.52 1.773H17.96l-1.013-1.182v1.182h-1.014V9.178L14.92 10.36h-1.013l1.52-1.773-1.267-1.774z",
30
+ fill: "#000"
31
+ }
32
+ ),
33
+ /* @__PURE__ */ jsx(
34
+ "path",
35
+ {
36
+ d: "M21.76 7.573l.507-.76h-3.294l-.506.76h1.266v2.787h1.014V7.573h1.013zM25.053 6.813l-.506.76h-1.774v.76h1.774v.507h-1.774v.76h1.774v.76h-2.534V7.573l.507-.76h2.533zM28.347 6.813h-1.014l-.76 1.064-.76-1.064h-.38l-.316.444.95 1.33L24.8 10.36h1.013l.76-1.064.76 1.064h1.014L27.08 8.587l1.267-1.774zM28.6 6.813v3.547h.76V7.7h.19l.57 2.66h.76l.57-2.66h.19v2.66h.76V6.813h-1.267L30.5 9.77l-.633-2.956H28.6z",
37
+ fill: "#000"
38
+ }
39
+ ),
40
+ /* @__PURE__ */ jsx(
41
+ "path",
42
+ {
43
+ fillRule: "evenodd",
44
+ clipRule: "evenodd",
45
+ d: "M33.413 6.813l-.76 3.547h.76l.218-1.013h1.085l.217 1.013h.76l-.76-3.547h-1.52zm1.195 2.027l-.272-1.267h-.325l-.272 1.267h.869z",
46
+ fill: "#000"
47
+ }
48
+ ),
49
+ /* @__PURE__ */ jsx(
50
+ "path",
51
+ {
52
+ d: "M36.707 6.813h-1.014v2.28l.254 1.267H40V6.813h-1.013v2.534h-.76V6.813h-.76v2.534h-.76V6.813z",
53
+ fill: "#000"
54
+ }
55
+ )
56
+ ]
57
+ }
58
+ );
59
+ };
60
+ export {
61
+ SobolIztechmash as default
62
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Sokol: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Sokol;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Sokol = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "29px",
7
+ height: "20px",
8
+ viewBox: "0 0 29 20",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M12.126 10.645H7.533v-.89l.609-.028c-.072-.23-.17-.447-.204-.674-.06-.392-.03-.784.122-1.16.106-.262.284-.385.567-.386.526-.002 1.052.003 1.578-.002.14-.001.2.06.205.19.002.048.002.097 0 .147-.003.136-.062.201-.21.2-.496-.006-.993-.002-1.49-.003-.238 0-.376.081-.41.313-.033.24-.037.49-.006.728.029.226.167.31.396.311.757.002 1.514.001 2.271.001.217 0 .342.111.373.332l.229.02c.037.002.075 0 .131 0-.336-.503-.306-1.038-.213-1.576.022-.132.082-.263.147-.381.104-.193.276-.282.498-.281.684.003 1.367 0 2.05 0 .241 0 .42.11.516.327.06.138.117.29.121.436.009.332.001.667-.036.996-.018.158-.116.307-.18.468h.385v-.514c0-.511.008-1.023 0-1.534-.002-.148.05-.195.187-.18.052.006.106.001.176.001v.942c.064.003.111.008.16.008.427 0 .855-.006 1.282.003.143.002.199-.057.206-.185.01-.181.01-.364.03-.544.008-.064.047-.149.1-.181.161-.102.28-.04.288.154.011.244.003.489.003.753h.465c.327.002.473.11.53.433.034.187.027.38.036.572.004.082 0 .164 0 .256h.278c-.058-.217-.138-.436-.173-.663a2.36 2.36 0 01.068-.993c.103-.376.315-.547.703-.55.697-.007 1.396-.004 2.094-.001a.524.524 0 01.535.406c.17.602.196 1.2-.145 1.765-.005.007-.002.019-.004.035.023.003.047.007.07.007.028 0 .057-.005.09-.008l.008-.092c.016-.205.045-.233.254-.233.207 0 .414-.006.62.002.117.005.175-.035.211-.15.16-.506.329-1.01.495-1.513.055-.168.218-.265.387-.212.046.014.09.084.105.137.114.402.217.807.33 1.209.039.136.095.268.146.4.035.094.1.133.205.13.197-.008.393-.003.59-.003.203 0 .228.025.233.226 0 .038.004.076.007.13h.55c-.09.252-.167.484-.259.71-.014.034-.093.057-.142.057-.644.004-1.289.002-1.933.002-.501 0-1.003.006-1.504-.003-.135-.003-.188.044-.225.166-.071.24-.162.474-.235.713-.03.095-.07.129-.174.13-.949 0-1.898.01-2.847.01-.133 0-.196.033-.238.169-.125.412-.27.82-.407 1.23h-1.617c-.186 0-.373-.008-.56.002a.228.228 0 00-.15.082c-.27.36-.537.726-.797 1.094a.234.234 0 00-.024.182c.185.56.376 1.117.572 1.673.03.088.024.14-.056.196-.35.244-.698.492-1.044.742-.074.054-.125.042-.193-.012-.448-.36-.902-.715-1.348-1.076-.086-.07-.155-.085-.264-.048a26.87 26.87 0 01-1.138.35c-.084.025-.12.062-.142.143-.144.53-.297 1.06-.44 1.59-.03.108-.074.15-.19.147A31.352 31.352 0 009.479 18c-.126.003-.167-.043-.198-.154-.148-.53-.31-1.056-.457-1.586-.032-.115-.09-.163-.202-.197-.356-.11-.709-.23-1.06-.356-.085-.03-.141-.023-.212.032-.449.351-.901.698-1.353 1.047-.042.032-.086.063-.155.113-.357-.263-.716-.529-1.077-.79-.075-.054-.062-.106-.039-.177.19-.563.373-1.129.567-1.69.036-.105.013-.168-.05-.25-.222-.294-.439-.591-.65-.893-.05-.072-.099-.105-.19-.104-.604.004-1.209 0-1.813.004-.1.001-.15-.025-.18-.123a51.965 51.965 0 00-.384-1.175c-.032-.093-.008-.14.071-.192.497-.327.989-.661 1.486-.988.08-.053.104-.106.102-.203-.01-.382-.01-.765-.003-1.148.001-.09-.019-.143-.092-.195-.5-.35-.994-.706-1.495-1.052-.096-.066-.113-.126-.079-.229.129-.386.253-.774.375-1.163.026-.084.068-.111.158-.108.614.027 1.228.05 1.842.065a.23.23 0 00.163-.084c.238-.318.47-.64.696-.968.03-.044.033-.128.014-.182-.192-.558-.39-1.112-.587-1.668-.022-.06-.04-.12-.064-.189.013-.009.024-.018.037-.025.887-.484 1.805-.898 2.79-1.135.924-.222 1.861-.31 2.808-.169.972.145 1.905.43 2.794.846.317.147.58.376.697.725.086.257.048.327-.208.42a.197.197 0 00-.1.064c.076-.013.152-.037.227-.037.178 0 .364-.014.534.027.271.065.405.267.446.543.042.278-.062.51-.191.74a4.504 4.504 0 01-1.258 1.408c-.116.086-.242.076-.36.01-.09-.05-.114-.238-.062-.383.056-.157.113-.313.167-.47.014-.041.016-.087.019-.13.014-.204-.06-.29-.262-.282-.515.02-1.032.03-1.545.076a6.509 6.509 0 00-2.159.555c-.707.326-1.313.785-1.718 1.456-.498.828-.59 1.719-.28 2.639.282.84.808 1.464 1.647 1.795a2.748 2.748 0 003.47-1.361c.007-.012.009-.027.02-.063v-.001zm.98-2.603v-.003h-.972c-.21.002-.316.06-.346.266-.035.234-.047.479-.02.713.033.27.185.373.46.374.6 0 1.199 0 1.798-.002.216-.001.34-.09.398-.3a1.45 1.45 0 00-.004-.785c-.053-.192-.156-.262-.356-.263h-.958zm7.172 1.348h.81c.252 0 .41-.108.443-.36.03-.22.027-.45 0-.67-.028-.234-.147-.312-.386-.312l-1.797-.003c-.184 0-.28.042-.313.22-.043.242-.07.496-.047.74.025.28.186.385.48.386h.81V9.39zm-2.249.349c0-.175.005-.337 0-.498-.008-.21-.07-.264-.284-.264h-2.254c-.046 0-.093.005-.147.008v.754h2.685zm-5.897-5.942c-.053.065-.12.143-.184.223-.095.118-.095.245-.023.371a.535.535 0 00.567.285.524.524 0 00.454-.366c.024-.063.042-.127.057-.174l-.871-.34zm11.936 5.936l-.293-.99-.322.99h.615z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ Sokol as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Sollers: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Sollers;
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Sollers = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "45px",
7
+ height: "20px",
8
+ viewBox: "0 0 45 20",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M13.942 6.309c-1.056-1.567-3.266-2.047-5.585-1.422C6.671 2.725 4.863 1.58 3.68 2.143c-1.337.636-1.485 3.268-.538 6.428-1.25 1.837-1.536 3.903-.54 5.38.855 1.27 2.468 1.826 4.283 1.66 1.565 1.835 3.184 2.764 4.273 2.246 1.082-.515 1.386-2.336.96-4.686 2.272-2.105 3.102-4.968 1.825-6.862zm-8.901-3.06c.672-.33 1.764.392 2.884 1.766a9.428 9.428 0 00-2.328 1.147 9.79 9.79 0 00-.869.658c-.462-1.828-.387-3.227.313-3.57zm2.394 9.396a18.628 18.628 0 01-1.431-2.441 18.719 18.719 0 01-1.037-2.55c.302-.276.635-.541.996-.788A8.347 8.347 0 018.44 5.691a18.436 18.436 0 011.52 2.567c.345.702.636 1.395.87 2.057a8.71 8.71 0 01-1.57 1.368 8.727 8.727 0 01-1.825.962zm-4.098-.444c-.469-.684-.385-1.65.13-2.646a21.478 21.478 0 001.632 3.501c-.775-.05-1.403-.33-1.762-.854zm7.586 3.012c-.363.178-.848.05-1.395-.323a9.655 9.655 0 001.999-1.215c-.003.785-.199 1.339-.604 1.538zm.246-5.305a21.6 21.6 0 00-.609-1.403 20.459 20.459 0 00-1.685-2.917c1.331-.266 2.474-.025 3.011.76.612.893.282 2.266-.717 3.56zM20.706 11.826c0-.41-.189-.709-.567-.945-.379-.221-.915-.331-1.624-.331-.74 0-1.293.11-1.671.33-.378.221-.568.552-.568.962.016.331.127.615.363.82.252.205.583.331 1.009.378l1.15.095c.253.016.426.031.553.079.11.047.173.126.173.236 0 .11-.079.205-.236.268-.143.079-.363.11-.647.11-.378 0-.646-.031-.835-.126a.452.452 0 01-.315-.415.012.012 0 00-.011-.01h-1.317a.012.012 0 00-.012.013c.035.451.24.809.63 1.043.41.236.993.347 1.75.347.772 0 1.34-.126 1.734-.363.378-.236.567-.599.567-1.056 0-.33-.11-.599-.347-.804-.236-.189-.567-.315-1.024-.347l-.883-.063a3.057 3.057 0 01-.723-.11h-.004c-.156-.064-.235-.142-.235-.252 0-.11.064-.19.205-.253.142-.063.347-.11.615-.11.315 0 .552.048.71.126.17.078.264.2.297.37.002.005.006.008.012.008h1.251zM20.896 12.615c0 .63.236 1.135.693 1.513.458.363 1.088.552 1.908.552.804 0 1.45-.19 1.892-.552.457-.378.693-.883.693-1.513 0-.647-.236-1.151-.678-1.514-.457-.362-1.087-.552-1.907-.552-.836 0-1.466.19-1.924.552-.441.363-.677.867-.677 1.514zm1.371 0c0-.347.11-.615.331-.836.22-.205.52-.315.899-.315.362 0 .662.11.866.315.22.205.331.488.347.833v.005c-.016.33-.126.613-.347.817-.204.205-.503.315-.864.331h-.005c-.377-.016-.676-.11-.896-.33-.22-.206-.331-.474-.331-.82zM29.314 9.363v5.179a.012.012 0 01-.012.012h-1.27a.011.011 0 01-.01-.012V9.363c0-.006.005-.011.011-.011h1.27c.006 0 .01.005.01.011zm-1.719 0v5.179a.011.011 0 01-.011.011h-1.27a.011.011 0 01-.011-.011v-5.18c0-.006.005-.01.011-.01h1.27c.006 0 .011.005.011.011zM34.373 13.292h-1.379a.012.012 0 00-.01.007.831.831 0 01-.36.403 1.545 1.545 0 01-.628.158h-.004c-.315-.016-.55-.095-.74-.268a.833.833 0 01-.299-.666c0-.007.006-.012.012-.012h3.492a.011.011 0 00.011-.012v-.146c-.015-.71-.22-1.261-.646-1.64-.426-.378-1.04-.567-1.828-.567-.773 0-1.388.189-1.813.552-.426.362-.647.867-.662 1.513.015.63.236 1.135.662 1.513.441.363 1.04.552 1.813.552.614 0 1.119-.126 1.529-.362a2.04 2.04 0 00.86-1.009c.004-.007-.002-.016-.01-.016zm-3.375-1.166a.012.012 0 01-.012-.013.788.788 0 01.314-.554c.19-.142.426-.221.725-.221.3 0 .536.079.726.22.17.124.28.31.298.555a.012.012 0 01-.012.013h-2.039zM36.018 10.676H34.78a.012.012 0 00-.012.011v3.84c0 .006.005.01.012.01h1.238a.012.012 0 00.011-.01v-1.708c.016-.394.11-.709.331-.914.205-.22.505-.33.867-.33h.237c.068 0 .124 0 .159.01.007.001.014-.004.014-.012v-1.008c-.047 0-.11-.016-.189-.016h-.173a1.192 1.192 0 00-.647.158c-.197.091-.395.256-.579.451a.012.012 0 01-.02-.008v-.463c0-.006-.005-.011-.011-.011zM42.087 11.826a.012.012 0 00.012-.011c-.004-.404-.209-.7-.568-.934-.378-.221-.93-.331-1.64-.331-.724 0-1.276.11-1.654.33-.379.221-.568.552-.568.962 0 .331.126.615.363.82.236.205.567.331 1.008.378l1.151.095c.237.016.426.031.536.079.127.047.174.126.174.236 0 .11-.08.205-.22.268-.158.079-.38.11-.663.11-.362 0-.646-.031-.836-.126a.476.476 0 01-.314-.415.012.012 0 00-.011-.01H37.54a.012.012 0 00-.012.013c.035.45.255.809.646 1.043.394.236.977.347 1.75.347.756 0 1.34-.126 1.718-.363.394-.236.583-.599.583-1.056 0-.33-.126-.599-.363-.804-.22-.189-.567-.315-1.008-.347l-.899-.063a3.195 3.195 0 01-.727-.11c-.156-.063-.234-.142-.235-.251v-.003c.017-.11.08-.188.221-.25.142-.064.347-.111.615-.111.3 0 .536.047.71.126.152.076.26.197.282.363a.018.018 0 00.017.015h1.249z",
17
+ fill: "#000"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ };
23
+ export {
24
+ Sollers as default
25
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const TitanLipetskiyZavodPricepcenter: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default TitanLipetskiyZavodPricepcenter;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const TitanLipetskiyZavodPricepcenter = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "28px",
7
+ height: "14px",
8
+ viewBox: "0 0 28 14",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M25.146 2H2.659a.653.653 0 100 1.308h3.903c.357 0 .66.292.66.66 0 .367-.292.659-.66.659H5.395a.662.662 0 00-.66.66c0 .356.292.659.66.659h3.902c.357 0 .66.292.66.66 0 .356-.292.659-.66.659H8.13a.662.662 0 00-.66.66c0 .356.292.659.66.659h3.946c.356 0 .66.292.66.66 0 .356.291.659.659.659h3.794A2.1 2.1 0 0019.287 12a2.1 2.1 0 002.097-2.097h3.773c.357 0 .66-.292.66-.66V2.65A.67.67 0 0025.145 2zm-5.87 8.93a1.084 1.084 0 01-1.081-1.081c0-.595.486-1.081 1.08-1.081.595 0 1.082.486 1.082 1.08 0 .595-.487 1.082-1.081 1.082z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ TitanLipetskiyZavodPricepcenter as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Tonar: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Tonar;
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Tonar = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "33px",
7
+ height: "20px",
8
+ viewBox: "0 0 33 20",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M9.201 3.424c.001-.05 0-.1-.004-.149l.143.197-.005.018a.888.888 0 00.087.02c.059.01.114.021.143.054.108.123.22.257.28.407.162.404.2.829.144 1.26-.012.094-.035.188-.059.286a6.919 6.919 0 00-.034.145l-.25-.152.001.143c.002.093.003.176-.003.259-.014.184.077.255.246.306.312.094.61.033.91-.028l.058-.012c.387-.078.48-.033.688.304.16.263.329.522.502.777.101.148.167.3.147.482-.027.247-.053.495-.073.744l-.03.411c-.012.2-.025.401-.045.601a1.379 1.379 0 01-.263.726l-.017.023c-.217.285-.436.571-.622.876a52.94 52.94 0 00-1.071 1.851c-.094.17-.157.36-.218.547l-.025.075c-.04.12-.075.243-.11.365-.055.191-.11.382-.183.565-.086.213-.198.415-.31.617-.038.068-.076.136-.112.205-.1.188-.054.403.103.474l.129-.306.072.012.023.366h.22a.322.322 0 00.018-.147c-.002-.088-.004-.176.117-.235l.014.056c.009.033.016.06.02.089.034.23.089.263.287.16.09-.047.178-.099.258-.16.568-.441.926-1.026 1.163-1.695a.45.45 0 01.18-.222c.135-.08.275-.153.414-.226.198-.104.396-.207.582-.329a50.77 50.77 0 001.293-.882l.515-.359a.533.533 0 00.245-.43.748.748 0 01.065-.226c.014-.034.028-.068.04-.102l.054.013.025.053c.02.04.038.08.06.12l.266.502c.2.372.398.744.588 1.12l.043.085c.137.267.275.54.349.825.064.25.09.508.117.767.013.126.026.252.043.377.048.343.04.345-.172.376-.034.005-.072.011-.116.02-.509.092-.897.302-1.027.844-.01.04-.091.086-.141.088-.53.027-1.062.05-1.593.074-.98.044-1.96.087-2.939.147a44.73 44.73 0 00-2.663.259 36.618 36.618 0 00-4.055.703c-.405.096-.808.203-1.202.307L2 18c9.467-1.485 18.952-1.525 28.301-.024-2.363-.718-4.94-1.073-7.494-1.326.005-.055.014-.109.022-.16.016-.106.031-.204.017-.297-.05-.342.001-.664.078-.999.154-.669.296-1.344.381-2.025.135-1.083.056-2.145-.345-3.186-.416-1.081-.994-2.034-1.856-2.814-.658-.596-1.435-.946-2.292-1.133a1.434 1.434 0 01-.83-.482l-.11-.132c-.182-.215-.364-.431-.518-.666-.23-.352-.49-.603-.937-.688-.612-.115-1.072-.52-1.527-.92l-.052-.045c-.227-.2-.391-.401-.33-.729.034-.18-.082-.285-.25-.334a.942.942 0 00-.646.037c-.108.045-.228.093-.34.087-.637-.031-1.274-.074-1.911-.117l-.153-.01a.335.335 0 00-.31.132c-.117.143-.263.213-.458.15a8.09 8.09 0 00-.35-.1 7.993 7.993 0 01-.35-.101c-.212-.068-.292-.039-.373.166-.012.029-.021.06-.031.09a.536.536 0 01-.096.202c-.185.202-.165.415-.084.645a.9.9 0 01.033.14l.012.063zm9.984 13.013h1.117c.005-.248.164-.392.388-.485l.064-.025a.713.713 0 00.148-.067c.042-.028.087-.084.09-.13.007-.123.005-.25-.015-.373-.123-.746-.43-1.428-.748-2.105-.007-.013-.018-.024-.03-.035a.334.334 0 01-.02-.019.748.748 0 01-.03.022c-.022.014-.042.027-.059.044a.884.884 0 00-.113.138c-.388.625-.632 1.297-.679 2.038-.013.214-.04.428-.07.657-.015.11-.029.222-.043.34z",
17
+ fill: "#000"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ };
23
+ export {
24
+ Tonar as default
25
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Toyota: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Toyota;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Toyota = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "23px",
7
+ height: "16px",
8
+ viewBox: "0 0 23 16",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M11.262 2.021c-5.103 0-9.241 2.677-9.241 5.978 0 3.302 4.138 5.98 9.241 5.98 5.104 0 9.241-2.677 9.241-5.98 0-3.304-4.137-5.978-9.24-5.978zm0 9.392c-.759 0-1.378-1.495-1.417-3.377a16.243 16.243 0 002.835 0c-.04 1.88-.659 3.377-1.418 3.377zm-1.324-4.87c.207-1.33.722-2.274 1.324-2.274.603 0 1.118.944 1.324 2.274a14.966 14.966 0 01-2.648 0zm1.324-3.657c-.99 0-1.836 1.484-2.148 3.556-1.88-.293-3.19-.96-3.19-1.737 0-1.047 2.39-1.896 5.338-1.896 2.949 0 5.34.85 5.34 1.896 0 .776-1.313 1.444-3.191 1.737-.312-2.072-1.158-3.556-2.149-3.556zm-7.916 4.89c0-1.014.39-1.965 1.069-2.78a1.377 1.377 0 00-.012.173c0 1.276 1.914 2.365 4.584 2.765-.002.093-.002.186-.002.28 0 2.379.667 4.394 1.589 5.078-4.05-.245-7.228-2.621-7.228-5.517zm8.605 5.516c.922-.684 1.588-2.699 1.588-5.078 0-.095 0-.187-.002-.28 2.67-.4 4.585-1.487 4.585-2.765 0-.058-.005-.117-.012-.174.679.819 1.068 1.767 1.068 2.78 0 2.896-3.177 5.272-7.227 5.517z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ Toyota as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Trekol: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Trekol;
@@ -0,0 +1,36 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const Trekol = (props) => {
3
+ return /* @__PURE__ */ jsxs(
4
+ "svg",
5
+ {
6
+ width: "29px",
7
+ height: "20px",
8
+ viewBox: "0 0 29 20",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx(
13
+ "path",
14
+ {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M4.046 8.684H2v.754h1.322l.379-.31.352-.304.163-.136h-.151l-.02-.004zM8.391 4.39a6.774 6.774 0 00-1.856 3.044h1.178c.629-1.696 2.182-2.856 3.925-3.346 1.163-.327 2.614-.376 3.53-.056-3.375-.219-6.06 1.416-6.743 3.014 2.826.433 4.997.24 6.967-.754.163-.087.326-.173.489-.267A13.577 13.577 0 0019.044 3.3 8.83 8.83 0 008.391 4.39z",
18
+ fill: "#000"
19
+ }
20
+ ),
21
+ /* @__PURE__ */ jsx(
22
+ "path",
23
+ {
24
+ fillRule: "evenodd",
25
+ clipRule: "evenodd",
26
+ d: "M10.967 12.617h-.556A4.435 4.435 0 0014 14.436a4.454 4.454 0 003.589-1.82h-.557a4.001 4.001 0 01-3.042 1.396 4.02 4.02 0 01-2.842-1.177 3.731 3.731 0 01-.2-.218m8.986 0a6.576 6.576 0 01-2.063 2.607 6.628 6.628 0 01-3.082 1.273h-1.796a6.628 6.628 0 01-3.081-1.273 6.575 6.575 0 01-2.064-2.607H6.66c.096.257.206.509.33.753l-.325.196.534.848.295-.177c.172.252.356.494.553.727l-.253.248.72.701.234-.233c.262.233.539.448.83.644l-.2.312.86.528.215-.332c.305.156.622.288.947.396l-.098.358.981.256.095-.35c.329.065.661.109.996.131V18h1.042v-.377c.335-.022.667-.066.996-.132l.099.35.981-.255-.099-.358c.335-.104.662-.232.978-.385l.212.332.86-.527-.2-.313c.29-.195.568-.41.829-.644l.235.233.72-.7-.254-.249a8.51 8.51 0 00.553-.727l.295.177.538-.844-.325-.196c.124-.244.235-.496.33-.753l-1.228-.015zm-2.929-5.202h.557a4.472 4.472 0 00-1.7-1.39c-.164.094-.327.18-.49.267.54.2 1.032.511 1.44.915.083.068.152.136.212.208h-.019zm5.99 1.27c.017.627-.001 1.256-.053 1.883-.034.177-.156.263-.38.263v.754h.421a.686.686 0 00.675-.422 4.696 4.696 0 00.212-1.714h1.576v2.136h.886v-2.9h-3.337zm-2.887-.039c-.917 0-1.47.076-1.652.227-.182.15-.25.553-.25 1.254-.017.335.01.67.08.998a.63.63 0 00.5.403c.437.064.88.088 1.322.072.92 0 1.47-.072 1.652-.219.182-.147.254-.557.254-1.254s-.084-1.13-.258-1.258c-.174-.128-.731-.219-1.648-.219v-.004zm.894 2.121c-.589.12-1.196.12-1.784 0-.084-.06-.125-.275-.125-.64s.041-.588.125-.648a2.33 2.33 0 01.894-.09c.3-.029.602.002.89.09.083.06.125.275.125.648s-.042.584-.125.644v-.004zm-5.906-.324h.466l1.136 1.13h1.288l-1.625-1.506 1.44-1.364h-1.22l-1.004 1.002h-.481v-1.02h-.887v2.87h.887v-1.112zm-4.656 1.04c.446.109.905.15 1.364.124.825 0 1.326-.075 1.515-.222.19-.147.261-.569.261-1.254 0-.686-.083-1.1-.242-1.243-.16-.144-.686-.234-1.515-.234a4.633 4.633 0 00-1.364.124.673.673 0 00-.402.705v.331h.872c0-.196.041-.312.125-.346a5.06 5.06 0 011.515 0c.083.037.125.162.125.376H11.36v.626h1.334c0 .207-.042.327-.125.376a2.697 2.697 0 01-.758.057 2.986 2.986 0 01-.757-.053c-.084-.034-.122-.15-.122-.35h-.886v.324a.66.66 0 00.398.66h-.004zm-3.448-.622h1.285c.323.033.65-.028.94-.177a1.128 1.128 0 00.28-.911 1.124 1.124 0 00-.285-.916 1.725 1.725 0 00-.935-.173H6.11v2.878h.886l-.004-.7zm0-1.431h1.285a.297.297 0 01.329.204.292.292 0 01.008.139.338.338 0 01-.099.275.38.38 0 01-.238.068h-1.28l-.005-.686zm-1.477-.753H4.194l-.163.135-.353.305-.378.31v2.116h.89V9.438h1.318l.008-.761zM19.98 7.403h1.178a7.839 7.839 0 00-.352-.817l.326-.196-.534-.848-.296.178a8.002 8.002 0 00-.553-.728l.254-.248-.667-.652c-.321.353-.66.69-1.015 1.01a6.602 6.602 0 011.663 2.313l-.004-.012z",
27
+ fill: "#000"
28
+ }
29
+ )
30
+ ]
31
+ }
32
+ );
33
+ };
34
+ export {
35
+ Trekol as default
36
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const UAT: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default UAT;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const UAT = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "36px",
7
+ height: "11px",
8
+ viewBox: "0 0 36 11",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M7.23 6.857C6.9 8.23 6.492 8.993 4.325 8.993 3.129 8.993 2 8.845 2 7.817c.028-.326.088-.647.179-.96l.997-4.13c.027-.102.04-.207.037-.311a.287.287 0 00-.179-.273l.028-.14h1.411c.19 0 .34.046.34.225a1.388 1.388 0 01-.029.17L3.712 6.857a1.823 1.823 0 00-.069.477c0 .423.424.48.888.48.846 0 1.025-.348 1.176-.96l.987-4.13c.023-.103.036-.207.038-.311a.296.296 0 00-.179-.272L6.581 2h1.412c.187 0 .338.046.338.235 0 .055-.01.109-.028.16L7.231 6.857zM8.06 8.908c-.17 0-.33-.028-.33-.189a.81.81 0 01.027-.178l.141-.565 2.908-3.461H9.132c-.218 0-.358-.058-.358-.274a.834.834 0 01.037-.216l.148-.546h3.846l-.138.611c-.057.265-.075.274-.296.537L9.803 7.734h1.42c.444 0 .678-.02.848-.283h.132l-.268 1.067c-.075.296-.16.395-.527.395L8.06 8.908zM12.565 8.908c-.197 0-.32-.075-.32-.217a.592.592 0 01.126-.321l3.47-5.805a.493.493 0 00.076-.217.219.219 0 00-.188-.197l.037-.14h1.854c.32 0 .349.084.358.366l.216 6.02c.01.273.056.32.207.377l-.037.148h-1.407c-.235 0-.32-.104-.328-.386l-.03-1.364h-2.124l-.658 1.193a.602.602 0 00-.085.227c0 .131.14.179.253.188l-.037.148-1.383-.02zm2.484-2.785h1.534l-.047-2.653h-.023L15.05 6.123zM21.543 8.531c-.296.48-.451.462-1.175.462-.723 0-1.458-.048-1.458-.888.022-.264.07-.526.14-.781l.8-3.217c.025-.093.044-.188.057-.283a.184.184 0 00-.044-.143.186.186 0 00-.135-.064l.028-.148h1.299c.197 0 .32.047.32.198a.69.69 0 01-.029.188l-.79 3.198c-.035.133-.06.269-.075.406 0 .253.216.347.65.347.638 0 .837-.179.996-.846l.696-2.86c.025-.094.044-.188.057-.283a.186.186 0 00-.179-.208l.028-.147h1.298c.198 0 .32.047.32.198a.751.751 0 01-.027.188l-1.076 4.43a2.416 2.416 0 00-.067.31c0 .13.123.17.199.178l-.028.148h-1.361c-.132 0-.264-.028-.264-.217.003-.07.012-.138.029-.206l.112-.453-.02-.019-.301.512zM25.143 8.908c-.347 0-.582-.207-.582-.528.002-.114.017-.227.047-.337l.865-3.528h-.508l.207-.888c.875 0 1.553-.668 1.835-1.204h.413l-.256 1.056h1.298l-.188.74c-.037.148-.094.296-.48.296h-.377c-.432 0-.555.148-.648.535l-.528 2.145c-.025.09-.04.181-.046.274 0 .225.188.263.413.263.8 0 .772-.056.932-.358h.148l-.246 1.006c-.084.339-.14.528-.658.528h-1.64zM28.23 7.59c0-.48.377-2.86 1.33-3.698.445-.386 1.375-.49 2.08-.49 1.007 0 1.958.225 1.958 1.401 0 .481-.378 2.861-1.332 3.707-.443.386-1.374.49-2.08.49-1.006-.007-1.957-.234-1.957-1.41zm2.258.367a1 1 0 00.922-.488c.451-.8.696-2.219.696-2.367 0-.48-.31-.669-.772-.669a1 1 0 00-.915.486c-.444.8-.697 2.219-.697 2.366-.006.484.305.672.766.672z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ UAT as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Uaz: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Uaz;
@@ -0,0 +1,72 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const Uaz = (props) => {
3
+ return /* @__PURE__ */ jsxs(
4
+ "svg",
5
+ {
6
+ width: "32px",
7
+ height: "14px",
8
+ viewBox: "0 0 35 14",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx(
13
+ "path",
14
+ {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M17.138 6.475L2.413 2.031c-.155-.046-.25.013-.304.077a.358.358 0 00-.064.114l15.089 5.216S31.84 2.38 32.332 2.213a.347.347 0 00-.06-.115c-.119-.147-.311-.085-.311-.085L17.138 6.475zm14.994-4.33a.144.144 0 00-.043-.014.22.22 0 00-.087.003L32 2.135 17.139 6.61 2.375 2.154a.184.184 0 00-.106-.006.113.113 0 00-.021.009l14.885 5.145 7.373-2.535c3.389-1.166 6.83-2.349 7.625-2.621z",
18
+ fill: "#000"
19
+ }
20
+ ),
21
+ /* @__PURE__ */ jsx(
22
+ "path",
23
+ {
24
+ fillRule: "evenodd",
25
+ clipRule: "evenodd",
26
+ d: "M20.667 5.361a4.481 4.481 0 00-3.998-2.426 4.43 4.43 0 00-3.84 2.193l.12.173a4.268 4.268 0 013.72-2.171c1.704 0 3.195.983 3.88 2.429l.118-.198zm.147.006a4.608 4.608 0 00-4.145-2.56c-1.718 0-3.207.93-3.992 2.328l.288.411c.021-.043.044-.085.067-.128a4.14 4.14 0 013.637-2.16 4.157 4.157 0 013.863 2.581l.282-.472zM12.647 7.399a4.021 4.021 0 108.042-.067l-.248.332a3.782 3.782 0 01-7.55-.416l-.222-.268a4.032 4.032 0 00-.022.419zm-.091-.556a4.15 4.15 0 108.241.131l-.482.643a3.653 3.653 0 01-7.294-.412l-.439-.532c-.01.057-.019.113-.026.17z",
27
+ fill: "#000"
28
+ }
29
+ ),
30
+ /* @__PURE__ */ jsx(
31
+ "path",
32
+ {
33
+ fillRule: "evenodd",
34
+ clipRule: "evenodd",
35
+ d: "M14.603 7.92s-.164.06-.497.2c-.189.079-.238.21-.244.308-.005.075.014.13.014.13l3.257-1.12-2.53.482zm.797-.021l-.762.145-.02.007-.091.036a20.12 20.12 0 00-.371.151c-.1.042-.138.096-.155.142l1.399-.481z",
36
+ fill: "#000"
37
+ }
38
+ ),
39
+ /* @__PURE__ */ jsx(
40
+ "path",
41
+ {
42
+ fillRule: "evenodd",
43
+ clipRule: "evenodd",
44
+ d: "M20.812 7l-.011.016a4.144 4.144 0 11-8.214-.299l-.478.145a4.598 4.598 0 109.159.352l-.456-.213z",
45
+ fill: "#000"
46
+ }
47
+ ),
48
+ /* @__PURE__ */ jsx(
49
+ "path",
50
+ {
51
+ fillRule: "evenodd",
52
+ clipRule: "evenodd",
53
+ d: "M32.342 2.21L17.133 7.439 2.037 2.221S2 2.307 2 2.362c0 .055.006.188.194.267l9.92 4.236.474-.144.44.525 1.581.675 2.512-.478-3.25 1.117s.04.184.31.204c.268.019 2.988.24 2.988.24l3.14-1.339.492-.654.463.236s10.71-4.532 10.948-4.628c.238-.097.13-.408.13-.408z",
54
+ fill: "#000"
55
+ }
56
+ ),
57
+ /* @__PURE__ */ jsx(
58
+ "path",
59
+ {
60
+ fillRule: "evenodd",
61
+ clipRule: "evenodd",
62
+ d: "M13.583 5.397a3.665 3.665 0 016.3.241l.65.202a4.16 4.16 0 00-7.575-.29l.625-.153z",
63
+ fill: "#000"
64
+ }
65
+ )
66
+ ]
67
+ }
68
+ );
69
+ };
70
+ export {
71
+ Uaz as default
72
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Ural: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Ural;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Ural = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "43px",
7
+ height: "9px",
8
+ viewBox: "0 0 43 9",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M40.843 6.959L37.806 2.02H33.633l-3.038 4.938c0 .02 0 .02.02.02h3.12l1.984-3.264c0-.02.02-.02.02 0l1.984 3.264h3.12v-.02zm-13.678.02h3.1c.02 0 .02-.02.02-.02L27.227 2.02H23.054l-3.017 4.938c0 .02 0 .02.02.02h6.158c.124 0 .207-.144.145-.248l-.744-1.219h-1.55c-.02 0-.02-.02-.02-.02l1.074-1.777c0-.02.02-.02.02 0l2.025 3.264c-.02 0-.02 0 0 0zm-6.28-3.16c-.021.95-.848 1.693-1.819 1.693h-3.471s-.02 0-.02.021V6.98s0 .021-.021.021h-2.976s-.02 0-.02-.02V4.044s0-.02.02-.02h5.145a.29.29 0 00.29-.248c.02-.165-.104-.29-.27-.29H12.58s-.021 0-.021-.02V2.02s0-.021.02-.021h6.53c.991.02 1.818.826 1.776 1.818zM8.57 2.02L6.98 4.087h-.021L5.368 2.02H2.02C2 2.02 2 2.04 2 2.04l3.347 4.133v.02l-.578.744c0 .02 0 .02.02.02h3.513l3.801-4.917c0-.02 0-.02-.02-.02H8.57z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ Ural as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const VIS: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default VIS;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const VIS = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "23px",
7
+ height: "16px",
8
+ viewBox: "0 0 23 16",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M12.652 2h-.222L6.037 14h3.365l6.392-12h-.226L13.72 5.477h-.225L15.344 2h-.225l-1.848 3.477h-.224L14.895 2h-.224l-1.849 3.477h-.224L14.446 2h-.224l-1.848 3.477h-.225L13.998 2h-.224l-1.849 3.477h-.224L13.549 2h-.224l-1.848 3.477h-.225L13.101 2h-.225l-1.848 3.477h-.224L12.652 2zM2.224 5.364H2V14h.224V5.364zM2.449 14h.224V5.364h-.224V14zM2.897 5.364V14h.225V5.364h-.225zM3.346 5.364V14h.224V5.364h-.224zM3.794 5.364V14h.225V5.364h-.225zM4.243 5.364V14h.224V5.364h-.224zM4.692 5.364V14h.224V5.364h-.224zM5.14 5.364V14h.09a.224.224 0 00.198-.119L11.757 2H8.393L5.47 7.486c-.027.052-.106.032-.106-.026V5.364H5.14zM20.148 10.86a.448.448 0 00-.186-.446l-2.71-1.89a.897.897 0 01-.28-1.157L19.833 2h-3.365l-2.975 5.585a2.019 2.019 0 00.176 2.173l.668.878h-2.579l-.112.224h8.503zM20.056 11.084h-8.523l-.112.224h8.523l.112-.224zM19.832 11.533h-8.524l-.112.224h8.524l.112-.224zM19.608 11.981h-8.524l-.112.225h8.523l.113-.225zM19.383 12.43H10.86l-.112.224h8.523l.112-.224zM19.159 12.879h-8.523l-.113.224h8.524l.112-.224zM18.935 13.327H10.41l-.112.224h8.523l.113-.224zM18.71 13.776h-8.523l-.112.224h8.523l.112-.224z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ VIS as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const VKR: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default VKR;
@@ -0,0 +1,34 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const VKR = (props) => {
3
+ return /* @__PURE__ */ jsxs(
4
+ "svg",
5
+ {
6
+ width: "37px",
7
+ height: "12px",
8
+ viewBox: "0 0 37 12",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx(
13
+ "path",
14
+ {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M2 5.672V2h10.23v2.885H10l2.23.787V10L2 5.672zM4.098 3.05v.656h6.033v-.656H4.098zm0 1.18v.787l6.033 2.492v-.787L4.098 4.23z",
18
+ fill: "#000"
19
+ }
20
+ ),
21
+ /* @__PURE__ */ jsx(
22
+ "path",
23
+ {
24
+ d: "M13.41 10V2l1.967.787v1.18h3.148L23.508 2v1.574l-3.016 1.311 3.016 1.18v1.837l-4.983-2.23h-3.148v3.41L13.41 10zM24.689 2v8l1.967-.918V2.918h6.164v.656l-4.984 1.311V6.59l7.082-2.098V2h-10.23z",
25
+ fill: "#000"
26
+ }
27
+ )
28
+ ]
29
+ }
30
+ );
31
+ };
32
+ export {
33
+ VKR as default
34
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Volkswagen: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Volkswagen;
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Volkswagen = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "21px",
7
+ height: "20px",
8
+ viewBox: "0 0 21 20",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M9.525 2.016a9.469 9.469 0 00-1.245.181 9.772 9.772 0 00-.475.122c-.14.04-.362.111-.493.158-.13.047-.337.129-.46.18a9.532 9.532 0 00-.912.463 9.603 9.603 0 00-.716.476 8.011 8.011 0 00-1.006.89 8.412 8.412 0 00-.309.341c-.085.1-.218.265-.296.368a9.73 9.73 0 00-.28.395 9.552 9.552 0 00-.26.422 9.755 9.755 0 00-.238.442 9.11 9.11 0 00-.202.442c-.05.118-.124.307-.164.421a9.198 9.198 0 00-.254.864 9.308 9.308 0 00-.128.69 9.708 9.708 0 00-.047.428 7.527 7.527 0 00-.022 1.071c.008.158.024.372.035.475a9.022 9.022 0 00.128.817c.022.103.064.278.093.388.03.11.087.306.13.435.042.13.115.331.161.449.047.118.122.295.168.395a9.083 9.083 0 00.42.791c.068.113.176.281.24.374.063.092.16.227.216.3.056.074.164.21.241.304.077.093.224.259.326.368.102.109.276.281.386.382.11.101.276.247.37.323.094.077.232.184.306.24a9.233 9.233 0 00.678.451c.113.067.31.176.44.242.127.065.317.156.421.202a11 11 0 00.372.153 9.363 9.363 0 00.823.266c.1.026.24.06.31.076a9.035 9.035 0 001.188.175c.108.009.379.016.601.016.223 0 .494-.007.601-.016a9.831 9.831 0 00.75-.09 9.266 9.266 0 00.823-.18c.11-.03.292-.085.404-.122.112-.037.312-.11.444-.161a9.083 9.083 0 001.305-.663 8.61 8.61 0 00.662-.463c.085-.067.219-.176.297-.242a9.659 9.659 0 00.727-.711c.087-.096.207-.235.266-.308a8.89 8.89 0 00.433-.582 9.187 9.187 0 00.44-.736c.058-.108.141-.276.187-.376a9.868 9.868 0 00.317-.8c.034-.101.089-.28.122-.398a9.04 9.04 0 00.108-.435c.026-.12.062-.313.08-.428.019-.114.046-.323.061-.463.018-.162.03-.397.036-.649.005-.244.002-.49-.008-.642a11.853 11.853 0 00-.037-.436 9.11 9.11 0 00-.18-1.004 9.758 9.758 0 00-.129-.468c-.035-.11-.09-.276-.124-.368-.033-.092-.1-.26-.148-.374a9.542 9.542 0 00-.195-.424 9.325 9.325 0 00-.23-.43 9.289 9.289 0 00-.598-.894c-.08-.104-.217-.27-.303-.369a9.44 9.44 0 00-.845-.836 9.752 9.752 0 00-.389-.31 9.558 9.558 0 00-.698-.47 8.787 8.787 0 00-.77-.406 10.77 10.77 0 00-.363-.155c-.1-.04-.286-.108-.414-.152a9.752 9.752 0 00-.454-.14 9.42 9.42 0 00-.74-.167 8.929 8.929 0 00-.648-.089 8.043 8.043 0 00-.688-.026c-.271-.002-.563 0-.648.007zm.81.723c.167.006.388.021.492.033.104.011.265.033.358.048a7.603 7.603 0 01.648.134c.086.022.26.074.388.115.2.064.23.077.22.097l-1.133 2.53a548.264 548.264 0 01-1.155 2.571c-.018.036-.043.068-.055.073a.068.068 0 01-.048-.005.231.231 0 01-.06-.08 2939.198 2939.198 0 01-2.285-5.097c-.003-.01.074-.041.222-.089a8.63 8.63 0 01.443-.127c.12-.03.295-.07.392-.088.096-.018.267-.046.378-.06a8.432 8.432 0 01.877-.066c.008-.001.15.004.318.01zm3.564 1.099c.093.057.237.15.32.208.083.058.224.162.315.231.09.07.24.193.334.275.094.081.253.23.353.329a8.94 8.94 0 01.55.602 9.089 9.089 0 01.38.512l.07.104-1.883 3.734c-1.18 2.34-1.894 3.742-1.912 3.755-.02.014-.037.017-.052.009a.25.25 0 01-.058-.076c-.019-.036-.343-.76-.72-1.611-.376-.85-.697-1.57-.713-1.598a.217.217 0 00-.069-.074c-.036-.02-.117-.022-.689-.026-.356-.003-.692 0-.747.004-.08.008-.106.016-.138.045-.03.028-.19.39-.734 1.662-.508 1.189-.705 1.635-.73 1.657-.027.023-.04.027-.06.017a.178.178 0 01-.05-.057c-.014-.024-.283-.559-.598-1.188L5.223 8.657c-.7-1.401-1.274-2.553-1.274-2.558 0-.005.05-.081.11-.17a8.446 8.446 0 01.455-.594c.071-.085.266-.29.434-.456a9.28 9.28 0 01.473-.441c.092-.077.241-.193.33-.258.09-.066.238-.17.331-.23.093-.06.233-.147.311-.193.079-.045.149-.082.156-.082.007 0 .62 1.339 1.363 2.975l1.35 2.976.06.03c.06.03.06.03.76.03.563 0 .708-.003.744-.018a.208.208 0 00.07-.052c.015-.018.631-1.365 1.37-2.993l1.342-2.96.061.035.23.139zm-8.62 7.704c1.12 2.23 2.087 4.161 2.151 4.29.075.15.135.252.167.284.03.03.073.056.106.065.03.008.08.01.108.006a.301.301 0 00.104-.046.378.378 0 00.1-.13 270.8 270.8 0 001.024-2.26c.537-1.193.99-2.183 1.006-2.2.02-.023.038-.03.057-.024a.114.114 0 01.05.042c.012.018.396.863.853 1.877a5354.8 5354.8 0 011.001 2.223c.105.234.188.4.215.431.025.03.07.061.105.074.042.016.077.02.12.014a.314.314 0 00.117-.05c.053-.038.09-.108.627-1.18.314-.627 1.282-2.56 2.152-4.293.87-1.734 1.586-3.157 1.593-3.164.006-.006.036.06.067.147a7.749 7.749 0 01.212.723 8.584 8.584 0 01.15.881c.02.172.025.316.024.723 0 .398-.005.552-.024.71a8.675 8.675 0 01-.138.826 8.807 8.807 0 01-.101.399c-.03.104-.079.262-.11.352a8.54 8.54 0 01-.294.732 7.082 7.082 0 01-.81 1.338 9.308 9.308 0 01-.298.37 9.437 9.437 0 01-.837.822c-.1.084-.26.211-.357.282a9.202 9.202 0 01-.372.257c-.107.07-.277.174-.376.23-.1.057-.263.144-.364.195a8.745 8.745 0 01-.73.315 8.699 8.699 0 01-.364.122 9.03 9.03 0 01-.413.114 8.75 8.75 0 01-.433.092 8.42 8.42 0 01-.722.096 8.837 8.837 0 01-.574.016 6.535 6.535 0 01-1.464-.146 8.435 8.435 0 01-.399-.094 8.562 8.562 0 01-.79-.26 7.42 7.42 0 01-1.364-.71 9.164 9.164 0 01-.647-.481 9.076 9.076 0 01-.48-.448 8.769 8.769 0 01-.453-.483 12.729 12.729 0 01-.245-.31 8.218 8.218 0 01-.454-.681 8.595 8.595 0 01-.203-.368c-.051-.1-.13-.262-.174-.362a8.533 8.533 0 01-.151-.368 8.44 8.44 0 01-.228-.703 7.785 7.785 0 01-.076-.311 8.822 8.822 0 01-.121-.746 9.888 9.888 0 01-.035-.479 5.622 5.622 0 010-.596 9.89 9.89 0 01.035-.478 8.32 8.32 0 01.129-.777c.022-.1.059-.247.081-.328a9.392 9.392 0 01.21-.632c.002.002.919 1.829 2.037 4.06z",
17
+ fill: "#000"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ };
23
+ export {
24
+ Volkswagen as default
25
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Volvo: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Volvo;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Volvo = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "20px",
7
+ height: "20px",
8
+ viewBox: "0 0 20 20",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M9.513 9.483h-.348v-.228h1.381v.228h-.344v1.034h.32c.295 0 .489-.195.489-.46h.228v.692H9.165v-.232h.348V9.483zm1.688.001h-.343v-.23h1.499v.23h-.363l.505.922.5-.922H12.7v-.23h1.033v.23h-.344l-.684 1.267-.807-.001-.697-1.266zm3.454-.261c.694 0 1.067.346 1.067.78 0 .44-.351.792-1.063.792-.711 0-1.066-.351-1.066-.792 0-.434.369-.78 1.062-.78zm-8.801 1.184l.499-.922h-.298v-.23h1.032v.23h-.344l-.685 1.266h-.807l-.696-1.266h-.343v-.23H5.71v.23h-.362l.506.922zm2.158-1.184c.694 0 1.067.347 1.067.781 0 .44-.352.791-1.063.791s-1.066-.35-1.066-.791c0-.434.368-.78 1.062-.78zm-.367.772c.004-.288.142-.54.38-.536.237.005.362.26.358.549-.006.271-.118.554-.378.55-.254-.005-.365-.285-.36-.563zm6.643 0c.005-.288.143-.54.38-.536.237.005.363.26.358.549-.005.271-.117.554-.378.55-.253-.005-.365-.285-.36-.563zM4.151 8.553a6.027 6.027 0 0111.698 0H4.151zm11.698 2.895a6.027 6.027 0 01-11.698 0h11.698zm.566-6.227l.379-.38c.27.355.513.731.725 1.126h.299V2.189H14.04v.296c.393.211.767.453 1.119.721l-.38.379a8 8 0 101.636 1.636z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ Volvo as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const Wielton: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default Wielton;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Wielton = (props) => {
3
+ return /* @__PURE__ */ jsx(
4
+ "svg",
5
+ {
6
+ width: "24px",
7
+ height: "18px",
8
+ viewBox: "0 0 24 18",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx(
12
+ "path",
13
+ {
14
+ d: "M21.17 16h-2.027c.01-.516.342-.826.877-.815.303.007.358-.048.335-.342-.004-.064-.009-.128-.018-.19-.3-1.74-1.217-3.04-2.76-3.91a2.171 2.171 0 01-.461-.37c-.221-.224-.422-.468-.63-.703l-.082.03c.011.093.009.192.039.28.184.569.388 1.133.561 1.706a.765.765 0 01-.011.463c-.31.813-.64 1.62-.973 2.424-.054.133-.185.235-.255.363-.076.137-.174.29-.17.432.008.212.097.42.151.63h-2.081c.04-.443.262-.703.643-.815a.778.778 0 00.37-.233c1.214-1.52 1.226-3.545.027-5.15-.127-.173-.155-.317-.09-.518.125-.386.223-.778.328-1.153-.185-.162-.253-.061-.329.076a5.909 5.909 0 01-2.782 2.56c-.16.074-.21.145-.165.33.283 1.182.55 2.369.815 3.556.02.089.005.224-.052.283a.536.536 0 00-.133.527c.04.178.076.354.112.532h-2.082c.018-.068.04-.137.057-.208a.806.806 0 01.747-.611c.345-.02.37-.04.345-.388a5.39 5.39 0 00-1.47-3.347c-.227-.242-.325-.221-.453.098-.415 1.034-.828 2.068-1.25 3.1-.032.08-.124.178-.201.192-.375.069-.519.26-.443.63.036.176.064.354.096.532H5.563c.105-.498.366-.817.918-.829.066 0 .146-.073.196-.132 1.096-1.226 1.57-2.657 1.406-4.29-.043-.435-.426-.748-.86-.762-.402-.011-.669.192-.874.534-.1-.059-.197-.11-.286-.168-1.817-1.208-2.696-2.927-2.744-5.08-.022-.983-.383-1.51-1.319-1.823v-.055c.142-.322.28-.644.43-.98l3.64.756c-.06.482-.11.922-.167 1.363-.084.664.283 1.264.893 1.45.64.193 1.292-.117 1.559-.763.402-.972.785-1.954 1.185-2.929.036-.086.118-.2.198-.219 1.02-.244 2.148.226 2.703 1.125.192.313.431.516.817.475.375-.039.564-.287.692-.614.221-.568.226-.561.83-.477.54.075 1.026.242 1.25.792a5.44 5.44 0 002.51 2.824c-.013.244-.045.488-.036.733.055 1.78.685 3.326 1.929 4.615a.734.734 0 01.182.292c.226.945.443 1.89.653 2.84.018.082 0 .21-.055.263-.166.164-.173.349-.132.554.034.17.064.338.096.507L21.17 16z",
15
+ fill: "#000"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ };
21
+ export {
22
+ Wielton as default
23
+ };
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+
3
+ declare const XCMG: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
4
+ export default XCMG;