@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 SvgRequest = (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 18H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c.55 0 1 .45 1 1s-.45 1-1 1H4v12h12v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 1.1-.9 2-2 2m-4.46-5.29 6.17-6.17a.996.996 0 0 0 0-1.41L14.88 2.3a.996.996 0 0 0-1.41 0L7.3 8.47a1 1 0 0 0-.29.71V12c0 .55.45 1 1 1h2.83c.25 0 .51-.11.7-.29M9 9.59l5.17-5.17 1.41 1.41L10.41 11H9z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRequest
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgRight = (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.29 18.706a.997.997 0 0 1 0-1.411l7.29-7.296-7.29-7.295A.997.997 0 1 1 6.7 1.293l8 8.006c.39.39.39 1.02 0 1.41l-8 8.007c-.38.38-1.02.38-1.41-.01"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRight
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgRoute = (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 2.6c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4-1.4-.63-1.4-1.4.63-1.4 1.4-1.4M16 1c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M4 14.6c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4-1.4-.63-1.4-1.4.63-1.4 1.4-1.4M4 13c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m15 0c0-2.21-1.79-4-4-4H5c-1.1 0-2-.9-2-2s.9-2 2-2h5c.55 0 1-.45 1-1s-.45-1-1-1H5C2.79 3 1 4.79 1 7s1.79 4 4 4h10c1.1 0 2 .9 2 2s-.9 2-2 2h-5c-.55 0-1 .45-1 1s.45 1 1 1h5c2.21 0 4-1.79 4-4"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRoute
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgRuble = (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="M12 11.956c2.76 0 5-2.23 5-4.978S14.76 2 12 2H6.99c-.55 0-1 .448-.99 1.006l.04 6.96H4a1 1 0 0 0-1 .995 1 1 0 0 0 1 .995h2.05l.01.996H4a1 1 0 0 0-1 .996 1 1 0 0 0 1 .995h2.07l.01 2.071c0 .548.45.986 1 .986h.01c.55 0 1-.448.99-1.006l-.01-2.06H12a1 1 0 0 0 1-.996 1 1 0 0 0-1-.996H8.05l-.01-.995H12zm0-7.965c1.65 0 3 1.344 3 2.987s-1.35 2.987-3 2.987H8.04l-.03-5.974z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgRuble
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSbp = (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.55 13.17 11.8 10l4.75-3.17c.28-.18.45-.5.45-.83s-.17-.65-.45-.83l-6-4c-.31-.2-.7-.22-1.03-.05C9.2 1.29 9 1.63 9 2v6.13L4.55 5.17c-.31-.2-.7-.22-1.03-.05C3.2 5.29 3 5.63 3 6v8c0 .37.2.71.53.88.32.17.72.16 1.03-.05L9 11.87V18c0 .37.2.71.53.88.32.17.72.16 1.03-.05l6-4a.995.995 0 0 0-.01-1.66M11 3.87 14.2 6 11 8.13zm-6 8.26V7.87L8.2 10zm6 4v-4.26L14.2 14z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSbp
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSearch = (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="M12 1C8.14 1 5 4.142 5 8.004c0 1.57.53 3.022 1.4 4.182L1.29 17.3A.997.997 0 0 0 2 19c.26 0 .51-.1.71-.29l5.11-5.113c1.17.88 2.61 1.4 4.18 1.4 3.86 0 7-3.141 7-7.003S15.86 1 12 1m0 12.007A5.003 5.003 0 0 1 12 3a5.003 5.003 0 0 1 0 10.006"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSearch
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSend = (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.4 9.083-16-6.997a.98.98 0 0 0-1.1.21c-.29.29-.38.73-.21 1.099l2.83 6.607-2.83 6.607a.996.996 0 0 0 1.31 1.31l16-6.997c.36-.16.6-.52.6-.92s-.24-.76-.6-.92m-5.18-.08H5.66L3.92 4.934zm-7.56 1.999h7.56l-9.3 4.068z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSend
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgServices = (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="M12 11H8V7c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v9c0 1.1.9 2 2 2h9c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1M3 8h3v3H3zm0 5h3v3H3zm8 3H8v-3h3zm6-14h-4c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V4c0-1.1-.9-2-2-2m0 5h-3V4h3z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgServices
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSettings = (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 13.5c-1.93 0-3.5-1.57-3.5-3.5S8.07 6.5 10 6.5s3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5m0-5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5M11.78 19H8.22c-.48 0-.89-.33-.98-.8l-.27-1.34c-.52-.23-1.02-.52-1.48-.87l-1.4.46a.995.995 0 0 1-1.17-.44l-1.78-3a1 1 0 0 1 .21-1.27l1.19-1.02c-.03-.25-.04-.49-.04-.72s.01-.48.04-.72L1.35 8.26a1 1 0 0 1-.21-1.27l1.78-3a1 1 0 0 1 1.17-.44l1.4.46c.46-.35.95-.64 1.48-.87l.27-1.34c.09-.47.5-.8.98-.8h3.56c.48 0 .89.33.98.8l.27 1.34c.52.23 1.02.52 1.48.87l1.4-.46c.45-.15.93.04 1.17.44l1.78 3c.25.42.16.95-.21 1.27l-1.19 1.02c.03.25.04.49.04.72s-.01.48-.04.72l1.19 1.02c.37.32.46.85.21 1.27l-1.78 3a1 1 0 0 1-1.17.44l-1.4-.46c-.46.35-.95.64-1.48.87l-.27 1.34c-.1.47-.51.8-.98.8m-2.74-2h1.92l.22-1.07c.07-.34.32-.63.65-.74.67-.24 1.28-.59 1.81-1.07.27-.24.64-.31.98-.2l1.16.38.94-1.58-.97-.83a.97.97 0 0 1-.33-.93q.09-.51.09-.96c0-.3-.03-.61-.09-.96s.07-.7.33-.93l.97-.83-.94-1.58-1.16.38c-.34.11-.71.04-.98-.2-.53-.47-1.14-.83-1.81-1.07-.33-.12-.58-.4-.65-.74L10.96 3H9.04l-.22 1.07c-.07.34-.32.63-.65.74-.67.24-1.28.59-1.81 1.07-.27.24-.64.31-.98.2L4.22 5.7l-.94 1.58.97.83c.27.23.4.58.33.93q-.09.51-.09.96c0 .3.03.61.09.96s-.07.7-.33.93l-.97.83.94 1.58 1.16-.38c.34-.11.71-.04.98.2.53.47 1.14.83 1.81 1.07.33.12.58.4.65.74z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSettings
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgShare = (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 18H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h6c.55 0 1 .45 1 1s-.45 1-1 1H4v12h12v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 1.1-.9 2-2 2m1.71-12.71-3-3c-.39-.39-1.03-.39-1.42 0s-.39 1.03 0 1.42l1.3 1.3C10.37 5.23 7 8.73 7 13c0 .55.45 1 1 1s1-.45 1-1c0-3.16 2.45-5.76 5.56-5.98l-1.27 1.27c-.39.39-.39 1.03 0 1.42.41.39 1.02.38 1.42 0l3-3c.39-.39.39-1.03 0-1.42"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgShare
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgShoppingCart = (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="M14.82 14h-7c-.95 0-1.77-.68-1.96-1.61L4.18 4H2c-.55 0-1-.45-1-1s.45-1 1-1h3c.48 0 .89.34.98.8L6.42 5H17a.992.992 0 0 1 .98 1.19l-1.19 6.19c-.18.94-1.01 1.62-1.97 1.62m-8-7 1 5h7l.96-5zM8 16c-.83 0-1.5.67-1.5 1.5S7.17 19 8 19s1.5-.67 1.5-1.5S8.83 16 8 16m7 0c-.83 0-1.5.67-1.5 1.5S14.17 19 15 19s1.5-.67 1.5-1.5S15.83 16 15 16"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgShoppingCart
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSign = (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 19H3c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c1.65 0 3 1.35 3 3s-1.35 3-3 3m.42-11.83L7.97 14.7a1 1 0 0 1-.71.3H3c-.55 0-1-.45-1-1V9.74a1 1 0 0 1 .3-.71l7.53-7.44c.8-.78 2.03-.78 2.82 0l2.77 2.76c.81.83.74 2.1 0 2.82M10.9 8.91l-2.8-2.8L4 10.16V13h2.84zM14 5.76l-2.77-2.75L9.52 4.7l2.78 2.78z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSign
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSlotMachine = (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="M14 19H2c-.55 0-1-.45-1-1V5C1 2.17 4.52.91 8 .91S15 2.17 15 5v13c0 .55-.45 1-1 1M3 17h10V5c0-.68-.7-1.14-1.29-1.41-.95-.43-2.3-.68-3.71-.68-2.8 0-5 .92-5 2.09zm15-5V9.12l.97-3.88a1 1 0 0 0-1.94-.48l-1 4Q16 8.88 16 9v3c0 .55.45 1 1 1s1-.45 1-1M6 9V7c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1m3 0V7c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1m3 0V7c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1m-1 5c0-.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 SvgSlotMachine
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSortDown = (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.004 14.003c-.26 0-.51-.1-.71-.29l-6.004-6c-.29-.29-.37-.72-.22-1.09s.52-.62.92-.62h12.007c.4 0 .77.24.92.62.16.37.07.8-.22 1.09l-6.003 6c-.18.19-.43.29-.69.29m-3.592-6 3.592 3.59 3.592-3.59z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSortDown
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSortDownSolid = (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.99 6H4a.999.999 0 0 0-.71 1.709l5.995 5.995a1 1 0 0 0 1.419 0l5.995-5.995A1 1 0 0 0 15.989 6"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSortDownSolid
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSortUp = (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 14.003H4c-.4 0-.77-.24-.92-.62-.16-.37-.07-.8.22-1.09l6-6a.996.996 0 0 1 1.41 0l6 6c.29.29.37.72.22 1.09-.16.38-.53.62-.93.62m-9.59-2h7.17l-3.59-3.59z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSortUp
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSortUpSolid = (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.704 12.291 10.71 6.296a1 1 0 0 0-1.418 0L3.296 12.29A1 1 0 0 0 4.005 14h11.99a1 1 0 0 0 .71-1.709"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSortUpSolid
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgStop = (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 1c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9m7 9c0 1.57-.53 3.02-1.4 4.18L5.82 4.4C6.98 3.53 8.43 3 10 3c3.86 0 7 3.14 7 7M3 10c0-1.57.53-3.02 1.4-4.18l9.78 9.78c-1.17.88-2.61 1.4-4.18 1.4-3.86 0-7-3.14-7-7"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgStop
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSupport = (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 10c0-1.55-.89-2.87-2.18-3.54C16.14 3.31 13.31 1 10 1 6.73 1 3.89 3.31 3.18 6.46 1.89 7.12 1 8.46 1 10c0 2.21 1.79 4 4 4h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-.55C6.23 4.23 7.99 3 10 3c2.04 0 3.8 1.23 4.56 3H14c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1c0 1.1-.9 2-2 2h-.05a2.5 2.5 0 0 0-2.45-2h-1a2.5 2.5 0 0 0 0 5h1c.81 0 1.53-.4 1.99-1H13c2.21 0 4-1.79 4-4v-.56c1.19-.69 2-1.97 2-3.44M5 12c-1.1 0-2-.9-2-2s.9-2 2-2zm5.5 5h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5m4.5-5V8c1.1 0 2 .9 2 2s-.9 2-2 2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSupport
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgSync = (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="m14.71 4.713-2 2c-.4.38-1.01.39-1.42 0-.39-.39-.39-1.03 0-1.42l.29-.29H10a5.002 5.002 0 0 0-4.64 6.86c.25.64-.21 1.37-.93 1.37-.4 0-.77-.24-.93-.63-.33-.83-.5-1.7-.5-2.6 0-3.86 3.14-7 7-7h1.58l-.29-.29c-.39-.39-.39-1.03 0-1.42s1.03-.39 1.42 0l2 2c.39.39.39 1.03 0 1.42m2.29 5.29q0-1.14-.36-2.22a1 1 0 0 0-1.26-.63c-.53.18-.81.74-.64 1.27.17.51.26 1.04.26 1.58 0 2.76-2.24 5-5 5h-.58l.29-.29c.39-.39.39-1.03 0-1.42s-1.03-.39-1.42 0l-2 2c-.39.39-.39 1.03 0 1.42l2 2c.41.39 1.02.38 1.42 0 .39-.39.39-1.03 0-1.42l-.29-.29H10c3.86 0 7-3.14 7-7"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgSync
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTable = (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 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M3 9h3v2H3zm5 0h9v2H8zm9-2H8V5h9zM6 5v2H3V5zm-3 8h3v2H3zm5 2v-2h9v2z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTable
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTariffs = (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 18H7c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1m-5-2h4V4H8zm-3-1c0-.55-.45-1-1-1H3V6h1c.55 0 1-.45 1-1s-.45-1-1-1H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h1c.55 0 1-.45 1-1m14-1V6c0-1.1-.9-2-2-2h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v8h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c1.1 0 2-.9 2-2"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTariffs
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTg = (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-2.79 11.65c-.12.76-.73 1.03-1.36.59l-2.9-2.01c-.36-.25-.4-.7-.08-1.01.49-.48 1.27-1.22 2.14-2.04 1.5-1.43 1.17-1.54-.75-.25l-2.81 1.9c-.37.25-1 .34-1.42.2l-1.62-.53c-.53-.17-.54-.48-.03-.69l9.13-3.77c.51-.21.86.06.77.61z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTg
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTgCircle = (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 1m3.21 12.65c-.12.76-.73 1.03-1.36.59l-2.9-2.01c-.36-.25-.4-.7-.08-1.01.5-.47 1.27-1.21 2.14-2.04 1.5-1.43 1.17-1.54-.75-.25l-2.81 1.9c-.37.25-1 .34-1.42.2l-1.62-.53c-.53-.17-.54-.48-.03-.69l9.13-3.77c.51-.21.86.06.77.61z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTgCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTimeout = (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 7.996h-1.35l.33-1.821c.05-.29-.03-.59-.22-.82a.97.97 0 0 0-.76-.36H3c-.3 0-.58.13-.77.36s-.27.53-.22.82l1.85 10.184c.17.95 1 1.641 1.97 1.641h5.33c.97 0 1.79-.69 1.97-1.64l.25-1.361H16c1.1 0 2-.9 2-2.001V9.996c0-1.1-.9-2-2-2m-4.83 8.003H5.84L4.2 6.995h8.6zM16 12.998h-2.26l.55-3.002H16zM5.29 3.704a.997.997 0 0 1 0-1.41l1-1.001a.997.997 0 1 1 1.41 1.41l-1 1a1 1 0 0 1-1.41 0m5 0a.997.997 0 0 1 0-1.41l1-1.001a.997.997 0 1 1 1.41 1.41l-1 1a1 1 0 0 1-1.41 0"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTimeout
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTimer = (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 16h-1v-2.59c0-.53-.21-1.04-.59-1.41l-1.29-1.29a.996.996 0 0 1 0-1.41l1.29-1.29c.37-.37.59-.89.59-1.41V4h1c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2.59c0 .53.21 1.04.59 1.41l1.29 1.29c.39.39.39 1.02 0 1.41l-1.29 1.29c-.37.37-.59.89-.59 1.41V16H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1m-9 0v-2.59l1.29-1.29a3 3 0 0 0 0-4.24L7 6.59V4h6v2.59l-1.29 1.29a3 3 0 0 0 0 4.24L13 13.41V16z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTimer
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTrash = (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 5h-3V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v2H2c-.55 0-1 .45-1 1s.45 1 1 1h1v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V7h1c.55 0 1-.45 1-1s-.45-1-1-1M7 3h6v2H7zm8 14H5V7h10zm-8-3v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1m4 0v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTrash
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTurnOff = (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-9 0-2.68 1.18-5.2 3.24-6.91a1.001 1.001 0 1 1 1.28 1.54A7 7 0 0 0 3 10.01c0 3.86 3.14 7 7 7s7-3.14 7-7c0-2.08-.92-4.04-2.52-5.38a1 1 0 1 1 1.28-1.54A8.98 8.98 0 0 1 19 10c0 4.96-4.04 9-9 9m1-9V2c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTurnOff
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTwitter = (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.77 6.32v.26c0 2.71-2.06 5.84-5.84 5.84-1.16 0-2.24-.34-3.14-.92a4.145 4.145 0 0 0 3.04-.85c-.9-.02-1.66-.61-1.92-1.42.12.02.25.04.38.04.19 0 .37-.02.54-.07a2.05 2.05 0 0 1-1.64-2.01v-.03c.28.15.6.24.93.25-.55-.37-.91-1-.91-1.71 0-.38.1-.73.28-1.03a5.8 5.8 0 0 0 4.23 2.14c-.03-.15-.05-.31-.05-.47a2.053 2.053 0 0 1 3.55-1.4c.47-.09.91-.26 1.3-.5-.16.48-.48.88-.9 1.14a4.2 4.2 0 0 0 1.18-.32c-.29.41-.63.78-1.03 1.06"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTwitter
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgTwitterCircle = (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.23 7.32v.26c0 2.71-2.06 5.84-5.84 5.84-1.16 0-2.24-.34-3.14-.92a4.145 4.145 0 0 0 3.04-.85c-.9-.02-1.66-.61-1.92-1.42.12.02.25.04.38.04.19 0 .37-.02.54-.07a2.05 2.05 0 0 1-1.64-2.01v-.03c.28.15.6.24.93.25-.55-.37-.91-1-.91-1.71 0-.38.1-.73.28-1.03a5.8 5.8 0 0 0 4.23 2.14c-.03-.15-.05-.31-.05-.47a2.053 2.053 0 0 1 3.55-1.4c.47-.09.91-.26 1.3-.5-.16.48-.48.88-.9 1.14a4.2 4.2 0 0 0 1.18-.32c-.29.41-.63.78-1.03 1.06"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgTwitterCircle
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUnderline = (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 16H5c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1m-1-7V5c0-.55-.45-1-1-1s-1 .45-1 1v4c0 1.1-.9 2-2 2s-2-.9-2-2V5c0-.55-.45-1-1-1s-1 .45-1 1v4c0 2.21 1.79 4 4 4s4-1.79 4-4"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUnderline
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUnlink = (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 14H5c-2.21 0-4-1.79-4-4 0-1.07.42-2.07 1.17-2.83a.996.996 0 1 1 1.41 1.41A2.006 2.006 0 0 0 5 12h3c.55 0 1 .45 1 1s-.45 1-1 1m7.38-.04C17.4 13.77 19 12.08 19 10c0-2.21-1.79-4-4-4h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2 .9 2 2s-.9 2-2 2h-1.59l-1-1H13c.55 0 1-.45 1-1s-.45-1-1-1h-2.59l-6.7-6.71A.996.996 0 1 0 2.3 3.7l14 14a.996.996 0 1 0 1.41-1.41z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUnlink
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import type { SVGProps } from 'react'
3
+ import { SvgIcon } from '../SvgIcon'
4
+ const SvgUnsorted = (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.29 18.71-6-6C2.66 12.08 3.11 11 4 11h12c.89 0 1.34 1.08.71 1.71l-6 6c-.39.39-1.03.39-1.42 0M6.41 13 10 16.59 13.59 13zM16 9H4c-.89 0-1.34-1.08-.71-1.71l6-6a.996.996 0 0 1 1.41 0l6 6c.64.63.19 1.71-.7 1.71M6.41 7h7.17L10 3.41z"
15
+ />
16
+ </SvgIcon>
17
+ )
18
+ export default SvgUnsorted