@modul/mbui 0.0.1 → 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 (258) hide show
  1. package/package.json +38 -3
  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/index.tsx +0 -4
  257. package/src/DatePicker/test.ts +0 -0
  258. package/src/index.ts +0 -6
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgMinus = (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 11H2c-.55 0-1-.45-1-1s.45-1 1-1h16c.55 0 1 .45 1 1s-.45 1-1 1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgMinus
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgMinusCircle = (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 19c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9m0-16c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7m4 7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgMinusCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgMinusShort = (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 11H4c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgMinusShort
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgMoneybox = (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 9h-.38L17 7.76V6c0-.7-.7-1.16-1.32-.95L12.84 6h-.97c.08-.32.13-.66.13-1 0-2.21-1.79-4-4-4S4 2.79 4 5c0 .74.22 1.45.6 2.06-.57.4-1.07.89-1.47 1.45l-.62-.37c-.48-.28-1.09-.12-1.37.35-.28.48-.12 1.09.35 1.37l.76.45C2.09 10.85 2 11.41 2 12c0 .73.03.52.72 5.15.07.49.49.85.98.85H6c.38 0 .73-.21.89-.55L7.62 16h2.76l.72 1.45c.17.34.52.55.9.55h2c.38 0 .73-.21.89-.55l.88-1.76 2.78-1.85c.28-.19.45-.51.45-.84v-3c0-.55-.45-1-1-1M6 5c0-1.1.9-2 2-2s2 .9 2 2c0 .36-.11.7-.28 1H8c-.55 0-1.08.08-1.58.22C6.15 5.87 6 5.45 6 5m11 7.46-2.55 1.7c-.15.1-.26.23-.34.38L13.38 16h-.76l-.72-1.45c-.17-.34-.52-.55-.9-.55H7c-.38 0-.73.21-.89.55L5.38 16h-.82C3.98 12.07 4 12.47 4 12c0-2.21 1.79-4 4-4h5c.11 0 .21-.02.32-.05L15 7.39V8c0 .16.04.31.11.45l1 2c.16.34.51.55.89.55z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgMoneybox
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgMore = (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="M5 10c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m7 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m7 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgMore
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgMove = (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.998 10c0 .55-.45 1-1 1H4.42l.29.29c.39.39.39 1.03 0 1.42-.4.38-1.01.39-1.42 0l-1.999-2c-.39-.39-.39-1.03 0-1.42l2-2c.39-.39 1.03-.39 1.419 0 .39.39.39 1.03 0 1.42l-.29.29H7c.55 0 1 .45 1 1m10.707-.71-2-2c-.39-.39-1.029-.39-1.419 0s-.39 1.03 0 1.42l.29.29h-2.58c-.55 0-.999.45-.999 1s.45 1 1 1h2.579l-.29.29c-.39.39-.39 1.03 0 1.42.4.38 1.01.39 1.42 0l2-2c.389-.39.389-1.03 0-1.42m-5.998-6-2-2c-.39-.39-1.03-.39-1.42 0l-1.999 2c-.39.39-.39 1.03 0 1.42s1.03.39 1.42 0l.29-.29V7c0 .55.45 1 1 1s1-.45 1-1V4.42l.29.29c.4.38 1.009.39 1.419 0 .39-.39.39-1.03 0-1.42m0 12c-.39-.39-1.03-.39-1.42 0l-.29.29V13c0-.55-.45-1-1-1s-1 .45-1 1v2.58l-.29-.29c-.389-.39-1.029-.39-1.419 0s-.39 1.03 0 1.42l2 2c.2.19.45.29.71.29s.51-.1.71-.29l1.999-2c.39-.39.39-1.03 0-1.42"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgMove
@@ -0,0 +1,20 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgNewbie = (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
+ fillRule="evenodd"
15
+ d="M6.684 5.051a1 1 0 0 1 1.116.35L12 11V6a1 1 0 1 1 2 0v8a1 1 0 0 1-1.8.6L8 9v5a1 1 0 1 1-2 0V6a1 1 0 0 1 .684-.95"
16
+ clipRule="evenodd"
17
+ />
18
+ </SvgIcon>
19
+ )
20
+ export default SvgNewbie
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgNews = (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 7h-3V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v11c0 1.65 1.35 3 3 3h12c1.65 0 3-1.35 3-3V8c0-.55-.45-1-1-1M3 15V4h10v11c0 .35.07.69.18 1H4c-.55 0-1-.45-1-1m14 0c0 .55-.45 1-1 1s-1-.45-1-1V9h2zm-8-3c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1m2-4c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgNews
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgNotes = (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 1H4c-1.1 0-2 .9-2 2v2c-.55 0-1 .45-1 1s.45 1 1 1v2c-.55 0-1 .45-1 1s.45 1 1 1v2c-.55 0-1 .45-1 1s.45 1 1 1v2c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2m-2 6h2v2h-2zm2-2h-2V3h2zM4 15h1c.55 0 1-.45 1-1s-.45-1-1-1H4v-2h1c.55 0 1-.45 1-1s-.45-1-1-1H4V7h1c.55 0 1-.45 1-1s-.45-1-1-1H4V3h8v14H4zm10 2v-6h2v6z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgNotes
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgNotification = (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 19c-1.09 0-2.14-.52-2.8-1.4-.33-.44-.24-1.07.2-1.4s1.07-.24 1.4.2c.57.76 1.83.76 2.4 0 .33-.44.96-.53 1.4-.2s.53.96.2 1.4c-.66.88-1.71 1.4-2.8 1.4m8-6v-1.59c0-.53-.21-1.04-.59-1.41l-1.12-1.12a1 1 0 0 1-.29-.71V7c0-3.31-2.69-6-6-6S4 3.69 4 7v1.17c0 .27-.1.52-.29.71L2.59 10c-.38.38-.59.88-.59 1.41V13c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2m-4-6v1.17c0 .8.31 1.56.88 2.12L16 11.41V13H4v-1.59l1.12-1.12c.57-.57.88-1.32.88-2.12V7c0-2.21 1.79-4 4-4s4 1.79 4 4"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgNotification
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgOk = (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="M9 7.4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M18 4v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2M7.4 7.4C7.4 8.83 8.57 10 10 10s2.6-1.17 2.6-2.6-1.17-2.6-2.6-2.6-2.6 1.17-2.6 2.6m5.55 3.71c-.2-.4-.68-.55-1.07-.36-1.17.59-2.58.59-3.75 0a.795.795 0 0 0-1.07.35c-.2.39-.04.88.35 1.08.35.17.71.3 1.08.41l-1.04 1.04c-.31.31-.31.82 0 1.13s.82.31 1.13 0L10 13.33l1.43 1.43c.31.31.82.31 1.13 0s.31-.82 0-1.13l-1.04-1.04c.37-.1.73-.23 1.08-.4.39-.2.55-.68.35-1.08"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgOk
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgOkCircle = (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 3.8c1.43 0 2.6 1.17 2.6 2.6S11.43 10 10 10 7.4 8.83 7.4 7.4 8.57 4.8 10 4.8m2.6 7.39c-.35.17-.71.3-1.08.4l1.04 1.04c.31.31.31.82 0 1.13-.15.16-.36.24-.56.24s-.41-.08-.57-.23L10 13.33l-1.43 1.43c-.16.16-.37.24-.57.24s-.41-.08-.57-.23a.803.803 0 0 1 0-1.13l1.04-1.04c-.37-.1-.73-.23-1.08-.41a.806.806 0 0 1-.35-1.08c.2-.39.68-.55 1.07-.35 1.17.59 2.58.59 3.75 0a.79.79 0 0 1 1.07.36c.22.39.06.87-.33 1.07M9 7.4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgOkCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgOrder = (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="M15 19H4c-1.65 0-3-1.35-3-3v-2c0-.55.45-1 1-1h1V3c0-1.1.9-2 2-2h11c1.1 0 2 .9 2 2v13c0 1.65-1.34 3-3 3m0-2c.55 0 1-.45 1-1V3H5v10h8c.55 0 1 .45 1 1v2c0 .55.45 1 1 1M3 15v1c0 .55.45 1 1 1h8.17a3 3 0 0 1-.17-1v-1zm11-9c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1M9.2 6c0-.66-.54-1.2-1.2-1.2S6.8 5.34 6.8 6 7.34 7.2 8 7.2 9.2 6.66 9.2 6m4.8 4c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1m-4.8 0c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2.54 1.2 1.2 1.2 1.2-.54 1.2-1.2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgOrder
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgOrderLoad = (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 17v-1.76c0-.31-.07-.62-.21-.89L17.12 13l.78-1.55c.07-.14.11-.29.11-.45v-1c.55 0 1-.45 1-1s-.45-1-1-1h-7c-.55 0-1 .45-1 1s.45 1 1 1v.76c0 .31.07.62.21.89l.67 1.34-.67 1.34c-.14.28-.21.59-.21.89V17c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.46-1-1.01-1m-5-1.76.89-1.79c.14-.28.14-.61 0-.89l-.89-1.8V10h3v.76l-.89 1.79c-.14.28-.14.61 0 .89l.89 1.79V17h-3zM3 12v1c0 .55.45 1 1 1h4c.55 0 1 .45 1 1s-.45 1-1 1H4c-1.65 0-3-1.35-3-3v-2c0-.55.45-1 1-1h1V2c0-.55.45-1 1-1h11c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1V3H5v7h3c.55 0 1 .45 1 1s-.45 1-1 1zm4-7.2c.66 0 1.2.54 1.2 1.2S7.66 7.2 7 7.2 5.8 6.66 5.8 6 6.34 4.8 7 4.8M10 7c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgOrderLoad
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgOrderSend = (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.988 3v7c0 .55-.45 1-1 1s-.999-.45-.999-1V3H4.997v10h3.997c.55 0 1 .45 1 1s-.45 1-1 1H3v1c0 .55.45 1 .999 1h4.996c.55 0 1 .45 1 1s-.45 1-1 1H3.998A3.01 3.01 0 0 1 1 16v-2c0-.55.45-1 1-1h.999V3c0-1.1.899-2 1.998-2H15.99c1.1 0 1.999.9 1.999 2m-5.996 4h1c.549 0 .998-.45.998-1s-.45-1-.999-1h-1c-.549 0-.998.45-.998 1s.45 1 .999 1M7.995 4.8c-.66 0-1.2.54-1.2 1.2s.54 1.2 1.2 1.2S9.194 6.66 9.194 6s-.54-1.2-1.2-1.2m3.997 6.2h1c.549 0 .998-.45.998-1s-.45-1-.999-1h-1c-.549 0-.998.45-.998 1s.45 1 .999 1M7.995 8.8c-.66 0-1.2.54-1.2 1.2s.54 1.2 1.2 1.2 1.199-.54 1.199-1.2-.54-1.2-1.2-1.2m7.704 4.49a.996.996 0 1 0-1.409 1.41l.29.29h-2.588c-.55 0-1 .45-1 1s.45 1 1 1h2.588l-.29.29a.996.996 0 0 0 .71 1.7c.26 0 .51-.1.71-.29l1.998-2a.996.996 0 0 0 0-1.41z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgOrderSend
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPause = (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 2v16c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h2c.55 0 1 .45 1 1M7 1H5c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPause
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPauseCircle = (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 19c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9m0-16c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7M9 13V7c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1m4 0V7c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPauseCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPayment = (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 3H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h7c.55 0 1-.45 1-1s-.45-1-1-1H3V9h14c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2M3 7V5h14v2zm15.71 7.71-2 2c-.4.38-1.01.39-1.42 0-.39-.39-.39-1.03 0-1.42l.29-.29H13c-.55 0-1-.45-1-1s.45-1 1-1h2.58l-.29-.29c-.39-.39-.39-1.03 0-1.42s1.03-.39 1.42 0l2 2c.39.39.39 1.03 0 1.42"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPayment
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPhoneShake = (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="M9.98 15.11c-.19 0-.16-.02-2.12-.45a.996.996 0 0 1-.76-1.19c.12-.54.65-.88 1.19-.76l1.91.42c.54.12.88.65.76 1.19-.11.47-.52.79-.98.79m7-10.9-3 13.99v.02c-.12.53-.66.88-1.2.76l-8.99-2h-.01a.996.996 0 0 1-.76-1.19l.01-.04L6.02 1.79c.12-.54.65-.88 1.19-.77h.01l8.99 2h.01c.53.13.87.65.76 1.19m-2.17.55L7.77 3.2 5.19 15.24l7.04 1.56zm3.17 9.44 1-5c.11-.54-.24-1.07-.78-1.18s-1.07.24-1.18.78l-1 5c-.11.54.24 1.07.78 1.18.55.11 1.07-.25 1.18-.78m-15-3 1-5c.11-.54-.24-1.07-.78-1.18s-1.07.24-1.18.78l-1 5c-.11.54.24 1.07.78 1.18.55.11 1.07-.25 1.18-.78"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPhoneShake
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPlay = (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.54 17.89A1 1 0 0 1 4 17V3c0-.37.21-.71.54-.89a1 1 0 0 1 1.039.07l9.991 7a.997.997 0 0 1 0 1.64l-9.991 7c-.31.21-.7.24-1.04.07M5.998 4.92v10.16L13.252 10z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPlay
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPlaySolid = (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="m15.57 9.18-9.991-7c-.3-.21-.7-.24-1.04-.07C4.21 2.28 4 2.62 4 3v14c0 .37.21.71.54.89.34.17.729.14 1.039-.07l9.991-7a.997.997 0 0 0 0-1.64"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPlaySolid
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPlus = (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 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPlus
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPlusCircle = (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 19c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9m0-16c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7m3 6h-2V7c0-.55-.45-1-1-1s-1 .45-1 1v2H7c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPlusCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPos = (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="M19 7.007c0-.16-.04-.31-.11-.45L17.17 3.11A2 2 0 0 0 15.38 2H4.62c-.76 0-1.45.42-1.79 1.11L1.11 6.556c-.07.14-.11.29-.11.45 0 .88.39 1.669 1 2.218v6.776C2 17.101 2.9 18 4 18h4c.55 0 1-.45 1-1v-2.998h2v2.999c0 .55.45.999 1 .999h4c1.1 0 2-.9 2-1.999V9.225c.61-.55 1-1.339 1-2.218M4.62 4.009h10.76l1.6 3.198c-.09.46-.5.8-.98.8-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1-1-.45-1-1-.45-1-1-1-1 .45-1 1-.45 1-1 1-1-.45-1-1-.45-1-1-1-1 .45-1 1-.45 1-1 1c-.48 0-.89-.35-.98-.8zM16 16h-3v-2.998c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v2.998H4v-5.996c.77 0 1.47-.3 2-.78a2.966 2.966 0 0 0 4 .01 2.966 2.966 0 0 0 4-.01c.53.48 1.23.78 2 .78z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPos
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgPrint = (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 7h-1V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3H3c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h2c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2M6 4h8v3H6zm7 12H7v-2h6zm4-2h-2c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2H3V9h14z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgPrint
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgQrPay = (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="M8 9H3c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1M4 7h3V4H4zm4 11H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1h5c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1m-4-2h3v-3H4zm13-7h-5c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1m-4-2h3V4h-3zm0 5.6v-1.2c0-.22-.18-.4-.4-.4h-1.2c-.22 0-.4.18-.4.4v1.2c0 .22.18.4.4.4h1.2c.22 0 .4-.18.4-.4m0 5v-1.2c0-.22-.18-.4-.4-.4h-1.2c-.22 0-.4.18-.4.4v1.2c0 .22.18.4.4.4h1.2c.22 0 .4-.18.4-.4m5 0v-1.2c0-.22-.18-.4-.4-.4h-1.2c-.22 0-.4.18-.4.4v1.2c0 .22.18.4.4.4h1.2c.22 0 .4-.18.4-.4m-2.5-2.5v-1.2c0-.22-.18-.4-.4-.4h-1.2c-.22 0-.4.18-.4.4v1.2c0 .22.18.4.4.4h1.2c.22 0 .4-.18.4-.4m2.5-2.5v-1.2c0-.22-.18-.4-.4-.4h-1.2c-.22 0-.4.18-.4.4v1.2c0 .22.18.4.4.4h1.2c.22 0 .4-.18.4-.4"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgQrPay
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgRedirect = (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.71 8.713-5 5c-.4.38-1.01.39-1.42 0-.39-.39-.39-1.03 0-1.42l3.29-3.29H6.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5H8c.55 0 1 .45 1 1s-.45 1-1 1H6.5a5.51 5.51 0 0 1-5.5-5.5c0-3.03 2.47-5.5 5.5-5.5h9.08l-3.29-3.29c-.39-.39-.39-1.03 0-1.42s1.03-.39 1.42 0l5 5c.39.39.39 1.03 0 1.42"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRedirect
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgRefill = (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 9.42V8.21c0-.988-.29-1.948-.84-2.767l-.74-1.109a5.07 5.07 0 0 0-1.92-1.698L9.45 1.108a.994.994 0 0 0-1.34.45.99.99 0 0 0 .45 1.338l3.05 1.528c.47.23.86.58 1.15 1.02l.74 1.108c.33.49.5 1.07.5 1.659V9c-.83 0-1.63.21-2.35.6L10.23 8H11c.55 0 1-.449 1-.998 0-.55-.45-1-1-1H9.83c-.73 0-1.36.41-1.66 1.08-.3.66-.18 1.408.3 1.958l1.88 2.108c.28.32.11.61.02.719-.09.11-.34.34-.71.14L5.94 9.939A3 3 0 0 1 4.51 8.14L2.97 2.736c-.15-.53-.71-.83-1.24-.69-.53.15-.84.71-.69 1.24L2.58 8.69a4.99 4.99 0 0 0 2.38 2.997l3.72 2.068c.11.06.22.09.33.13 0 .04-.01.08-.01.12A5 5 0 0 0 14 19a5 5 0 0 0 5-4.995c0-2.058-1.24-3.806-3-4.586m-2 7.572c-1.65 0-3-1.349-3-2.997 0-.06.01-.11.02-.17.34-.16.65-.41.9-.72.4-.499.59-1.098.57-1.688.46-.27.97-.42 1.51-.42 1.65 0 3 1.35 3 2.998a3.007 3.007 0 0 1-3 2.997"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRefill
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgRefund = (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.5 7H4.41L7.7 3.71A.996.996 0 1 0 6.29 2.3l-5 5a.996.996 0 0 0 0 1.41l5 5A.996.996 0 1 0 7.7 12.3L4.41 9h9.09c1.93 0 3.5 1.57 3.5 3.5S15.43 16 13.5 16H12c-.55 0-1 .45-1 1s.45 1 1 1h1.5c3.03 0 5.5-2.47 5.5-5.5S16.53 7 13.5 7"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRefund
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgReload = (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 9c-.55 0-1 .45-1 1 0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.29 0 2.52.35 3.59 1H13c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v.51A8.97 8.97 0 0 0 10 1c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9c0-.55-.45-1-1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgReload
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgReply = (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 12.003v4c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-1.65-1.35-3-3-3H5.42l2.29 2.29c.39.39.39 1.03 0 1.42-.4.38-1.01.39-1.42 0l-4-4c-.39-.39-.39-1.03 0-1.42l4-4c.39-.39 1.03-.39 1.42 0s.39 1.03 0 1.42l-2.29 2.29H11c2.76 0 5 2.24 5 5"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgReply
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgReplyShape = (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="M2 18a1 1 0 0 1-.99-1.16C2.05 10.61 4.24 7.42 9 5.34V3c0-.38.21-.72.55-.89s.74-.13 1.05.09l8 6c.25.19.4.49.4.8s-.15.61-.4.8l-8 6c-.3.23-.71.26-1.05.09A1 1 0 0 1 9 15v-1.92c-3.79.6-6.12 4.39-6.14 4.44-.19.3-.52.48-.86.48m9-13v1a1 1 0 0 1-.63.93c-3.41 1.36-5.31 3.16-6.46 6.43 1.49-1.23 3.54-2.35 6.09-2.35.55 0 1 .45 1 1v1l5.33-4z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgReplyShape
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgReplyShapeSolid = (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.606 8.205 10.603 2.2a1 1 0 0 0-1.05-.09 1 1 0 0 0-.55.891v2.332C4.24 7.414 2.05 10.607 1.01 16.842c-.08.47.19.94.64 1.1.44.16.95-.01 1.2-.42.02-.04 2.351-3.843 6.143-4.443v1.931c0 .38.21.72.55.89s.74.13 1.05-.09l8.003-6.004a1.005 1.005 0 0 0 .01-1.601"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgReplyShapeSolid