@modul/mbui 0.0.2-beta-storybook-9d462616 → 0.0.2-beta-pv-52768-9b2131f6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (261) hide show
  1. package/package.json +25 -2
  2. package/src/@/config/button.ts +89 -0
  3. package/src/@/config/index.ts +99 -0
  4. package/src/@/lib/utils.ts +7 -0
  5. package/src/Audio/Audio.styl +115 -0
  6. package/src/Audio/Audio.tsx +359 -0
  7. package/src/Audio/index.ts +4 -0
  8. package/src/Audio/types.ts +40 -0
  9. package/src/Base/Buttons/Button.tsx +66 -41
  10. package/src/Base/Buttons/index.ts +2 -1
  11. package/src/Base/Input/Base.tsx +35 -0
  12. package/src/Base/Input/Input.tsx +31 -11
  13. package/src/Base/Input/types.ts +3 -2
  14. package/src/Collapse/Collapse.tsx +88 -0
  15. package/src/Collapse/ant-collapse.styl +93 -0
  16. package/src/Collapse/index.ts +5 -0
  17. package/src/Input-OTP/Input.tsx +71 -0
  18. package/src/Input-OTP/index.ts +3 -0
  19. package/src/Logo/Logo.tsx +16 -0
  20. package/src/Logo/index.ts +3 -0
  21. package/src/Popover/Popover.tsx +42 -0
  22. package/src/Popover/index.ts +5 -0
  23. package/src/Slider/Slider.tsx +21 -0
  24. package/src/Slider/index.ts +4 -0
  25. package/src/Slider/slider.styl +62 -0
  26. package/src/Tabs/Tabs.tsx +63 -0
  27. package/src/Tabs/ant-tabs.styl +91 -0
  28. package/src/Tabs/index.ts +5 -0
  29. package/src/Tooltip/Tooltip.tsx +47 -0
  30. package/src/Tooltip/index.ts +5 -0
  31. package/src/assets/css/global.css +125 -0
  32. package/src/assets/fonts/Roboto-Italic.ttf +0 -0
  33. package/src/assets/fonts/Roboto-Italic.woff2 +0 -0
  34. package/src/assets/fonts/Roboto.ttf +0 -0
  35. package/src/assets/fonts/Roboto.woff2 +0 -0
  36. package/src/assets/images/logo/bank/emblem-white.svg +1 -0
  37. package/src/assets/images/logo/bank/emblem.svg +1 -0
  38. package/src/assets/images/logo/bank/logo-white.svg +1 -0
  39. package/src/assets/images/logo/bank/logo.svg +1 -0
  40. package/src/assets/images/logo/garant/emblem-white.svg +1 -0
  41. package/src/assets/images/logo/garant/emblem.svg +1 -0
  42. package/src/assets/images/logo/garant/logo-white.svg +1 -0
  43. package/src/assets/images/logo/garant/logo.svg +1 -0
  44. package/src/assets/images/logo/kassa/emblem-white.svg +1 -0
  45. package/src/assets/images/logo/kassa/emblem.svg +1 -0
  46. package/src/assets/images/logo/kassa/logo-white.svg +1 -0
  47. package/src/assets/images/logo/kassa/logo.svg +1 -0
  48. package/src/components/BottonNavigation/BottonNavigation.tsx +55 -0
  49. package/src/components/BottonNavigation/index.ts +6 -0
  50. package/src/components/SvgIcon/SvgIcon.tsx +32 -0
  51. package/src/components/SvgIcon/icons/AddList.tsx +18 -0
  52. package/src/components/SvgIcon/icons/AlertCircle.tsx +18 -0
  53. package/src/components/SvgIcon/icons/AlertCircleSolid.tsx +18 -0
  54. package/src/components/SvgIcon/icons/AlertDiamond.tsx +18 -0
  55. package/src/components/SvgIcon/icons/AlertDiamondSolid.tsx +18 -0
  56. package/src/components/SvgIcon/icons/AlertShield.tsx +18 -0
  57. package/src/components/SvgIcon/icons/Android.tsx +18 -0
  58. package/src/components/SvgIcon/icons/Apple.tsx +18 -0
  59. package/src/components/SvgIcon/icons/Archive.tsx +18 -0
  60. package/src/components/SvgIcon/icons/ArrowCircle.tsx +18 -0
  61. package/src/components/SvgIcon/icons/ArrowDown.tsx +18 -0
  62. package/src/components/SvgIcon/icons/ArrowLeft.tsx +18 -0
  63. package/src/components/SvgIcon/icons/ArrowRight.tsx +18 -0
  64. package/src/components/SvgIcon/icons/ArrowUp.tsx +18 -0
  65. package/src/components/SvgIcon/icons/ArrowUpCorner.tsx +18 -0
  66. package/src/components/SvgIcon/icons/ArrowsChange.tsx +18 -0
  67. package/src/components/SvgIcon/icons/Atm.tsx +18 -0
  68. package/src/components/SvgIcon/icons/Attach.tsx +18 -0
  69. package/src/components/SvgIcon/icons/Bank.tsx +18 -0
  70. package/src/components/SvgIcon/icons/Bold.tsx +18 -0
  71. package/src/components/SvgIcon/icons/Bonus.tsx +18 -0
  72. package/src/components/SvgIcon/icons/Building.tsx +18 -0
  73. package/src/components/SvgIcon/icons/Calendar.tsx +18 -0
  74. package/src/components/SvgIcon/icons/CalendarCancel.tsx +18 -0
  75. package/src/components/SvgIcon/icons/Call.tsx +18 -0
  76. package/src/components/SvgIcon/icons/CallEnd.tsx +18 -0
  77. package/src/components/SvgIcon/icons/CallMissed.tsx +18 -0
  78. package/src/components/SvgIcon/icons/Callback.tsx +18 -0
  79. package/src/components/SvgIcon/icons/Camera.tsx +18 -0
  80. package/src/components/SvgIcon/icons/Cancel.tsx +18 -0
  81. package/src/components/SvgIcon/icons/CancelSolid.tsx +18 -0
  82. package/src/components/SvgIcon/icons/Card.tsx +18 -0
  83. package/src/components/SvgIcon/icons/CardLock.tsx +18 -0
  84. package/src/components/SvgIcon/icons/CardRefill.tsx +18 -0
  85. package/src/components/SvgIcon/icons/CardReissue.tsx +18 -0
  86. package/src/components/SvgIcon/icons/CardScan.tsx +18 -0
  87. package/src/components/SvgIcon/icons/CardToCard.tsx +18 -0
  88. package/src/components/SvgIcon/icons/CardUnlock.tsx +18 -0
  89. package/src/components/SvgIcon/icons/Change.tsx +18 -0
  90. package/src/components/SvgIcon/icons/Chart.tsx +18 -0
  91. package/src/components/SvgIcon/icons/Chat.tsx +18 -0
  92. package/src/components/SvgIcon/icons/ChatSolid.tsx +18 -0
  93. package/src/components/SvgIcon/icons/Check.tsx +18 -0
  94. package/src/components/SvgIcon/icons/CheckCircle.tsx +18 -0
  95. package/src/components/SvgIcon/icons/CheckCircleSolid.tsx +18 -0
  96. package/src/components/SvgIcon/icons/CheckShield.tsx +20 -0
  97. package/src/components/SvgIcon/icons/CheckSmall.tsx +18 -0
  98. package/src/components/SvgIcon/icons/Checklist.tsx +18 -0
  99. package/src/components/SvgIcon/icons/Circle.tsx +18 -0
  100. package/src/components/SvgIcon/icons/Clock.tsx +18 -0
  101. package/src/components/SvgIcon/icons/Close.tsx +18 -0
  102. package/src/components/SvgIcon/icons/Coins.tsx +18 -0
  103. package/src/components/SvgIcon/icons/Collapse.tsx +18 -0
  104. package/src/components/SvgIcon/icons/Copy.tsx +18 -0
  105. package/src/components/SvgIcon/icons/Cup.tsx +18 -0
  106. package/src/components/SvgIcon/icons/CurrencyChange.tsx +18 -0
  107. package/src/components/SvgIcon/icons/CurrencyTransfer.tsx +18 -0
  108. package/src/components/SvgIcon/icons/Deposit.tsx +18 -0
  109. package/src/components/SvgIcon/icons/Diamond.tsx +18 -0
  110. package/src/components/SvgIcon/icons/Dislike.tsx +18 -0
  111. package/src/components/SvgIcon/icons/DislikeSolid.tsx +18 -0
  112. package/src/components/SvgIcon/icons/Doc.tsx +18 -0
  113. package/src/components/SvgIcon/icons/DocCancel.tsx +18 -0
  114. package/src/components/SvgIcon/icons/Dollar.tsx +18 -0
  115. package/src/components/SvgIcon/icons/DoubleArrow.tsx +18 -0
  116. package/src/components/SvgIcon/icons/DoubleTick.tsx +18 -0
  117. package/src/components/SvgIcon/icons/Download.tsx +18 -0
  118. package/src/components/SvgIcon/icons/Dropdown.tsx +18 -0
  119. package/src/components/SvgIcon/icons/DropdownSmallOld.tsx +20 -0
  120. package/src/components/SvgIcon/icons/Dropup.tsx +18 -0
  121. package/src/components/SvgIcon/icons/Edit.tsx +18 -0
  122. package/src/components/SvgIcon/icons/Email.tsx +18 -0
  123. package/src/components/SvgIcon/icons/Excel.tsx +18 -0
  124. package/src/components/SvgIcon/icons/Expand.tsx +18 -0
  125. package/src/components/SvgIcon/icons/Eye.tsx +18 -0
  126. package/src/components/SvgIcon/icons/EyeOff.tsx +18 -0
  127. package/src/components/SvgIcon/icons/Favorite.tsx +18 -0
  128. package/src/components/SvgIcon/icons/FavoriteSolid.tsx +18 -0
  129. package/src/components/SvgIcon/icons/Fb.tsx +18 -0
  130. package/src/components/SvgIcon/icons/FbCircle.tsx +18 -0
  131. package/src/components/SvgIcon/icons/File.tsx +18 -0
  132. package/src/components/SvgIcon/icons/FileAdd.tsx +18 -0
  133. package/src/components/SvgIcon/icons/Files.tsx +18 -0
  134. package/src/components/SvgIcon/icons/Filter.tsx +18 -0
  135. package/src/components/SvgIcon/icons/Folder.tsx +18 -0
  136. package/src/components/SvgIcon/icons/Geolocation.tsx +18 -0
  137. package/src/components/SvgIcon/icons/Gift.tsx +18 -0
  138. package/src/components/SvgIcon/icons/Globe.tsx +18 -0
  139. package/src/components/SvgIcon/icons/Heart.tsx +18 -0
  140. package/src/components/SvgIcon/icons/HeartSolid.tsx +18 -0
  141. package/src/components/SvgIcon/icons/Help.tsx +18 -0
  142. package/src/components/SvgIcon/icons/Home.tsx +18 -0
  143. package/src/components/SvgIcon/icons/Housing.tsx +18 -0
  144. package/src/components/SvgIcon/icons/Ig.tsx +18 -0
  145. package/src/components/SvgIcon/icons/IgCircle.tsx +18 -0
  146. package/src/components/SvgIcon/icons/Info.tsx +18 -0
  147. package/src/components/SvgIcon/icons/InfoBook.tsx +18 -0
  148. package/src/components/SvgIcon/icons/InfoSolid.tsx +18 -0
  149. package/src/components/SvgIcon/icons/Italic.tsx +18 -0
  150. package/src/components/SvgIcon/icons/Key.tsx +18 -0
  151. package/src/components/SvgIcon/icons/Left.tsx +18 -0
  152. package/src/components/SvgIcon/icons/Lightbulb.tsx +18 -0
  153. package/src/components/SvgIcon/icons/Like.tsx +18 -0
  154. package/src/components/SvgIcon/icons/LikeSolid.tsx +18 -0
  155. package/src/components/SvgIcon/icons/Link.tsx +18 -0
  156. package/src/components/SvgIcon/icons/Lock.tsx +18 -0
  157. package/src/components/SvgIcon/icons/Logout.tsx +18 -0
  158. package/src/components/SvgIcon/icons/MagicWand.tsx +18 -0
  159. package/src/components/SvgIcon/icons/Mail.tsx +18 -0
  160. package/src/components/SvgIcon/icons/MailSend.tsx +18 -0
  161. package/src/components/SvgIcon/icons/Map.tsx +18 -0
  162. package/src/components/SvgIcon/icons/MapPin.tsx +18 -0
  163. package/src/components/SvgIcon/icons/Menu.tsx +18 -0
  164. package/src/components/SvgIcon/icons/Mic.tsx +18 -0
  165. package/src/components/SvgIcon/icons/MicOff.tsx +18 -0
  166. package/src/components/SvgIcon/icons/Minus.tsx +18 -0
  167. package/src/components/SvgIcon/icons/MinusCircle.tsx +18 -0
  168. package/src/components/SvgIcon/icons/MinusShort.tsx +18 -0
  169. package/src/components/SvgIcon/icons/Moneybox.tsx +18 -0
  170. package/src/components/SvgIcon/icons/More.tsx +18 -0
  171. package/src/components/SvgIcon/icons/Move.tsx +18 -0
  172. package/src/components/SvgIcon/icons/Newbie.tsx +20 -0
  173. package/src/components/SvgIcon/icons/News.tsx +18 -0
  174. package/src/components/SvgIcon/icons/Notes.tsx +18 -0
  175. package/src/components/SvgIcon/icons/Notification.tsx +18 -0
  176. package/src/components/SvgIcon/icons/Ok.tsx +18 -0
  177. package/src/components/SvgIcon/icons/OkCircle.tsx +18 -0
  178. package/src/components/SvgIcon/icons/Order.tsx +18 -0
  179. package/src/components/SvgIcon/icons/OrderLoad.tsx +18 -0
  180. package/src/components/SvgIcon/icons/OrderSend.tsx +18 -0
  181. package/src/components/SvgIcon/icons/Pause.tsx +18 -0
  182. package/src/components/SvgIcon/icons/PauseCircle.tsx +18 -0
  183. package/src/components/SvgIcon/icons/Payment.tsx +18 -0
  184. package/src/components/SvgIcon/icons/PhoneShake.tsx +18 -0
  185. package/src/components/SvgIcon/icons/Play.tsx +18 -0
  186. package/src/components/SvgIcon/icons/PlaySolid.tsx +18 -0
  187. package/src/components/SvgIcon/icons/Plus.tsx +18 -0
  188. package/src/components/SvgIcon/icons/PlusCircle.tsx +18 -0
  189. package/src/components/SvgIcon/icons/Pos.tsx +18 -0
  190. package/src/components/SvgIcon/icons/Print.tsx +18 -0
  191. package/src/components/SvgIcon/icons/QrPay.tsx +18 -0
  192. package/src/components/SvgIcon/icons/Redirect.tsx +18 -0
  193. package/src/components/SvgIcon/icons/Refill.tsx +18 -0
  194. package/src/components/SvgIcon/icons/Refund.tsx +18 -0
  195. package/src/components/SvgIcon/icons/Reload.tsx +18 -0
  196. package/src/components/SvgIcon/icons/Reply.tsx +18 -0
  197. package/src/components/SvgIcon/icons/ReplyShape.tsx +18 -0
  198. package/src/components/SvgIcon/icons/ReplyShapeSolid.tsx +18 -0
  199. package/src/components/SvgIcon/icons/Request.tsx +18 -0
  200. package/src/components/SvgIcon/icons/Right.tsx +18 -0
  201. package/src/components/SvgIcon/icons/Route.tsx +18 -0
  202. package/src/components/SvgIcon/icons/Ruble.tsx +18 -0
  203. package/src/components/SvgIcon/icons/Sbp.tsx +18 -0
  204. package/src/components/SvgIcon/icons/Search.tsx +18 -0
  205. package/src/components/SvgIcon/icons/Send.tsx +18 -0
  206. package/src/components/SvgIcon/icons/Services.tsx +18 -0
  207. package/src/components/SvgIcon/icons/Settings.tsx +18 -0
  208. package/src/components/SvgIcon/icons/Share.tsx +18 -0
  209. package/src/components/SvgIcon/icons/ShoppingCart.tsx +18 -0
  210. package/src/components/SvgIcon/icons/Sign.tsx +18 -0
  211. package/src/components/SvgIcon/icons/SlotMachine.tsx +18 -0
  212. package/src/components/SvgIcon/icons/SortDown.tsx +18 -0
  213. package/src/components/SvgIcon/icons/SortDownSolid.tsx +18 -0
  214. package/src/components/SvgIcon/icons/SortUp.tsx +18 -0
  215. package/src/components/SvgIcon/icons/SortUpSolid.tsx +18 -0
  216. package/src/components/SvgIcon/icons/Stop.tsx +18 -0
  217. package/src/components/SvgIcon/icons/Support.tsx +18 -0
  218. package/src/components/SvgIcon/icons/Sync.tsx +18 -0
  219. package/src/components/SvgIcon/icons/Table.tsx +18 -0
  220. package/src/components/SvgIcon/icons/Tariffs.tsx +18 -0
  221. package/src/components/SvgIcon/icons/Tg.tsx +18 -0
  222. package/src/components/SvgIcon/icons/TgCircle.tsx +18 -0
  223. package/src/components/SvgIcon/icons/Timeout.tsx +18 -0
  224. package/src/components/SvgIcon/icons/Timer.tsx +18 -0
  225. package/src/components/SvgIcon/icons/Trash.tsx +18 -0
  226. package/src/components/SvgIcon/icons/TurnOff.tsx +18 -0
  227. package/src/components/SvgIcon/icons/Twitter.tsx +18 -0
  228. package/src/components/SvgIcon/icons/TwitterCircle.tsx +18 -0
  229. package/src/components/SvgIcon/icons/Underline.tsx +18 -0
  230. package/src/components/SvgIcon/icons/Unlink.tsx +18 -0
  231. package/src/components/SvgIcon/icons/Unsorted.tsx +18 -0
  232. package/src/components/SvgIcon/icons/UnsortedSolid.tsx +18 -0
  233. package/src/components/SvgIcon/icons/Upload.tsx +18 -0
  234. package/src/components/SvgIcon/icons/User.tsx +18 -0
  235. package/src/components/SvgIcon/icons/UserAdd.tsx +18 -0
  236. package/src/components/SvgIcon/icons/UserCard.tsx +18 -0
  237. package/src/components/SvgIcon/icons/UserEdit.tsx +18 -0
  238. package/src/components/SvgIcon/icons/UserQueue.tsx +18 -0
  239. package/src/components/SvgIcon/icons/Viber.tsx +18 -0
  240. package/src/components/SvgIcon/icons/ViberCircle.tsx +18 -0
  241. package/src/components/SvgIcon/icons/ViewGrid.tsx +18 -0
  242. package/src/components/SvgIcon/icons/ViewHorizontal.tsx +18 -0
  243. package/src/components/SvgIcon/icons/ViewList.tsx +18 -0
  244. package/src/components/SvgIcon/icons/ViewRows.tsx +18 -0
  245. package/src/components/SvgIcon/icons/ViewVertical.tsx +18 -0
  246. package/src/components/SvgIcon/icons/Vk.tsx +18 -0
  247. package/src/components/SvgIcon/icons/VkCircle.tsx +18 -0
  248. package/src/components/SvgIcon/icons/Wallet.tsx +18 -0
  249. package/src/components/SvgIcon/icons/Warning.tsx +18 -0
  250. package/src/components/SvgIcon/icons/WarningClean.tsx +18 -0
  251. package/src/components/SvgIcon/icons/Whatsapp.tsx +18 -0
  252. package/src/components/SvgIcon/icons/WhatsappCircle.tsx +18 -0
  253. package/src/components/SvgIcon/icons/Wheelchair.tsx +18 -0
  254. package/src/components/SvgIcon/icons/index.ts +203 -0
  255. package/src/components/SvgIcon/index.ts +1 -0
  256. package/src/DatePicker/DatePicker.styl +0 -5
  257. package/src/DatePicker/index.tsx +0 -5
  258. package/src/DatePicker/test.ts +0 -0
  259. package/src/index.ts +0 -6
  260. package/src/stories/DatePicker/DatePicker.stories.tsx +0 -47
  261. package/src/stories/Input/Input.stories.tsx +0 -30
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUnsortedSolid = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="m16.71 12.71-6 6a.996.996 0 0 1-1.41 0l-6-6C2.66 12.08 3.11 11 4 11h12c.89 0 1.34 1.08.71 1.71m0-5.42-6-6a.996.996 0 0 0-1.41 0l-6 6c-.29.29-.38.72-.22 1.09.15.38.52.62.92.62h12c.4 0 .77-.24.92-.62.16-.37.07-.8-.21-1.09"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUnsortedSolid
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUpload = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M17 18H3c-1.1 0-2-.9-2-2v-4c0-.55.45-1 1-1s1 .45 1 1v4h14v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 1.1-.9 2-2 2M13.71 5.29l-3-3a.996.996 0 0 0-1.41 0l-3 3A.996.996 0 1 0 7.71 6.7L9 5.41V13c0 .55.45 1 1 1s1-.45 1-1V5.41l1.29 1.29c.39.39 1.02.39 1.41 0 .4-.38.4-1.02.01-1.41"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUpload
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUser = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M10 11c-2.52 0-4.5-2.42-4.5-5.5C5.5 2.39 7.76 1 10 1s4.5 1.39 4.5 4.5c0 3.08-1.98 5.5-4.5 5.5m0-8c-.93 0-2.5.32-2.5 2.5C7.5 7.18 8.46 9 10 9s2.5-1.82 2.5-3.5C12.5 3.32 10.93 3 10 3m8 14v-1.68c0-1.06-.57-2.06-1.49-2.59l-1.01-.59a1 1 0 0 0-1.37.36 1 1 0 0 0 .36 1.37l1.01.59a1 1 0 0 1 .5.86V17H4v-1.68c0-.35.19-.69.5-.86l1.01-.59c.48-.28.64-.89.36-1.37a1 1 0 0 0-1.37-.36l-1.01.59C2.57 13.27 2 14.26 2 15.32V17c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUser
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUserAdd = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M18 16c0 .55-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1M14.5 5.5C14.5 2.39 12.24 1 10 1S5.5 2.39 5.5 5.5C5.5 8.58 7.48 11 10 11s4.5-2.42 4.5-5.5m-2 0c0 1.68-.96 3.5-2.5 3.5S7.5 7.18 7.5 5.5C7.5 3.32 9.07 3 10 3s2.5.32 2.5 2.5M10 18c0-.55-.45-1-1-1H4v-1.68c0-.35.19-.69.5-.86l1.01-.59c.48-.28.64-.89.36-1.37a1 1 0 0 0-1.37-.36l-1.01.59C2.57 13.27 2 14.26 2 15.32V17c0 1.1.9 2 2 2h5c.55 0 1-.45 1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUserAdd
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUserCard = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M10 11c-2.52 0-4.5-2.42-4.5-5.5C5.5 2.39 7.76 1 10 1s4.5 1.39 4.5 4.5c0 3.08-1.98 5.5-4.5 5.5m0-8c-.93 0-2.5.32-2.5 2.5C7.5 7.18 8.46 9 10 9s2.5-1.82 2.5-3.5C12.5 3.32 10.93 3 10 3M8 18c0-.55-.45-1-1-1H4v-1.68c0-.35.19-.69.5-.86l1.01-.59c.48-.28.64-.89.36-1.37a1 1 0 0 0-1.37-.36l-1.01.59C2.57 13.27 2 14.26 2 15.32V17c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1m9 1h-6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1m-5-2h4v-2h-4z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUserCard
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUserEdit = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M13 19h-2c-.55 0-1-.45-1-1v-2c0-.27.11-.52.29-.71l4.79-4.79c.78-.78 2.05-.78 2.83 0l.59.59c.78.78.78 2.05 0 2.83l-4.79 4.79c-.19.18-.44.29-.71.29m-1-2h.59l4.5-4.5-.59-.59-4.5 4.5zm-2-6c-2.52 0-4.5-2.42-4.5-5.5C5.5 2.39 7.76 1 10 1s4.5 1.39 4.5 4.5c0 3.08-1.98 5.5-4.5 5.5m0-8c-.93 0-2.5.32-2.5 2.5C7.5 7.18 8.46 9 10 9s2.5-1.82 2.5-3.5C12.5 3.32 10.93 3 10 3M8 18c0-.55-.45-1-1-1H4v-1.68c0-.35.19-.69.5-.86l1.01-.59c.48-.28.64-.89.36-1.37a1 1 0 0 0-1.37-.36l-1.01.59C2.57 13.27 2 14.26 2 15.32V17c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUserEdit
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUserQueue = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M7 11c-2.24 0-4-2.17-4-4.94C3 3.25 5.01 2 7 2s4 1.26 4 4.06C11 8.83 9.24 11 7 11m0-7c-.75 0-2 .27-2 2.06C5 7.47 5.76 9 7 9s2-1.52 2-2.94C9 4.27 7.75 4 7 4m6 13v-1.68c0-1.06-.57-2.06-1.49-2.59l-1.01-.59a1 1 0 0 0-1.37.36 1 1 0 0 0 .36 1.37l1.01.59a1 1 0 0 1 .5.86V17H3v-1.68c0-.35.19-.69.5-.86l1.01-.59c.48-.28.64-.89.36-1.37a1 1 0 0 0-1.37-.36l-1.01.59C1.57 13.27 1 14.26 1 15.32V17c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2m4-10.94C17 3.25 14.99 2 13 2c-.55 0-1 .45-1 1s.45 1 1 1c.75 0 2 .27 2 2.06C15 7.47 14.24 9 13 9c-.55 0-1 .45-1 1s.45 1 1 1c2.24 0 4-2.17 4-4.94M19 17v-1.68c0-1.06-.57-2.06-1.49-2.59l-1.01-.59a1 1 0 0 0-1.37.36 1 1 0 0 0 .36 1.37l1.01.59a1 1 0 0 1 .5.86V17h-.94c-.55 0-1 .45-1 1s.45 1 1 1H17c1.1 0 2-.9 2-2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUserQueue
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViber = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-1.11 9.29c-.32 2.42-2.31 2.95-4.93 2.94h-.21s-.23.24-.7.64c-.42.36-1.02.73-1.37.6-.27-.1-.26-.38-.26-.49v-1.01s-2.04-.65-2.31-2.69c-.33-2.51.13-4.1 1.01-4.81.26-.22 1.51-.97 3.88-.97s3.62.75 3.88.97c.87.71 1.35 2.3 1.01 4.82m-2.45.48c-.09.17-.22.32-.39.46-.1.09-.36.32-.74.25-2.16-.42-3.26-1.63-3.79-3.89-.06-.28.02-.43.23-.65.14-.15.3-.28.47-.39.18-.09.34-.06.46.08l.63.88c.12.21.04.43-.06.52l-.19.14c-.06.05-.15.1-.14.2.15.89.8 1.47 1.61 1.72.11.03.18 0 .26-.1.05-.06.18-.23.18-.23.09-.12.32-.2.52-.08l.88.63c.16.13.16.28.07.46"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViber
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViberCircle = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M10 1a9 9 0 1 0 .001 18.001A9 9 0 0 0 10 1m4.89 10.29c-.32 2.42-2.31 2.95-4.93 2.94h-.21s-.23.24-.7.64c-.42.36-1.02.73-1.37.6-.27-.1-.26-.38-.26-.49v-1.01s-2.04-.65-2.31-2.69c-.33-2.51.13-4.1 1.01-4.81.26-.22 1.51-.97 3.88-.97s3.62.75 3.88.97c.87.71 1.35 2.3 1.01 4.82m-2.45.48c-.09.17-.22.32-.39.46-.1.09-.36.32-.74.25-2.16-.42-3.26-1.63-3.79-3.89-.06-.28.02-.43.23-.65.14-.15.3-.28.47-.39.18-.09.34-.06.46.08l.63.88c.12.21.04.43-.06.52l-.19.14c-.06.05-.15.1-.14.2.15.89.8 1.47 1.61 1.72.11.03.18 0 .26-.1.05-.06.18-.23.18-.23.09-.12.32-.2.52-.08l.88.63c.16.13.16.28.07.46"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViberCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViewGrid = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 7h-5V4h5zM9 4v5H4V4zm-5 7h5v5H4zm7 5v-5h5v5z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViewGrid
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViewHorizontal = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M17 5H3a1 1 0 1 1 0-2h14a1 1 0 1 1 0 2m1 5a1 1 0 0 0-1-1H3a1 1 0 1 0 0 2h14a1 1 0 0 0 1-1m0 6a1 1 0 0 0-1-1H3a1 1 0 1 0 0 2h14a1 1 0 0 0 1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViewHorizontal
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViewList = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M17 5H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1m1 5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1m0 6c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1M4.02 16c0-.55-.45-1-1-1h-.01c-.55 0-1 .45-1 1s.45 1 1 1c.56 0 1.01-.45 1.01-1m0-6c0-.55-.45-1-1-1h-.01c-.55 0-1 .45-1 1s.45 1 1 1c.56 0 1.01-.45 1.01-1m0-6c0-.55-.45-1-1-1h-.01c-.55 0-1 .45-1 1s.45 1 1 1c.56 0 1.01-.45 1.01-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViewList
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViewRows = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 2v5H4V4zM4 16v-5h12v5z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViewRows
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgViewVertical = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M4 18a1 1 0 0 1-1-1V3a1 1 0 1 1 2 0v14a1 1 0 0 1-1 1m7-1V3a1 1 0 1 0-2 0v14a1 1 0 1 0 2 0m6 0V3a1 1 0 1 0-2 0v14a1 1 0 1 0 2 0"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgViewVertical
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgVk = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-1.29 11.42h-1.17c-.68 0-1.56-1.9-2.45-1.9-.23 0-.31.07-.31.4v1.05c0 .29-.09.45-.83.45-3.35 0-5.51-5.28-5.51-6.09 0-.17.07-.33.4-.33h1.17c.3 0 .41.13.52.45.57 1.66 1.64 3.2 2.04 3.2.15 0 .22-.07.22-.45 0-.45.01-1.35 0-1.8-.03-.79-.47-.85-.47-1.13 0-.13.11-.27.3-.27h1.83c.25 0 .33.13.33.43v2.39c0 .25.11.33.18.33.72 0 1.88-2.72 1.94-2.83.1-.16.22-.32.51-.32h1.17c.35 0 .43.18.35.43-.15.68-1.17 2.1-1.61 2.77-.13.19-.17.29 0 .52.09.12 1.57 1.51 1.79 2.21.1.32-.07.49-.4.49"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgVk
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgVkCircle = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M10 1a9 9 0 1 0 .001 18.001A9 9 0 0 0 10 1m4.71 12.42h-1.17c-.68 0-1.56-1.9-2.45-1.9-.23 0-.31.07-.31.4v1.05c0 .29-.09.45-.83.45-3.35 0-5.51-5.28-5.51-6.09 0-.17.07-.33.4-.33h1.17c.3 0 .41.13.52.45.57 1.66 1.64 3.2 2.04 3.2.15 0 .22-.07.22-.45 0-.45.01-1.35 0-1.8-.03-.79-.47-.85-.47-1.13 0-.13.11-.27.3-.27h1.83c.25 0 .33.13.33.43v2.39c0 .25.11.33.18.33.72 0 1.88-2.72 1.94-2.83.1-.16.22-.32.51-.32h1.17c.35 0 .43.18.35.43-.15.68-1.17 2.1-1.61 2.77-.13.19-.17.29 0 .52.09.12 1.57 1.51 1.79 2.21.1.32-.07.49-.4.49"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgVkCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgWallet = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M13 10.8c.66 0 1.2.54 1.2 1.2s-.54 1.2-1.2 1.2-1.2-.54-1.2-1.2.54-1.2 1.2-1.2M19 8v8c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v2c1.1 0 2 .9 2 2M3 4v2h12V4zm14 4H3v8h14z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgWallet
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgWarning = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M18.62 13.53 12.6 2.55C12.07 1.58 11.1 1 10 1s-2.07.58-2.6 1.55L1.38 13.53c-.52.95-.5 2.08.05 3.01.54.92 1.5 1.46 2.55 1.46h12.04c1.06 0 2.01-.55 2.55-1.46.56-.93.58-2.06.05-3.01M9 6.96c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1zm1 8.2c-.66 0-1.2-.54-1.2-1.2s.54-1.2 1.2-1.2 1.2.54 1.2 1.2-.54 1.2-1.2 1.2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgWarning
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgWarningClean = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M10.003 10.95c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1m8.574 5.58c.55-.93.57-2.06.05-3.01L12.604 2.55c-.53-.97-1.5-1.55-2.6-1.55s-2.071.58-2.602 1.55L1.38 13.53c-.52.95-.5 2.08.05 3.01.54.92 1.5 1.46 2.551 1.46h12.045c1.06 0 2.01-.55 2.55-1.47M10.854 3.51l6.022 10.98c.18.33.17.71-.02 1.03-.09.14-.34.48-.83.48H3.98a.96.96 0 0 1-.83-.48c-.19-.32-.2-.71-.02-1.03L9.153 3.51c.25-.46.68-.51.85-.51s.59.05.85.51m-.85 11.64c.66 0 1.2-.54 1.2-1.2s-.54-1.2-1.2-1.2-1.201.54-1.201 1.2.54 1.2 1.2 1.2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgWarningClean
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgWhatsapp = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-6 13c-.97 0-1.87-.29-2.64-.77L5 15l.86-2.2C5.32 12 5 11.04 5 10c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5m2.44-3.23c-.09.17-.22.32-.39.46-.1.09-.36.32-.74.25-2.16-.42-3.26-1.63-3.79-3.89-.06-.28.02-.43.23-.65.14-.15.3-.28.47-.39.18-.09.34-.06.46.08l.63.88c.12.21.04.43-.06.52l-.19.14c-.06.05-.15.1-.14.2.15.89.8 1.47 1.61 1.72.11.03.18 0 .26-.1.05-.06.18-.23.18-.23.09-.12.32-.2.52-.08l.88.63c.16.13.16.28.07.46"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgWhatsapp
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgWhatsappCircle = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M10 1a9 9 0 1 0 .001 18.001A9 9 0 0 0 10 1m0 14c-.97 0-1.87-.29-2.64-.77L5 15l.86-2.2C5.32 12 5 11.04 5 10c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5m2.44-3.23c-.09.17-.22.32-.39.46-.1.09-.36.32-.74.25-2.16-.42-3.26-1.63-3.79-3.89-.06-.28.02-.43.23-.65.14-.15.3-.28.47-.39.18-.09.34-.06.46.08l.63.88c.12.21.04.43-.06.52l-.19.14c-.06.05-.15.1-.14.2.15.89.8 1.47 1.61 1.72.11.03.18 0 .26-.1.05-.06.18-.23.18-.23.09-.12.32-.2.52-.08l.88.63c.16.13.16.28.07.46"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgWhatsappCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgWheelchair = (props: SVGProps<SVGSVGElement>) => (
5
+ <SvgIcon
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ viewBox="0 0 20 20"
10
+ {...props}
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M6.267 2.588c0-.879.715-1.588 1.6-1.588s1.6.71 1.6 1.588c0 .88-.715 1.588-1.6 1.588s-1.6-.709-1.6-1.588m11.66 13.903-2.134-5.294a1.07 1.07 0 0 0-.992-.668h-4.46l-.426-2.117h3.82c.586 0 1.066-.477 1.066-1.06 0-.581-.48-1.058-1.067-1.058H9.49l-.043-.212a1.063 1.063 0 0 0-1.259-.826c-.576.117-.95.668-.832 1.25L8.422 11.8c.096.487.533.847 1.045.847h4.608l1.867 4.627c.224.55.854.805 1.387.593.544-.222.81-.836.598-1.376m-6.049-.614a4.76 4.76 0 0 1-2.944 1.005c-2.646 0-4.8-2.139-4.8-4.764 0-1.27.5-2.467 1.408-3.367a1.05 1.05 0 0 0 0-1.493 1.07 1.07 0 0 0-1.505 0A6.77 6.77 0 0 0 2 12.118C2 15.908 5.115 19 8.934 19a6.87 6.87 0 0 0 4.256-1.45c.47-.36.544-1.028.181-1.483a1.06 1.06 0 0 0-1.493-.19"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgWheelchair
@@ -0,0 +1,203 @@
1
+ export { default as AddList } from './AddList'
2
+ export { default as AlertCircleSolid } from './AlertCircleSolid'
3
+ export { default as AlertCircle } from './AlertCircle'
4
+ export { default as AlertDiamondSolid } from './AlertDiamondSolid'
5
+ export { default as AlertDiamond } from './AlertDiamond'
6
+ export { default as AlertShield } from './AlertShield'
7
+ export { default as Android } from './Android'
8
+ export { default as Apple } from './Apple'
9
+ export { default as Archive } from './Archive'
10
+ export { default as ArrowCircle } from './ArrowCircle'
11
+ export { default as ArrowDown } from './ArrowDown'
12
+ export { default as ArrowLeft } from './ArrowLeft'
13
+ export { default as ArrowRight } from './ArrowRight'
14
+ export { default as ArrowUpCorner } from './ArrowUpCorner'
15
+ export { default as ArrowUp } from './ArrowUp'
16
+ export { default as ArrowsChange } from './ArrowsChange'
17
+ export { default as Atm } from './Atm'
18
+ export { default as Attach } from './Attach'
19
+ export { default as Bank } from './Bank'
20
+ export { default as Bold } from './Bold'
21
+ export { default as Bonus } from './Bonus'
22
+ export { default as Building } from './Building'
23
+ export { default as CalendarCancel } from './CalendarCancel'
24
+ export { default as Calendar } from './Calendar'
25
+ export { default as CallEnd } from './CallEnd'
26
+ export { default as CallMissed } from './CallMissed'
27
+ export { default as Call } from './Call'
28
+ export { default as Callback } from './Callback'
29
+ export { default as Camera } from './Camera'
30
+ export { default as CancelSolid } from './CancelSolid'
31
+ export { default as Cancel } from './Cancel'
32
+ export { default as CardLock } from './CardLock'
33
+ export { default as CardRefill } from './CardRefill'
34
+ export { default as CardReissue } from './CardReissue'
35
+ export { default as CardScan } from './CardScan'
36
+ export { default as CardToCard } from './CardToCard'
37
+ export { default as CardUnlock } from './CardUnlock'
38
+ export { default as Card } from './Card'
39
+ export { default as Change } from './Change'
40
+ export { default as Chart } from './Chart'
41
+ export { default as ChatSolid } from './ChatSolid'
42
+ export { default as Chat } from './Chat'
43
+ export { default as CheckCircleSolid } from './CheckCircleSolid'
44
+ export { default as CheckCircle } from './CheckCircle'
45
+ export { default as CheckShield } from './CheckShield'
46
+ export { default as CheckSmall } from './CheckSmall'
47
+ export { default as Check } from './Check'
48
+ export { default as Checklist } from './Checklist'
49
+ export { default as Circle } from './Circle'
50
+ export { default as Clock } from './Clock'
51
+ export { default as Close } from './Close'
52
+ export { default as Coins } from './Coins'
53
+ export { default as Collapse } from './Collapse'
54
+ export { default as Copy } from './Copy'
55
+ export { default as Cup } from './Cup'
56
+ export { default as CurrencyChange } from './CurrencyChange'
57
+ export { default as CurrencyTransfer } from './CurrencyTransfer'
58
+ export { default as Deposit } from './Deposit'
59
+ export { default as Diamond } from './Diamond'
60
+ export { default as DislikeSolid } from './DislikeSolid'
61
+ export { default as Dislike } from './Dislike'
62
+ export { default as DocCancel } from './DocCancel'
63
+ export { default as Doc } from './Doc'
64
+ export { default as Dollar } from './Dollar'
65
+ export { default as DoubleArrow } from './DoubleArrow'
66
+ export { default as DoubleTick } from './DoubleTick'
67
+ export { default as Download } from './Download'
68
+ export { default as DropdownSmallOld } from './DropdownSmallOld'
69
+ export { default as Dropdown } from './Dropdown'
70
+ export { default as Dropup } from './Dropup'
71
+ export { default as Edit } from './Edit'
72
+ export { default as Email } from './Email'
73
+ export { default as Excel } from './Excel'
74
+ export { default as Expand } from './Expand'
75
+ export { default as EyeOff } from './EyeOff'
76
+ export { default as Eye } from './Eye'
77
+ export { default as FavoriteSolid } from './FavoriteSolid'
78
+ export { default as Favorite } from './Favorite'
79
+ export { default as FbCircle } from './FbCircle'
80
+ export { default as Fb } from './Fb'
81
+ export { default as FileAdd } from './FileAdd'
82
+ export { default as File } from './File'
83
+ export { default as Files } from './Files'
84
+ export { default as Filter } from './Filter'
85
+ export { default as Folder } from './Folder'
86
+ export { default as Geolocation } from './Geolocation'
87
+ export { default as Gift } from './Gift'
88
+ export { default as Globe } from './Globe'
89
+ export { default as HeartSolid } from './HeartSolid'
90
+ export { default as Heart } from './Heart'
91
+ export { default as Help } from './Help'
92
+ export { default as Home } from './Home'
93
+ export { default as Housing } from './Housing'
94
+ export { default as IgCircle } from './IgCircle'
95
+ export { default as Ig } from './Ig'
96
+ export { default as InfoBook } from './InfoBook'
97
+ export { default as InfoSolid } from './InfoSolid'
98
+ export { default as Info } from './Info'
99
+ export { default as Italic } from './Italic'
100
+ export { default as Key } from './Key'
101
+ export { default as Left } from './Left'
102
+ export { default as Lightbulb } from './Lightbulb'
103
+ export { default as LikeSolid } from './LikeSolid'
104
+ export { default as Like } from './Like'
105
+ export { default as Link } from './Link'
106
+ export { default as Lock } from './Lock'
107
+ export { default as Logout } from './Logout'
108
+ export { default as MagicWand } from './MagicWand'
109
+ export { default as MailSend } from './MailSend'
110
+ export { default as Mail } from './Mail'
111
+ export { default as MapPin } from './MapPin'
112
+ export { default as Map } from './Map'
113
+ export { default as Menu } from './Menu'
114
+ export { default as MicOff } from './MicOff'
115
+ export { default as Mic } from './Mic'
116
+ export { default as MinusCircle } from './MinusCircle'
117
+ export { default as MinusShort } from './MinusShort'
118
+ export { default as Minus } from './Minus'
119
+ export { default as Moneybox } from './Moneybox'
120
+ export { default as More } from './More'
121
+ export { default as Move } from './Move'
122
+ export { default as Newbie } from './Newbie'
123
+ export { default as News } from './News'
124
+ export { default as Notes } from './Notes'
125
+ export { default as Notification } from './Notification'
126
+ export { default as OkCircle } from './OkCircle'
127
+ export { default as Ok } from './Ok'
128
+ export { default as OrderLoad } from './OrderLoad'
129
+ export { default as OrderSend } from './OrderSend'
130
+ export { default as Order } from './Order'
131
+ export { default as PauseCircle } from './PauseCircle'
132
+ export { default as Pause } from './Pause'
133
+ export { default as Payment } from './Payment'
134
+ export { default as PhoneShake } from './PhoneShake'
135
+ export { default as PlaySolid } from './PlaySolid'
136
+ export { default as Play } from './Play'
137
+ export { default as PlusCircle } from './PlusCircle'
138
+ export { default as Plus } from './Plus'
139
+ export { default as Pos } from './Pos'
140
+ export { default as Print } from './Print'
141
+ export { default as QrPay } from './QrPay'
142
+ export { default as Redirect } from './Redirect'
143
+ export { default as Refill } from './Refill'
144
+ export { default as Refund } from './Refund'
145
+ export { default as Reload } from './Reload'
146
+ export { default as ReplyShapeSolid } from './ReplyShapeSolid'
147
+ export { default as ReplyShape } from './ReplyShape'
148
+ export { default as Reply } from './Reply'
149
+ export { default as Request } from './Request'
150
+ export { default as Right } from './Right'
151
+ export { default as Route } from './Route'
152
+ export { default as Ruble } from './Ruble'
153
+ export { default as Sbp } from './Sbp'
154
+ export { default as Search } from './Search'
155
+ export { default as Send } from './Send'
156
+ export { default as Services } from './Services'
157
+ export { default as Settings } from './Settings'
158
+ export { default as Share } from './Share'
159
+ export { default as ShoppingCart } from './ShoppingCart'
160
+ export { default as Sign } from './Sign'
161
+ export { default as SlotMachine } from './SlotMachine'
162
+ export { default as SortDownSolid } from './SortDownSolid'
163
+ export { default as SortDown } from './SortDown'
164
+ export { default as SortUpSolid } from './SortUpSolid'
165
+ export { default as SortUp } from './SortUp'
166
+ export { default as Stop } from './Stop'
167
+ export { default as Support } from './Support'
168
+ export { default as Sync } from './Sync'
169
+ export { default as Table } from './Table'
170
+ export { default as Tariffs } from './Tariffs'
171
+ export { default as TgCircle } from './TgCircle'
172
+ export { default as Tg } from './Tg'
173
+ export { default as Timeout } from './Timeout'
174
+ export { default as Timer } from './Timer'
175
+ export { default as Trash } from './Trash'
176
+ export { default as TurnOff } from './TurnOff'
177
+ export { default as TwitterCircle } from './TwitterCircle'
178
+ export { default as Twitter } from './Twitter'
179
+ export { default as Underline } from './Underline'
180
+ export { default as Unlink } from './Unlink'
181
+ export { default as UnsortedSolid } from './UnsortedSolid'
182
+ export { default as Unsorted } from './Unsorted'
183
+ export { default as Upload } from './Upload'
184
+ export { default as UserAdd } from './UserAdd'
185
+ export { default as UserCard } from './UserCard'
186
+ export { default as UserEdit } from './UserEdit'
187
+ export { default as UserQueue } from './UserQueue'
188
+ export { default as User } from './User'
189
+ export { default as ViberCircle } from './ViberCircle'
190
+ export { default as Viber } from './Viber'
191
+ export { default as ViewGrid } from './ViewGrid'
192
+ export { default as ViewHorizontal } from './ViewHorizontal'
193
+ export { default as ViewList } from './ViewList'
194
+ export { default as ViewRows } from './ViewRows'
195
+ export { default as ViewVertical } from './ViewVertical'
196
+ export { default as VkCircle } from './VkCircle'
197
+ export { default as Vk } from './Vk'
198
+ export { default as Wallet } from './Wallet'
199
+ export { default as WarningClean } from './WarningClean'
200
+ export { default as Warning } from './Warning'
201
+ export { default as WhatsappCircle } from './WhatsappCircle'
202
+ export { default as Whatsapp } from './Whatsapp'
203
+ export { default as Wheelchair } from './Wheelchair'
@@ -0,0 +1 @@
1
+ export * as default from './icons'
@@ -1,5 +0,0 @@
1
- .react-datepicker-wrapper
2
- background red
3
- padding 30px
4
- &::before
5
- content 'ТИМУР НЕ БЕЙ, Я ТЕСТИЛ'
@@ -1,5 +0,0 @@
1
- import DatePicker from 'react-datepicker'
2
- import 'react-datepicker/dist/react-datepicker.css'
3
- import './DatePicker.styl'
4
-
5
- export { DatePicker }