@viraui/react 0.0.16 → 0.0.18

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 (611) hide show
  1. package/dist/catalog.json +18 -0
  2. package/dist/components/avatar/avatar.css +1 -55
  3. package/dist/components/avatar/avatar.d.ts +1 -2
  4. package/dist/components/avatar/avatar.js +49 -14
  5. package/dist/components/avatar/avatar.module.js +7 -0
  6. package/dist/components/avatar/index.d.ts +2 -2
  7. package/dist/components/basic-input/basic-input.css +1 -45
  8. package/dist/components/basic-input/basic-input.d.ts +0 -1
  9. package/dist/components/basic-input/basic-input.js +24 -13
  10. package/dist/components/basic-input/basic-input.module.js +3 -0
  11. package/dist/components/basic-input/field-helper-copy.d.ts +2 -1
  12. package/dist/components/basic-input/field-helper-copy.js +43 -24
  13. package/dist/components/basic-input/field-label.css +1 -0
  14. package/dist/components/basic-input/field-label.d.ts +11 -0
  15. package/dist/components/basic-input/field-label.js +25 -0
  16. package/dist/components/basic-input/field-label.module.js +3 -0
  17. package/dist/components/basic-input/index.d.ts +7 -2
  18. package/dist/components/basic-input/input-control-group.d.ts +2 -0
  19. package/dist/components/basic-input/input-control-group.js +40 -7
  20. package/dist/components/button/button.css +1 -157
  21. package/dist/components/button/button.d.ts +2 -3
  22. package/dist/components/button/button.js +100 -55
  23. package/dist/components/button/button.module.js +7 -0
  24. package/dist/components/button/index.d.ts +2 -2
  25. package/dist/components/checkbox/checkbox.css +1 -0
  26. package/dist/components/checkbox/checkbox.d.ts +65 -0
  27. package/dist/components/checkbox/checkbox.guide.json +22 -0
  28. package/dist/components/checkbox/checkbox.js +76 -0
  29. package/dist/components/checkbox/checkbox.module.js +10 -0
  30. package/dist/components/checkbox/index.d.ts +2 -0
  31. package/dist/components/clamp-text/clamp-text.css +1 -12
  32. package/dist/components/clamp-text/clamp-text.d.ts +1 -2
  33. package/dist/components/clamp-text/clamp-text.js +27 -22
  34. package/dist/components/clamp-text/clamp-text.module.js +3 -0
  35. package/dist/components/clamp-text/index.d.ts +2 -2
  36. package/dist/components/elevator/elevator.d.ts +5 -5
  37. package/dist/components/elevator/elevator.js +27 -27
  38. package/dist/components/elevator/index.d.ts +2 -2
  39. package/dist/components/icon/icon.css +1 -7
  40. package/dist/components/icon/icon.d.ts +2 -3
  41. package/dist/components/icon/icon.js +18 -9
  42. package/dist/components/icon/icon.module.js +3 -0
  43. package/dist/components/icon/index.d.ts +2 -2
  44. package/dist/components/icon-button/icon-button.d.ts +2 -2
  45. package/dist/components/icon-button/icon-button.js +10 -3
  46. package/dist/components/icon-button/index.d.ts +2 -2
  47. package/dist/components/index.d.ts +20 -17
  48. package/dist/components/linear-progress/index.d.ts +2 -0
  49. package/dist/components/linear-progress/linear-progress.css +1 -0
  50. package/dist/components/linear-progress/linear-progress.d.ts +44 -0
  51. package/dist/components/linear-progress/linear-progress.guide.json +27 -0
  52. package/dist/components/linear-progress/linear-progress.js +61 -0
  53. package/dist/components/linear-progress/linear-progress.module.js +8 -0
  54. package/dist/components/radio/index.d.ts +4 -0
  55. package/dist/components/radio/radio-group.d.ts +44 -0
  56. package/dist/components/radio/radio-group.js +54 -0
  57. package/dist/components/radio/radio.css +1 -0
  58. package/dist/components/radio/radio.d.ts +44 -0
  59. package/dist/components/radio/radio.guide.json +26 -0
  60. package/dist/components/radio/radio.js +45 -0
  61. package/dist/components/radio/radio.module.js +9 -0
  62. package/dist/components/select/index.d.ts +2 -2
  63. package/dist/components/select/select-group.d.ts +1 -1
  64. package/dist/components/select/select-group.js +37 -9
  65. package/dist/components/select/select-indicator-slot.js +33 -10
  66. package/dist/components/select/select-option.d.ts +1 -1
  67. package/dist/components/select/select-option.js +40 -10
  68. package/dist/components/select/select-separator.js +14 -6
  69. package/dist/components/select/select.css +1 -193
  70. package/dist/components/select/select.d.ts +10 -11
  71. package/dist/components/select/select.js +156 -32
  72. package/dist/components/select/select.module.js +19 -0
  73. package/dist/components/skeleton/index.d.ts +2 -2
  74. package/dist/components/skeleton/skeleton.css +1 -36
  75. package/dist/components/skeleton/skeleton.d.ts +2 -3
  76. package/dist/components/skeleton/skeleton.js +26 -15
  77. package/dist/components/skeleton/skeleton.module.js +6 -0
  78. package/dist/components/slider/index.d.ts +2 -2
  79. package/dist/components/slider/slider-control.d.ts +1 -2
  80. package/dist/components/slider/slider-control.js +43 -19
  81. package/dist/components/slider/slider-utils.js +6 -3
  82. package/dist/components/slider/slider.css +1 -64
  83. package/dist/components/slider/slider.d.ts +5 -8
  84. package/dist/components/slider/slider.js +83 -17
  85. package/dist/components/slider/slider.module.js +12 -0
  86. package/dist/components/spinner/index.d.ts +2 -2
  87. package/dist/components/spinner/spinner.css +1 -45
  88. package/dist/components/spinner/spinner.d.ts +1 -2
  89. package/dist/components/spinner/spinner.js +29 -6
  90. package/dist/components/spinner/spinner.module.js +7 -0
  91. package/dist/components/stack/index.d.ts +2 -2
  92. package/dist/components/stack/stack.css +1 -57
  93. package/dist/components/stack/stack.d.ts +2 -3
  94. package/dist/components/stack/stack.js +40 -36
  95. package/dist/components/stack/stack.module.js +3 -0
  96. package/dist/components/surface/index.d.ts +2 -2
  97. package/dist/components/surface/surface.css +1 -70
  98. package/dist/components/surface/surface.d.ts +10 -6
  99. package/dist/components/surface/surface.js +43 -40
  100. package/dist/components/surface/surface.module.js +6 -0
  101. package/dist/components/switch/index.d.ts +2 -2
  102. package/dist/components/switch/switch.css +1 -73
  103. package/dist/components/switch/switch.d.ts +17 -5
  104. package/dist/components/switch/switch.js +62 -13
  105. package/dist/components/switch/switch.module.js +7 -0
  106. package/dist/components/text/index.d.ts +2 -2
  107. package/dist/components/text/text.css +1 -145
  108. package/dist/components/text/text.d.ts +8 -3
  109. package/dist/components/text/text.js +46 -41
  110. package/dist/components/text/text.module.js +3 -0
  111. package/dist/components/textarea/index.d.ts +2 -2
  112. package/dist/components/textarea/textarea.css +1 -45
  113. package/dist/components/textarea/textarea.d.ts +3 -4
  114. package/dist/components/textarea/textarea.js +51 -11
  115. package/dist/components/textarea/textarea.module.js +7 -0
  116. package/dist/components/textfield/index.d.ts +2 -2
  117. package/dist/components/textfield/textfield.css +1 -87
  118. package/dist/components/textfield/textfield.d.ts +3 -4
  119. package/dist/components/textfield/textfield.js +58 -12
  120. package/dist/components/textfield/textfield.module.js +9 -0
  121. package/dist/components/title/index.d.ts +2 -2
  122. package/dist/components/title/title.css +1 -137
  123. package/dist/components/title/title.d.ts +8 -3
  124. package/dist/components/title/title.js +44 -39
  125. package/dist/components/title/title.module.js +3 -0
  126. package/dist/consumption.json +6 -2
  127. package/dist/core/elevation/elevation-types.js +6 -3
  128. package/dist/core/elevation/get-elevation-props.d.ts +1 -1
  129. package/dist/core/elevation/get-elevation-props.js +14 -11
  130. package/dist/core/props/intrinsic-vira-props.js +12 -9
  131. package/dist/core/styles/resolve-axis-padding.d.ts +1 -1
  132. package/dist/core/styles/resolve-axis-padding.js +15 -16
  133. package/dist/core/theme/resolve-theme-value.d.ts +1 -1
  134. package/dist/core/theme/resolve-theme-value.js +7 -6
  135. package/dist/index.d.ts +2 -2
  136. package/dist/index.js +24 -1
  137. package/dist/internal-icons/icon-registry.d.ts +33 -239
  138. package/dist/internal-icons/icon-registry.js +52 -670
  139. package/dist/internal-icons/icons/duo/CaretDown.js +1 -1
  140. package/dist/internal-icons/icons/duo/CaretLeft.js +1 -1
  141. package/dist/internal-icons/icons/duo/CaretRight.js +1 -1
  142. package/dist/internal-icons/icons/duo/CaretUp.js +1 -1
  143. package/dist/internal-icons/icons/duo/CircleHalfDottedClock.d.ts +7 -0
  144. package/dist/internal-icons/icons/duo/CircleHalfDottedClock.js +13 -0
  145. package/dist/internal-icons/icons/duo/{Embed.d.ts → Clock.d.ts} +3 -3
  146. package/dist/internal-icons/icons/duo/Clock.js +13 -0
  147. package/dist/internal-icons/icons/duo/History.d.ts +7 -0
  148. package/dist/internal-icons/icons/duo/History.js +13 -0
  149. package/dist/internal-icons/icons/duo/{Box3.d.ts → Lock.d.ts} +3 -3
  150. package/dist/internal-icons/icons/duo/Lock.js +13 -0
  151. package/dist/internal-icons/icons/duo/LockOpen.d.ts +7 -0
  152. package/dist/internal-icons/icons/duo/LockOpen.js +13 -0
  153. package/dist/internal-icons/icons/duo/Magnifier.d.ts +7 -0
  154. package/dist/internal-icons/icons/duo/Magnifier.js +13 -0
  155. package/dist/internal-icons/icons/duo/{Child.d.ts → Minus.d.ts} +3 -3
  156. package/dist/internal-icons/icons/duo/{ShapeRectangle.js → Minus.js} +4 -4
  157. package/dist/internal-icons/icons/duo/{Task.d.ts → Plus.d.ts} +3 -3
  158. package/dist/internal-icons/icons/duo/{ProfileBasic.js → Plus.js} +4 -4
  159. package/dist/internal-icons/icons/duo/Quickstart.d.ts +7 -0
  160. package/dist/internal-icons/icons/duo/Quickstart.js +13 -0
  161. package/dist/internal-icons/icons/duo/{Img4k.d.ts → Xmark.d.ts} +3 -3
  162. package/dist/internal-icons/icons/duo/Xmark.js +13 -0
  163. package/dist/internal-icons/icons/duo/index.d.ts +33 -239
  164. package/dist/internal-icons/icons/duo/index.js +33 -239
  165. package/dist/preflight.css +1 -1
  166. package/package.json +10 -9
  167. package/dist/components/avatar/index.js +0 -1
  168. package/dist/components/basic-input/index.js +0 -1
  169. package/dist/components/button/index.js +0 -1
  170. package/dist/components/clamp-text/index.js +0 -1
  171. package/dist/components/elevator/index.js +0 -1
  172. package/dist/components/icon/index.js +0 -1
  173. package/dist/components/icon-button/index.js +0 -1
  174. package/dist/components/index.js +0 -17
  175. package/dist/components/select/index.js +0 -1
  176. package/dist/components/skeleton/index.js +0 -1
  177. package/dist/components/slider/index.js +0 -1
  178. package/dist/components/slider/slider-control.css +0 -71
  179. package/dist/components/spinner/index.js +0 -1
  180. package/dist/components/stack/index.js +0 -1
  181. package/dist/components/surface/index.js +0 -1
  182. package/dist/components/switch/index.js +0 -1
  183. package/dist/components/text/index.js +0 -1
  184. package/dist/components/textarea/index.js +0 -1
  185. package/dist/components/textfield/index.js +0 -1
  186. package/dist/components/title/index.js +0 -1
  187. package/dist/internal-icons/icons/duo/AddSection.d.ts +0 -7
  188. package/dist/internal-icons/icons/duo/AddSection.js +0 -13
  189. package/dist/internal-icons/icons/duo/AiDeveloper.d.ts +0 -7
  190. package/dist/internal-icons/icons/duo/AiDeveloper.js +0 -13
  191. package/dist/internal-icons/icons/duo/AiLoading.d.ts +0 -7
  192. package/dist/internal-icons/icons/duo/AiLoading.js +0 -13
  193. package/dist/internal-icons/icons/duo/Album3.d.ts +0 -7
  194. package/dist/internal-icons/icons/duo/Album3.js +0 -13
  195. package/dist/internal-icons/icons/duo/ArchiveContent2.d.ts +0 -7
  196. package/dist/internal-icons/icons/duo/ArchiveContent2.js +0 -13
  197. package/dist/internal-icons/icons/duo/ArrowRotate.d.ts +0 -7
  198. package/dist/internal-icons/icons/duo/ArrowRotate.js +0 -13
  199. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.d.ts +0 -7
  200. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.js +0 -13
  201. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.d.ts +0 -7
  202. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.js +0 -13
  203. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.d.ts +0 -7
  204. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.js +0 -13
  205. package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.d.ts +0 -7
  206. package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.js +0 -13
  207. package/dist/internal-icons/icons/duo/ArrowsFilter.d.ts +0 -7
  208. package/dist/internal-icons/icons/duo/ArrowsFilter.js +0 -13
  209. package/dist/internal-icons/icons/duo/ArrowsToLineY2.d.ts +0 -7
  210. package/dist/internal-icons/icons/duo/ArrowsToLineY2.js +0 -13
  211. package/dist/internal-icons/icons/duo/Birdhouse.d.ts +0 -7
  212. package/dist/internal-icons/icons/duo/Birdhouse.js +0 -13
  213. package/dist/internal-icons/icons/duo/BookmarkList.d.ts +0 -7
  214. package/dist/internal-icons/icons/duo/BookmarkList.js +0 -13
  215. package/dist/internal-icons/icons/duo/BookmarkedBook.d.ts +0 -7
  216. package/dist/internal-icons/icons/duo/BookmarkedBook.js +0 -13
  217. package/dist/internal-icons/icons/duo/BookmarkedBook2.d.ts +0 -7
  218. package/dist/internal-icons/icons/duo/BookmarkedBook2.js +0 -13
  219. package/dist/internal-icons/icons/duo/Box3.js +0 -13
  220. package/dist/internal-icons/icons/duo/BoxSparkle.d.ts +0 -7
  221. package/dist/internal-icons/icons/duo/BoxSparkle.js +0 -13
  222. package/dist/internal-icons/icons/duo/BoxSparkle2.d.ts +0 -7
  223. package/dist/internal-icons/icons/duo/BoxSparkle2.js +0 -13
  224. package/dist/internal-icons/icons/duo/Brochure.d.ts +0 -7
  225. package/dist/internal-icons/icons/duo/Brochure.js +0 -13
  226. package/dist/internal-icons/icons/duo/ButtonPlus.d.ts +0 -7
  227. package/dist/internal-icons/icons/duo/ButtonPlus.js +0 -13
  228. package/dist/internal-icons/icons/duo/Calculator3.d.ts +0 -7
  229. package/dist/internal-icons/icons/duo/Calculator3.js +0 -13
  230. package/dist/internal-icons/icons/duo/Chart3.d.ts +0 -7
  231. package/dist/internal-icons/icons/duo/Chart3.js +0 -13
  232. package/dist/internal-icons/icons/duo/ChartBar.d.ts +0 -7
  233. package/dist/internal-icons/icons/duo/ChartBar.js +0 -13
  234. package/dist/internal-icons/icons/duo/ChartCandlestick2.d.ts +0 -7
  235. package/dist/internal-icons/icons/duo/ChartCandlestick2.js +0 -13
  236. package/dist/internal-icons/icons/duo/ChatImage.d.ts +0 -7
  237. package/dist/internal-icons/icons/duo/ChatImage.js +0 -13
  238. package/dist/internal-icons/icons/duo/ChatInfo.d.ts +0 -7
  239. package/dist/internal-icons/icons/duo/ChatInfo.js +0 -13
  240. package/dist/internal-icons/icons/duo/ChatTask.d.ts +0 -7
  241. package/dist/internal-icons/icons/duo/ChatTask.js +0 -13
  242. package/dist/internal-icons/icons/duo/CheckBoxArrow.d.ts +0 -7
  243. package/dist/internal-icons/icons/duo/CheckBoxArrow.js +0 -13
  244. package/dist/internal-icons/icons/duo/ChevronLeftToLine.d.ts +0 -7
  245. package/dist/internal-icons/icons/duo/ChevronLeftToLine.js +0 -13
  246. package/dist/internal-icons/icons/duo/ChevronRightToLine.d.ts +0 -7
  247. package/dist/internal-icons/icons/duo/ChevronRightToLine.js +0 -13
  248. package/dist/internal-icons/icons/duo/Child.js +0 -13
  249. package/dist/internal-icons/icons/duo/CircleCoinIn.d.ts +0 -7
  250. package/dist/internal-icons/icons/duo/CircleCoinIn.js +0 -13
  251. package/dist/internal-icons/icons/duo/CircleCoinOut.d.ts +0 -7
  252. package/dist/internal-icons/icons/duo/CircleCoinOut.js +0 -13
  253. package/dist/internal-icons/icons/duo/CircleCoinPlus.d.ts +0 -7
  254. package/dist/internal-icons/icons/duo/CircleCoinPlus.js +0 -13
  255. package/dist/internal-icons/icons/duo/CircleConversion.d.ts +0 -7
  256. package/dist/internal-icons/icons/duo/CircleConversion.js +0 -13
  257. package/dist/internal-icons/icons/duo/CircleCross.d.ts +0 -7
  258. package/dist/internal-icons/icons/duo/CircleCross.js +0 -13
  259. package/dist/internal-icons/icons/duo/CircleHalfArrowDown.d.ts +0 -7
  260. package/dist/internal-icons/icons/duo/CircleHalfArrowDown.js +0 -13
  261. package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.d.ts +0 -7
  262. package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.js +0 -13
  263. package/dist/internal-icons/icons/duo/CircleHalfArrowRight.d.ts +0 -7
  264. package/dist/internal-icons/icons/duo/CircleHalfArrowRight.js +0 -13
  265. package/dist/internal-icons/icons/duo/CircleHalfArrowUp.d.ts +0 -7
  266. package/dist/internal-icons/icons/duo/CircleHalfArrowUp.js +0 -13
  267. package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.d.ts +0 -7
  268. package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.js +0 -13
  269. package/dist/internal-icons/icons/duo/ClockTime.d.ts +0 -7
  270. package/dist/internal-icons/icons/duo/ClockTime.js +0 -13
  271. package/dist/internal-icons/icons/duo/CloneDashed3.d.ts +0 -7
  272. package/dist/internal-icons/icons/duo/CloneDashed3.js +0 -13
  273. package/dist/internal-icons/icons/duo/CloneImageDashed.d.ts +0 -7
  274. package/dist/internal-icons/icons/duo/CloneImageDashed.js +0 -13
  275. package/dist/internal-icons/icons/duo/CloneVideoDashed.d.ts +0 -7
  276. package/dist/internal-icons/icons/duo/CloneVideoDashed.js +0 -13
  277. package/dist/internal-icons/icons/duo/CloudeCode.d.ts +0 -7
  278. package/dist/internal-icons/icons/duo/CloudeCode.js +0 -13
  279. package/dist/internal-icons/icons/duo/CoinStack.d.ts +0 -7
  280. package/dist/internal-icons/icons/duo/CoinStack.js +0 -13
  281. package/dist/internal-icons/icons/duo/ConditionalLogic.d.ts +0 -7
  282. package/dist/internal-icons/icons/duo/ConditionalLogic.js +0 -13
  283. package/dist/internal-icons/icons/duo/ConnectPlus.d.ts +0 -7
  284. package/dist/internal-icons/icons/duo/ConnectPlus.js +0 -13
  285. package/dist/internal-icons/icons/duo/Connection3.d.ts +0 -7
  286. package/dist/internal-icons/icons/duo/Connection3.js +0 -13
  287. package/dist/internal-icons/icons/duo/CopyDelete.d.ts +0 -7
  288. package/dist/internal-icons/icons/duo/CopyDelete.js +0 -13
  289. package/dist/internal-icons/icons/duo/CopyId.d.ts +0 -7
  290. package/dist/internal-icons/icons/duo/CopyId.js +0 -13
  291. package/dist/internal-icons/icons/duo/Deaf.d.ts +0 -7
  292. package/dist/internal-icons/icons/duo/Deaf.js +0 -13
  293. package/dist/internal-icons/icons/duo/DependencyLink.d.ts +0 -7
  294. package/dist/internal-icons/icons/duo/DependencyLink.js +0 -13
  295. package/dist/internal-icons/icons/duo/DesktopDock.d.ts +0 -7
  296. package/dist/internal-icons/icons/duo/DesktopDock.js +0 -13
  297. package/dist/internal-icons/icons/duo/DiamondSparkle.d.ts +0 -7
  298. package/dist/internal-icons/icons/duo/DiamondSparkle.js +0 -13
  299. package/dist/internal-icons/icons/duo/DocumentScan.d.ts +0 -7
  300. package/dist/internal-icons/icons/duo/DocumentScan.js +0 -13
  301. package/dist/internal-icons/icons/duo/Dog2.d.ts +0 -7
  302. package/dist/internal-icons/icons/duo/Dog2.js +0 -13
  303. package/dist/internal-icons/icons/duo/DogLeash.d.ts +0 -7
  304. package/dist/internal-icons/icons/duo/DogLeash.js +0 -13
  305. package/dist/internal-icons/icons/duo/DogSlash.d.ts +0 -7
  306. package/dist/internal-icons/icons/duo/DogSlash.js +0 -13
  307. package/dist/internal-icons/icons/duo/DotFormation.d.ts +0 -7
  308. package/dist/internal-icons/icons/duo/DotFormation.js +0 -13
  309. package/dist/internal-icons/icons/duo/DrawFinger.d.ts +0 -7
  310. package/dist/internal-icons/icons/duo/DrawFinger.js +0 -13
  311. package/dist/internal-icons/icons/duo/Ear.d.ts +0 -7
  312. package/dist/internal-icons/icons/duo/Ear.js +0 -13
  313. package/dist/internal-icons/icons/duo/EarSound.d.ts +0 -7
  314. package/dist/internal-icons/icons/duo/EarSound.js +0 -13
  315. package/dist/internal-icons/icons/duo/Embed.js +0 -13
  316. package/dist/internal-icons/icons/duo/EnterDoor.d.ts +0 -7
  317. package/dist/internal-icons/icons/duo/EnterDoor.js +0 -13
  318. package/dist/internal-icons/icons/duo/EnterHome.d.ts +0 -7
  319. package/dist/internal-icons/icons/duo/EnterHome.js +0 -13
  320. package/dist/internal-icons/icons/duo/ExitDoor.d.ts +0 -7
  321. package/dist/internal-icons/icons/duo/ExitDoor.js +0 -13
  322. package/dist/internal-icons/icons/duo/Export2.d.ts +0 -7
  323. package/dist/internal-icons/icons/duo/Export2.js +0 -13
  324. package/dist/internal-icons/icons/duo/EyeSparkle.d.ts +0 -7
  325. package/dist/internal-icons/icons/duo/EyeSparkle.js +0 -13
  326. package/dist/internal-icons/icons/duo/FaceRobot.d.ts +0 -7
  327. package/dist/internal-icons/icons/duo/FaceRobot.js +0 -13
  328. package/dist/internal-icons/icons/duo/FaceRobot2.d.ts +0 -7
  329. package/dist/internal-icons/icons/duo/FaceRobot2.js +0 -13
  330. package/dist/internal-icons/icons/duo/FaceRobot3.d.ts +0 -7
  331. package/dist/internal-icons/icons/duo/FaceRobot3.js +0 -13
  332. package/dist/internal-icons/icons/duo/FerrisWheel.d.ts +0 -7
  333. package/dist/internal-icons/icons/duo/FerrisWheel.js +0 -13
  334. package/dist/internal-icons/icons/duo/FileExport.d.ts +0 -7
  335. package/dist/internal-icons/icons/duo/FileExport.js +0 -13
  336. package/dist/internal-icons/icons/duo/FlagMenu.d.ts +0 -7
  337. package/dist/internal-icons/icons/duo/FlagMenu.js +0 -13
  338. package/dist/internal-icons/icons/duo/FocusCenter.d.ts +0 -7
  339. package/dist/internal-icons/icons/duo/FocusCenter.js +0 -13
  340. package/dist/internal-icons/icons/duo/FoodOrder.d.ts +0 -7
  341. package/dist/internal-icons/icons/duo/FoodOrder.js +0 -13
  342. package/dist/internal-icons/icons/duo/FuelCan.d.ts +0 -7
  343. package/dist/internal-icons/icons/duo/FuelCan.js +0 -13
  344. package/dist/internal-icons/icons/duo/FuelCan2.d.ts +0 -7
  345. package/dist/internal-icons/icons/duo/FuelCan2.js +0 -13
  346. package/dist/internal-icons/icons/duo/Gear3Sparkle.d.ts +0 -7
  347. package/dist/internal-icons/icons/duo/Gear3Sparkle.js +0 -13
  348. package/dist/internal-icons/icons/duo/GridSparkle.d.ts +0 -7
  349. package/dist/internal-icons/icons/duo/GridSparkle.js +0 -13
  350. package/dist/internal-icons/icons/duo/HandHoldingGlobe.d.ts +0 -7
  351. package/dist/internal-icons/icons/duo/HandHoldingGlobe.js +0 -13
  352. package/dist/internal-icons/icons/duo/Handshake2.d.ts +0 -7
  353. package/dist/internal-icons/icons/duo/Handshake2.js +0 -13
  354. package/dist/internal-icons/icons/duo/Haptic.d.ts +0 -7
  355. package/dist/internal-icons/icons/duo/Haptic.js +0 -13
  356. package/dist/internal-icons/icons/duo/HelpChat.d.ts +0 -7
  357. package/dist/internal-icons/icons/duo/HelpChat.js +0 -13
  358. package/dist/internal-icons/icons/duo/HexagonSparkle.d.ts +0 -7
  359. package/dist/internal-icons/icons/duo/HexagonSparkle.js +0 -13
  360. package/dist/internal-icons/icons/duo/Hiking.d.ts +0 -7
  361. package/dist/internal-icons/icons/duo/Hiking.js +0 -13
  362. package/dist/internal-icons/icons/duo/History2.d.ts +0 -7
  363. package/dist/internal-icons/icons/duo/History2.js +0 -13
  364. package/dist/internal-icons/icons/duo/HorseHead.d.ts +0 -7
  365. package/dist/internal-icons/icons/duo/HorseHead.js +0 -13
  366. package/dist/internal-icons/icons/duo/HouseDollarSign.d.ts +0 -7
  367. package/dist/internal-icons/icons/duo/HouseDollarSign.js +0 -13
  368. package/dist/internal-icons/icons/duo/HouseMinus2.d.ts +0 -7
  369. package/dist/internal-icons/icons/duo/HouseMinus2.js +0 -13
  370. package/dist/internal-icons/icons/duo/Images3.d.ts +0 -7
  371. package/dist/internal-icons/icons/duo/Images3.js +0 -13
  372. package/dist/internal-icons/icons/duo/Img4k.js +0 -13
  373. package/dist/internal-icons/icons/duo/InsertCrypto.d.ts +0 -7
  374. package/dist/internal-icons/icons/duo/InsertCrypto.js +0 -13
  375. package/dist/internal-icons/icons/duo/InsertDollar.d.ts +0 -7
  376. package/dist/internal-icons/icons/duo/InsertDollar.js +0 -13
  377. package/dist/internal-icons/icons/duo/InstantMoney.d.ts +0 -7
  378. package/dist/internal-icons/icons/duo/InstantMoney.js +0 -13
  379. package/dist/internal-icons/icons/duo/InvoiceIn.d.ts +0 -7
  380. package/dist/internal-icons/icons/duo/InvoiceIn.js +0 -13
  381. package/dist/internal-icons/icons/duo/InwardFlow.d.ts +0 -7
  382. package/dist/internal-icons/icons/duo/InwardFlow.js +0 -13
  383. package/dist/internal-icons/icons/duo/JoinedHands.d.ts +0 -7
  384. package/dist/internal-icons/icons/duo/JoinedHands.js +0 -13
  385. package/dist/internal-icons/icons/duo/LawShield.d.ts +0 -7
  386. package/dist/internal-icons/icons/duo/LawShield.js +0 -13
  387. package/dist/internal-icons/icons/duo/Lectern.d.ts +0 -7
  388. package/dist/internal-icons/icons/duo/Lectern.js +0 -13
  389. package/dist/internal-icons/icons/duo/Lectern2.d.ts +0 -7
  390. package/dist/internal-icons/icons/duo/Lectern2.js +0 -13
  391. package/dist/internal-icons/icons/duo/LightSpark.d.ts +0 -7
  392. package/dist/internal-icons/icons/duo/LightSpark.js +0 -13
  393. package/dist/internal-icons/icons/duo/LightSpark2.d.ts +0 -7
  394. package/dist/internal-icons/icons/duo/LightSpark2.js +0 -13
  395. package/dist/internal-icons/icons/duo/ListExport.d.ts +0 -7
  396. package/dist/internal-icons/icons/duo/ListExport.js +0 -13
  397. package/dist/internal-icons/icons/duo/ListFavs3.d.ts +0 -7
  398. package/dist/internal-icons/icons/duo/ListFavs3.js +0 -13
  399. package/dist/internal-icons/icons/duo/ListFavs4.d.ts +0 -7
  400. package/dist/internal-icons/icons/duo/ListFavs4.js +0 -13
  401. package/dist/internal-icons/icons/duo/LoadingStatus.d.ts +0 -7
  402. package/dist/internal-icons/icons/duo/LoadingStatus.js +0 -13
  403. package/dist/internal-icons/icons/duo/LoadingStatus2.d.ts +0 -7
  404. package/dist/internal-icons/icons/duo/LoadingStatus2.js +0 -13
  405. package/dist/internal-icons/icons/duo/LockedChat.d.ts +0 -7
  406. package/dist/internal-icons/icons/duo/LockedChat.js +0 -13
  407. package/dist/internal-icons/icons/duo/MagicHat.d.ts +0 -7
  408. package/dist/internal-icons/icons/duo/MagicHat.js +0 -13
  409. package/dist/internal-icons/icons/duo/MagicRabbit.d.ts +0 -7
  410. package/dist/internal-icons/icons/duo/MagicRabbit.js +0 -13
  411. package/dist/internal-icons/icons/duo/MagnifierSparkle2.d.ts +0 -7
  412. package/dist/internal-icons/icons/duo/MagnifierSparkle2.js +0 -13
  413. package/dist/internal-icons/icons/duo/MediaLibrary2.d.ts +0 -7
  414. package/dist/internal-icons/icons/duo/MediaLibrary2.js +0 -13
  415. package/dist/internal-icons/icons/duo/Membership.d.ts +0 -7
  416. package/dist/internal-icons/icons/duo/Membership.js +0 -13
  417. package/dist/internal-icons/icons/duo/Menu4.d.ts +0 -7
  418. package/dist/internal-icons/icons/duo/Menu4.js +0 -13
  419. package/dist/internal-icons/icons/duo/MilitaryMedal.d.ts +0 -7
  420. package/dist/internal-icons/icons/duo/MilitaryMedal.js +0 -13
  421. package/dist/internal-icons/icons/duo/MobileCircuit.d.ts +0 -7
  422. package/dist/internal-icons/icons/duo/MobileCircuit.js +0 -13
  423. package/dist/internal-icons/icons/duo/MoneyRefund.d.ts +0 -7
  424. package/dist/internal-icons/icons/duo/MoneyRefund.js +0 -13
  425. package/dist/internal-icons/icons/duo/MoneyRefund2.d.ts +0 -7
  426. package/dist/internal-icons/icons/duo/MoneyRefund2.js +0 -13
  427. package/dist/internal-icons/icons/duo/MotionAlongPath.d.ts +0 -7
  428. package/dist/internal-icons/icons/duo/MotionAlongPath.js +0 -13
  429. package/dist/internal-icons/icons/duo/Msgs2.d.ts +0 -7
  430. package/dist/internal-icons/icons/duo/Msgs2.js +0 -13
  431. package/dist/internal-icons/icons/duo/Navigation.d.ts +0 -7
  432. package/dist/internal-icons/icons/duo/Navigation.js +0 -13
  433. package/dist/internal-icons/icons/duo/NavigationHorizontal.d.ts +0 -7
  434. package/dist/internal-icons/icons/duo/NavigationHorizontal.js +0 -13
  435. package/dist/internal-icons/icons/duo/NavigationVertical.d.ts +0 -7
  436. package/dist/internal-icons/icons/duo/NavigationVertical.js +0 -13
  437. package/dist/internal-icons/icons/duo/ObjectSelection.d.ts +0 -7
  438. package/dist/internal-icons/icons/duo/ObjectSelection.js +0 -13
  439. package/dist/internal-icons/icons/duo/OfficeUser.d.ts +0 -7
  440. package/dist/internal-icons/icons/duo/OfficeUser.js +0 -13
  441. package/dist/internal-icons/icons/duo/OpenExternal.d.ts +0 -7
  442. package/dist/internal-icons/icons/duo/OpenExternal.js +0 -13
  443. package/dist/internal-icons/icons/duo/OrbitSparkle.d.ts +0 -7
  444. package/dist/internal-icons/icons/duo/OrbitSparkle.js +0 -13
  445. package/dist/internal-icons/icons/duo/OutwardFlow.d.ts +0 -7
  446. package/dist/internal-icons/icons/duo/OutwardFlow.js +0 -13
  447. package/dist/internal-icons/icons/duo/PaperPlaneFast.d.ts +0 -7
  448. package/dist/internal-icons/icons/duo/PaperPlaneFast.js +0 -13
  449. package/dist/internal-icons/icons/duo/Parachute.d.ts +0 -7
  450. package/dist/internal-icons/icons/duo/Parachute.js +0 -13
  451. package/dist/internal-icons/icons/duo/Paw.d.ts +0 -7
  452. package/dist/internal-icons/icons/duo/Paw.js +0 -13
  453. package/dist/internal-icons/icons/duo/Peace.d.ts +0 -7
  454. package/dist/internal-icons/icons/duo/Peace.js +0 -13
  455. package/dist/internal-icons/icons/duo/PicnicTable.d.ts +0 -7
  456. package/dist/internal-icons/icons/duo/PicnicTable.js +0 -13
  457. package/dist/internal-icons/icons/duo/Pillow.d.ts +0 -7
  458. package/dist/internal-icons/icons/duo/Pillow.js +0 -13
  459. package/dist/internal-icons/icons/duo/Playground.d.ts +0 -7
  460. package/dist/internal-icons/icons/duo/Playground.js +0 -13
  461. package/dist/internal-icons/icons/duo/Playlist4.d.ts +0 -7
  462. package/dist/internal-icons/icons/duo/Playlist4.js +0 -13
  463. package/dist/internal-icons/icons/duo/Plug3.d.ts +0 -7
  464. package/dist/internal-icons/icons/duo/Plug3.js +0 -13
  465. package/dist/internal-icons/icons/duo/Plug3Sparkle.d.ts +0 -7
  466. package/dist/internal-icons/icons/duo/Plug3Sparkle.js +0 -13
  467. package/dist/internal-icons/icons/duo/PlugOff.d.ts +0 -7
  468. package/dist/internal-icons/icons/duo/PlugOff.js +0 -13
  469. package/dist/internal-icons/icons/duo/PlugSparkle.d.ts +0 -7
  470. package/dist/internal-icons/icons/duo/PlugSparkle.js +0 -13
  471. package/dist/internal-icons/icons/duo/PopEffect.d.ts +0 -7
  472. package/dist/internal-icons/icons/duo/PopEffect.js +0 -13
  473. package/dist/internal-icons/icons/duo/ProfileAnalytics.d.ts +0 -7
  474. package/dist/internal-icons/icons/duo/ProfileAnalytics.js +0 -13
  475. package/dist/internal-icons/icons/duo/ProfileBasic.d.ts +0 -7
  476. package/dist/internal-icons/icons/duo/ProgressIndicator2.d.ts +0 -7
  477. package/dist/internal-icons/icons/duo/ProgressIndicator2.js +0 -13
  478. package/dist/internal-icons/icons/duo/QuickActions.d.ts +0 -7
  479. package/dist/internal-icons/icons/duo/QuickActions.js +0 -13
  480. package/dist/internal-icons/icons/duo/QuickTimer.d.ts +0 -7
  481. package/dist/internal-icons/icons/duo/QuickTimer.js +0 -13
  482. package/dist/internal-icons/icons/duo/Rabbit.d.ts +0 -7
  483. package/dist/internal-icons/icons/duo/Rabbit.js +0 -13
  484. package/dist/internal-icons/icons/duo/Receipt3.d.ts +0 -7
  485. package/dist/internal-icons/icons/duo/Receipt3.js +0 -13
  486. package/dist/internal-icons/icons/duo/Receipt4.d.ts +0 -7
  487. package/dist/internal-icons/icons/duo/Receipt4.js +0 -13
  488. package/dist/internal-icons/icons/duo/Redo2.d.ts +0 -7
  489. package/dist/internal-icons/icons/duo/Redo2.js +0 -13
  490. package/dist/internal-icons/icons/duo/Redo3.d.ts +0 -7
  491. package/dist/internal-icons/icons/duo/Redo3.js +0 -13
  492. package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.d.ts +0 -7
  493. package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.js +0 -13
  494. package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.d.ts +0 -7
  495. package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.js +0 -13
  496. package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.d.ts +0 -7
  497. package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.js +0 -13
  498. package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.d.ts +0 -7
  499. package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.js +0 -13
  500. package/dist/internal-icons/icons/duo/Refrigerator.d.ts +0 -7
  501. package/dist/internal-icons/icons/duo/Refrigerator.js +0 -13
  502. package/dist/internal-icons/icons/duo/RemoteControl.d.ts +0 -7
  503. package/dist/internal-icons/icons/duo/RemoteControl.js +0 -13
  504. package/dist/internal-icons/icons/duo/RemoteControl2.d.ts +0 -7
  505. package/dist/internal-icons/icons/duo/RemoteControl2.js +0 -13
  506. package/dist/internal-icons/icons/duo/ReportFile.d.ts +0 -7
  507. package/dist/internal-icons/icons/duo/ReportFile.js +0 -13
  508. package/dist/internal-icons/icons/duo/Reposition.d.ts +0 -7
  509. package/dist/internal-icons/icons/duo/Reposition.js +0 -13
  510. package/dist/internal-icons/icons/duo/Rerouting.d.ts +0 -7
  511. package/dist/internal-icons/icons/duo/Rerouting.js +0 -13
  512. package/dist/internal-icons/icons/duo/Robot2.d.ts +0 -7
  513. package/dist/internal-icons/icons/duo/Robot2.js +0 -13
  514. package/dist/internal-icons/icons/duo/Robot3.d.ts +0 -7
  515. package/dist/internal-icons/icons/duo/Robot3.js +0 -13
  516. package/dist/internal-icons/icons/duo/Robot4.d.ts +0 -7
  517. package/dist/internal-icons/icons/duo/Robot4.js +0 -13
  518. package/dist/internal-icons/icons/duo/RockOn.d.ts +0 -7
  519. package/dist/internal-icons/icons/duo/RockOn.js +0 -13
  520. package/dist/internal-icons/icons/duo/RopeStanchions.d.ts +0 -7
  521. package/dist/internal-icons/icons/duo/RopeStanchions.js +0 -13
  522. package/dist/internal-icons/icons/duo/Rotation3602.d.ts +0 -7
  523. package/dist/internal-icons/icons/duo/Rotation3602.js +0 -13
  524. package/dist/internal-icons/icons/duo/SavedItems2.d.ts +0 -7
  525. package/dist/internal-icons/icons/duo/SavedItems2.js +0 -13
  526. package/dist/internal-icons/icons/duo/ScaleImg4k.d.ts +0 -7
  527. package/dist/internal-icons/icons/duo/ScaleImg4k.js +0 -13
  528. package/dist/internal-icons/icons/duo/ScanImage.d.ts +0 -7
  529. package/dist/internal-icons/icons/duo/ScanImage.js +0 -13
  530. package/dist/internal-icons/icons/duo/ScissorsSparkle.d.ts +0 -7
  531. package/dist/internal-icons/icons/duo/ScissorsSparkle.js +0 -13
  532. package/dist/internal-icons/icons/duo/Seatbelt.d.ts +0 -7
  533. package/dist/internal-icons/icons/duo/Seatbelt.js +0 -13
  534. package/dist/internal-icons/icons/duo/ShakaHand.d.ts +0 -7
  535. package/dist/internal-icons/icons/duo/ShakaHand.js +0 -13
  536. package/dist/internal-icons/icons/duo/ShapeRectangle.d.ts +0 -7
  537. package/dist/internal-icons/icons/duo/Shovel.d.ts +0 -7
  538. package/dist/internal-icons/icons/duo/Shovel.js +0 -13
  539. package/dist/internal-icons/icons/duo/ShuffleSparkle.d.ts +0 -7
  540. package/dist/internal-icons/icons/duo/ShuffleSparkle.js +0 -13
  541. package/dist/internal-icons/icons/duo/SideProfileQuestion.d.ts +0 -7
  542. package/dist/internal-icons/icons/duo/SideProfileQuestion.js +0 -13
  543. package/dist/internal-icons/icons/duo/SideProfileSparkle.d.ts +0 -7
  544. package/dist/internal-icons/icons/duo/SideProfileSparkle.js +0 -13
  545. package/dist/internal-icons/icons/duo/SidebarEdit.d.ts +0 -7
  546. package/dist/internal-icons/icons/duo/SidebarEdit.js +0 -13
  547. package/dist/internal-icons/icons/duo/SlashCircle.d.ts +0 -7
  548. package/dist/internal-icons/icons/duo/SlashCircle.js +0 -13
  549. package/dist/internal-icons/icons/duo/Sliders4.d.ts +0 -7
  550. package/dist/internal-icons/icons/duo/Sliders4.js +0 -13
  551. package/dist/internal-icons/icons/duo/Snail.d.ts +0 -7
  552. package/dist/internal-icons/icons/duo/Snail.js +0 -13
  553. package/dist/internal-icons/icons/duo/Spiral.d.ts +0 -7
  554. package/dist/internal-icons/icons/duo/Spiral.js +0 -13
  555. package/dist/internal-icons/icons/duo/SplitView.d.ts +0 -7
  556. package/dist/internal-icons/icons/duo/SplitView.js +0 -13
  557. package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.d.ts +0 -7
  558. package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.js +0 -13
  559. package/dist/internal-icons/icons/duo/SquareDashedText.d.ts +0 -7
  560. package/dist/internal-icons/icons/duo/SquareDashedText.js +0 -13
  561. package/dist/internal-icons/icons/duo/SquarePath.d.ts +0 -7
  562. package/dist/internal-icons/icons/duo/SquarePath.js +0 -13
  563. package/dist/internal-icons/icons/duo/Star2Slash.d.ts +0 -7
  564. package/dist/internal-icons/icons/duo/Star2Slash.js +0 -13
  565. package/dist/internal-icons/icons/duo/StopSign.d.ts +0 -7
  566. package/dist/internal-icons/icons/duo/StopSign.js +0 -13
  567. package/dist/internal-icons/icons/duo/StopwatchBolt.d.ts +0 -7
  568. package/dist/internal-icons/icons/duo/StopwatchBolt.js +0 -13
  569. package/dist/internal-icons/icons/duo/SummitFlag.d.ts +0 -7
  570. package/dist/internal-icons/icons/duo/SummitFlag.js +0 -13
  571. package/dist/internal-icons/icons/duo/Sunrise2.d.ts +0 -7
  572. package/dist/internal-icons/icons/duo/Sunrise2.js +0 -13
  573. package/dist/internal-icons/icons/duo/Task.js +0 -13
  574. package/dist/internal-icons/icons/duo/Task2.d.ts +0 -7
  575. package/dist/internal-icons/icons/duo/Task2.js +0 -13
  576. package/dist/internal-icons/icons/duo/TaskDebug.d.ts +0 -7
  577. package/dist/internal-icons/icons/duo/TaskDebug.js +0 -13
  578. package/dist/internal-icons/icons/duo/TaskSearch.d.ts +0 -7
  579. package/dist/internal-icons/icons/duo/TaskSearch.js +0 -13
  580. package/dist/internal-icons/icons/duo/Teepee.d.ts +0 -7
  581. package/dist/internal-icons/icons/duo/Teepee.js +0 -13
  582. package/dist/internal-icons/icons/duo/TextAdjust.d.ts +0 -7
  583. package/dist/internal-icons/icons/duo/TextAdjust.js +0 -13
  584. package/dist/internal-icons/icons/duo/TheatreMask.d.ts +0 -7
  585. package/dist/internal-icons/icons/duo/TheatreMask.js +0 -13
  586. package/dist/internal-icons/icons/duo/TheatreMask2.d.ts +0 -7
  587. package/dist/internal-icons/icons/duo/TheatreMask2.js +0 -13
  588. package/dist/internal-icons/icons/duo/TimerProgress.d.ts +0 -7
  589. package/dist/internal-icons/icons/duo/TimerProgress.js +0 -13
  590. package/dist/internal-icons/icons/duo/TimerProgress2.d.ts +0 -7
  591. package/dist/internal-icons/icons/duo/TimerProgress2.js +0 -13
  592. package/dist/internal-icons/icons/duo/TransactionSplit.d.ts +0 -7
  593. package/dist/internal-icons/icons/duo/TransactionSplit.js +0 -13
  594. package/dist/internal-icons/icons/duo/Undo2.d.ts +0 -7
  595. package/dist/internal-icons/icons/duo/Undo2.js +0 -13
  596. package/dist/internal-icons/icons/duo/Undo3.d.ts +0 -7
  597. package/dist/internal-icons/icons/duo/Undo3.js +0 -13
  598. package/dist/internal-icons/icons/duo/UnicornHead.d.ts +0 -7
  599. package/dist/internal-icons/icons/duo/UnicornHead.js +0 -13
  600. package/dist/internal-icons/icons/duo/UserContact.d.ts +0 -7
  601. package/dist/internal-icons/icons/duo/UserContact.js +0 -13
  602. package/dist/internal-icons/icons/duo/UserVoice2.d.ts +0 -7
  603. package/dist/internal-icons/icons/duo/UserVoice2.js +0 -13
  604. package/dist/internal-icons/icons/duo/VipBadge.d.ts +0 -7
  605. package/dist/internal-icons/icons/duo/VipBadge.js +0 -13
  606. package/dist/internal-icons/icons/duo/VoiceCaption.d.ts +0 -7
  607. package/dist/internal-icons/icons/duo/VoiceCaption.js +0 -13
  608. package/dist/internal-icons/icons/duo/WalletCoins.d.ts +0 -7
  609. package/dist/internal-icons/icons/duo/WalletCoins.js +0 -13
  610. package/dist/internal-icons/icons/duo/Weight.d.ts +0 -7
  611. package/dist/internal-icons/icons/duo/Weight.js +0 -13
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Navigation = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9 1C4.589 1 1 4.589 1 9c0 3.218 1.914 5.99 4.659 7.26l3.247-2.791 3.652 2.686C15.186 14.842 17 12.132 17 9c0-4.411-3.589-8-8-8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m13.643 15.393-3.619-7.786c-.187-.403-.58-.654-1.024-.654s-.837.25-1.024.654l-3.619 7.785a1.13 1.13 0 0 0 1.541 1.48L9 15.276l3.101 1.598a1.13 1.13 0 0 0 1.542-1.48" })] }) }));
11
- });
12
- Navigation.displayName = 'Navigation';
13
- export default Navigation;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface NavigationHorizontalProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const NavigationHorizontal: React.ForwardRefExoticComponent<Omit<NavigationHorizontalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default NavigationHorizontal;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const NavigationHorizontal = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "4.5", height: "4.5", x: "6.75", y: "2", rx: "1.5", ry: "1.5" }), _jsx("path", { d: "M15.5 2H14c-.827 0-1.5.673-1.5 1.5V5c0 .827.673 1.5 1.5 1.5h1.5c.827 0 1.5-.673 1.5-1.5V3.5c0-.827-.673-1.5-1.5-1.5m-10 3V3.5C5.5 2.673 4.827 2 4 2H2.5C1.673 2 1 2.673 1 3.5V5c0 .827.673 1.5 1.5 1.5H4c.827 0 1.5-.673 1.5-1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M10.559 8.066 3.705 10.57a1.073 1.073 0 0 0 .041 2.03l2.769.885.885 2.769a1.073 1.073 0 0 0 2.03.041l2.504-6.854a1.06 1.06 0 0 0-.249-1.126 1.06 1.06 0 0 0-1.126-.25" })] }) }));
11
- });
12
- NavigationHorizontal.displayName = 'NavigationHorizontal';
13
- export default NavigationHorizontal;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface NavigationVerticalProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const NavigationVertical: React.ForwardRefExoticComponent<Omit<NavigationVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default NavigationVertical;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const NavigationVertical = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "4.5", height: "4.5", x: "2", y: "6.75", rx: "1.5", ry: "1.5" }), _jsx("path", { d: "M5 1H3.5C2.673 1 2 1.673 2 2.5V4c0 .827.673 1.5 1.5 1.5H5c.827 0 1.5-.673 1.5-1.5V2.5C6.5 1.673 5.827 1 5 1m0 11.5H3.5c-.827 0-1.5.673-1.5 1.5v1.5c0 .827.673 1.5 1.5 1.5H5c.827 0 1.5-.673 1.5-1.5V14c0-.827-.673-1.5-1.5-1.5M3.499 14", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.295 8.57 9.441 6.066c-.395-.144-.828-.05-1.126.249s-.394.73-.25 1.126l2.505 6.854c.155.424.558.705 1.008.705h.022c.458-.1.86-.31 1-.746l.885-2.769 2.769-.885a1.073 1.073 0 0 0 .041-2.03" })] }) }));
11
- });
12
- NavigationVertical.displayName = 'NavigationVertical';
13
- export default NavigationVertical;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface ObjectSelectionProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const ObjectSelection: React.ForwardRefExoticComponent<Omit<ObjectSelectionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default ObjectSelection;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const ObjectSelection = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.25 16.5h-.75a.75.75 0 0 1 0-1.5h.75a.75.75 0 0 0 .75-.75v-.75a.75.75 0 0 1 1.5 0v.75c0 1.24-1.01 2.25-2.25 2.25m-3.75 0h-.75c-1.24 0-2.25-1.01-2.25-2.25v-.75a.75.75 0 0 1 1.5 0v.75c0 .414.337.75.75.75h.75a.75.75 0 0 1 0 1.5m5.25-5.25a.75.75 0 0 1-.75-.75v-.75a.75.75 0 0 0-.75-.75h-.75a.75.75 0 0 1 0-1.5h.75c1.24 0 2.25 1.01 2.25 2.25v.75a.75.75 0 0 1-.75.75m-7.5 0a.75.75 0 0 1-.75-.75v-.75c0-1.24 1.01-2.25 2.25-2.25h.75a.75.75 0 0 1 0 1.5h-.75a.75.75 0 0 0-.75.75v.75a.75.75 0 0 1-.75.75" }), _jsx("path", { d: "M15.068 1.5h-1.636c-.79 0-1.432.641-1.432 1.432V3H6v-.068C6 2.142 5.359 1.5 4.568 1.5H2.932c-.79 0-1.432.641-1.432 1.432v1.636C1.5 5.358 2.141 6 2.932 6H3v6h-.068c-.79 0-1.432.641-1.432 1.432v1.636c0 .79.641 1.432 1.432 1.432h1.636c.79 0 1.432-.641 1.432-1.432v-1.636C6 12.641 5.359 12 4.568 12H4.5V6h.068C5.358 6 6 5.359 6 4.568V4.5h6v.068C12 5.358 12.641 6 13.432 6h1.636c.79 0 1.432-.641 1.432-1.432V2.932c0-.79-.641-1.432-1.432-1.432", "data-color": "color-2", opacity: ".4" })] }) }));
11
- });
12
- ObjectSelection.displayName = 'ObjectSelection';
13
- export default ObjectSelection;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface OfficeUserProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const OfficeUser: React.ForwardRefExoticComponent<Omit<OfficeUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default OfficeUser;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const OfficeUser = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M8.793 14.852a4.98 4.98 0 0 1 2.224-2.67A3 3 0 0 1 10.5 10.5c0-1.654 1.346-3 3-3 .772 0 1.469.3 2.001.781V4.88c0-.67-.39-1.29-.995-1.579L9.754 1.03a1.75 1.75 0 0 0-1.509 0l-4.75 2.272A1.76 1.76 0 0 0 2.5 4.88V15.5h-.75a.75.75 0 0 0 0 1.5h7.216a2.73 2.73 0 0 1-.173-2.148", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 8a.75.75 0 0 1-.75-.75v-.5a.75.75 0 0 1 1.5 0v.5A.75.75 0 0 1 9 8M6.25 8a.75.75 0 0 1-.75-.75v-.5a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-.75.75m5.5 0a.75.75 0 0 1-.75-.75v-.5a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-.75.75M9 11.25a.75.75 0 0 1-.75-.75V10a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-.75.75m-2.75 0a.75.75 0 0 1-.75-.75V10A.75.75 0 0 1 7 10v.5a.75.75 0 0 1-.75.75M15.601 17H11.4c-.407 0-.79-.199-1.027-.532a1.24 1.24 0 0 1-.162-1.123C10.698 13.943 12.02 13 13.5 13s2.802.943 3.291 2.346c.13.375.7.795-.163 1.122-.236.333-.62.532-1.027.532" }), _jsx("circle", { cx: "13.5", cy: "10.5", r: "1.5" })] }) }));
11
- });
12
- OfficeUser.displayName = 'OfficeUser';
13
- export default OfficeUser;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface OpenExternalProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const OpenExternal: React.ForwardRefExoticComponent<Omit<OpenExternalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default OpenExternal;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const OpenExternal = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.5 10.25v-6a2.75 2.75 0 0 0-2.75-2.75h-6A2.75 2.75 0 0 0 5 4.25v6A2.75 2.75 0 0 0 7.75 13h6a2.75 2.75 0 0 0 2.75-2.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M13 13.75V13H7.75A2.753 2.753 0 0 1 5 10.25V5h-.75A2.753 2.753 0 0 0 1.5 7.75v6a2.753 2.753 0 0 0 2.75 2.75h6A2.753 2.753 0 0 0 13 13.75", "data-color": "color-2" }), _jsx("path", { d: "M12.75 4.5h-3a.75.75 0 0 0 0 1.5h1.19L8.47 8.47a.75.75 0 1 0 1.06 1.06L12 7.06v1.19a.75.75 0 0 0 1.5 0v-3a.75.75 0 0 0-.75-.75" })] }) }));
11
- });
12
- OpenExternal.displayName = 'OpenExternal';
13
- export default OpenExternal;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface OrbitSparkleProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const OrbitSparkle: React.ForwardRefExoticComponent<Omit<OrbitSparkleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default OrbitSparkle;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const OrbitSparkle = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m14.659 12.99-1.263-.421-.421-1.263c-.137-.408-.812-.408-.949 0l-.421 1.263-1.263.42a.5.5 0 0 0 0 .949l1.263.42.421 1.264a.501.501 0 0 0 .95 0l.421-1.263 1.263-.421a.5.5 0 0 0-.001-.948M4.214 6.786l.56 2.153a.75.75 0 0 0 1.452 0l.56-2.153 2.153-.56a.75.75 0 0 0 0-1.452l-2.153-.56-.56-2.153a.75.75 0 0 0-1.452 0l-.56 2.153-2.153.56a.75.75 0 0 0 0 1.452z" }), _jsx("path", { d: "M7.985 14.252c-1.56.463-2.914.273-3.711-.525-.728-.728-.953-1.9-.634-3.3a.75.75 0 0 0-1.463-.333c-.437 1.921-.07 3.588 1.036 4.693.8.801 1.91 1.214 3.187 1.214.636 0 1.313-.103 2.013-.311a.75.75 0 1 0-.427-1.438Zm6.802-11.039c-1.105-1.106-2.773-1.474-4.692-1.036a.75.75 0 0 0 .333 1.463c1.399-.32 2.57-.094 3.298.633 1.022 1.022 1.04 2.911.045 4.93a.75.75 0 1 0 1.346.662c1.286-2.613 1.16-5.162-.33-6.652", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "9.75", cy: "9.25", r: ".75" })] }) }));
11
- });
12
- OrbitSparkle.displayName = 'OrbitSparkle';
13
- export default OrbitSparkle;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface OutwardFlowProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const OutwardFlow: React.ForwardRefExoticComponent<Omit<OutwardFlowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default OutwardFlow;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const OutwardFlow = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("circle", { cx: "9", cy: "9", r: "3" }), _jsx("path", { d: "M9 1C7.346 1 6 2.346 6 4a.75.75 0 0 0 1.5 0c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5A.75.75 0 0 0 12 4c0-1.654-1.346-3-3-3m5 5a.75.75 0 0 0 0 1.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5a.75.75 0 0 0 0 1.5c1.654 0 3-1.346 3-3s-1.346-3-3-3m-2.75 7.25a.75.75 0 0 0-.75.75c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5A.75.75 0 0 0 6 14c0 1.654 1.346 3 3 3s3-1.346 3-3a.75.75 0 0 0-.75-.75M4 7.5A.75.75 0 0 0 4 6C2.346 6 1 7.346 1 9s1.346 3 3 3a.75.75 0 0 0 0-1.5c-.827 0-1.5-.673-1.5-1.5S3.173 7.5 4 7.5", "data-color": "color-2", opacity: ".4" })] }) }));
11
- });
12
- OutwardFlow.displayName = 'OutwardFlow';
13
- export default OutwardFlow;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PaperPlaneFastProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const PaperPlaneFast: React.ForwardRefExoticComponent<Omit<PaperPlaneFastProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default PaperPlaneFast;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const PaperPlaneFast = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.144 1.856a1.2 1.2 0 0 0-1.227-.297L3.84 5.12c-.46.148-.78.539-.832 1.02-.53.474.18.937.593 1.18l3.425 1.997 4.133-2.755c.184-.123.403.96.28.28l-2.755 4.134 1.996 3.422a1.211 1.211 0 0 0 2.201-.238l3.56-11.077h.002a1.21 1.21 0 0 0-.3-1.227Z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M3.5 16.75a.75.75 0 0 1-.53-1.28l3.25-3.25a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-.53.22m-.5-4a.75.75 0 0 1-.53-1.28l1.5-1.5a.75.75 0 1 1 1.06 1.06l-1.5 1.5a.75.75 0 0 1-.53.22" })] }) }));
11
- });
12
- PaperPlaneFast.displayName = 'PaperPlaneFast';
13
- export default PaperPlaneFast;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface ParachuteProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Parachute: React.ForwardRefExoticComponent<Omit<ParachuteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Parachute;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Parachute = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M12.049 12.239A.75.75 0 0 0 11.5 12h-5a.75.75 0 0 0-.748.803l.184 2.572A1.755 1.755 0 0 0 7.68 17h2.638c.914 0 1.681-.714 1.745-1.625l.184-2.572a.75.75 0 0 0-.2-.564Z" }), _jsx("path", { d: "M16.712 8.22c.018-.24.037-.47.046-.068a.74.74 0 0 0 .116-.53C16.206 3.785 12.894 1 9 1S1.794 3.785 1.126 7.622a.75.75 0 0 0 .19.638l4.455 4.806-.019-.263A.75.75 0 0 1 6.5 12h.327L3.014 7.887c.656-.285 1.314-.132 2.095.46a.75.75 0 0 0 .94-.026c.798-.681 1.455-.746 2.201-.208V12h1.5V8.113c.744-.538 1.4-.472 2.201.208.269.228.66.239.94.27.781-.593 1.44-.746 2.095-.461L11.173 12h.327a.75.75 0 0 1 .748.803l-.19.263 4.456-4.806z", "data-color": "color-2", opacity: ".4" })] }) }));
11
- });
12
- Parachute.displayName = 'Parachute';
13
- export default Parachute;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PawProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Paw: React.ForwardRefExoticComponent<Omit<PawProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Paw;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Paw = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("ellipse", { cx: "6.25", cy: "4.5", rx: "2.25", ry: "3" }), _jsx("ellipse", { cx: "2.75", cy: "8.75", rx: "1.5", ry: "2" }), _jsx("ellipse", { cx: "11.75", cy: "4.5", rx: "2.25", ry: "3" }), _jsx("ellipse", { cx: "15.25", cy: "8.75", rx: "1.5", ry: "2" }), _jsx("path", { d: "M9 8c-2.29 0-5 3.049-5 5.625 0 .64.285 1.263.784 1.709.482.43 1.116.666 1.787.666.82 0 1.277-.281 1.61-.487.265-.164.426-.263.819-.263s.554.1.82.263c.332.206.788.487 1.609.487a2.68 2.68 0 0 0 1.788-.667A2.3 2.3 0 0 0 14 13.625C14 11.049 11.29 8 9 8", "data-color": "color-2", opacity: ".4" })] }) }));
11
- });
12
- Paw.displayName = 'Paw';
13
- export default Paw;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PeaceProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Peace: React.ForwardRefExoticComponent<Omit<PeaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Peace;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Peace = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("circle", { cx: "9", cy: "9", r: "8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9.75 8.69V1.038Q9.38 1.002 9 1c-.38-.002-.503.015-.75.038V8.69L2.84 14.1q.482.579 1.061 1.06l4.349-4.348v6.151q.37.036.75.038c.38.002.503-.15.75-.038v-6.151l4.349 4.348q.579-.481 1.06-1.06z" })] }) }));
11
- });
12
- Peace.displayName = 'Peace';
13
- export default Peace;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PicnicTableProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const PicnicTable: React.ForwardRefExoticComponent<Omit<PicnicTableProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default PicnicTable;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const PicnicTable = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M2.75 15a.75.75 0 0 1-.722-.956l3-10.5a.75.75 0 0 1 1.443.412l-3 10.5a.75.75 0 0 1-.72.544m12.499 0a.75.75 0 0 1-.721-.544l-3-10.5a.75.75 0 1 1 1.442-.412l3 10.5a.75.75 0 0 1-.722.956", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.25 10H1.75a.75.75 0 0 1 0-1.5h14.5a.75.75 0 0 1 0 1.5m-1.5-5.5H3.25a.75.75 0 0 1 0-1.5h11.5a.75.75 0 0 1 0 1.5" })] }) }));
11
- });
12
- PicnicTable.displayName = 'PicnicTable';
13
- export default PicnicTable;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PillowProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Pillow: React.ForwardRefExoticComponent<Omit<PillowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Pillow;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Pillow = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsx("path", { d: "M16.338 12.049a1.2 1.2 0 0 1-.025-.493c.125-.873.187-1.733.187-2.556s-.062-1.683-.187-2.557a1.2 1.2 0 0 1 .025-.49l.603-2.25a1.33 1.33 0 0 0-.347-1.296 1.33 1.33 0 0 0-1.297-.348l-2.416.647q-.226.06-.472.028a25 25 0 0 0-6.82 0q-.244.031-.47-.028l-2.416-.647a1.34 1.34 0 0 0-1.297.348 1.33 1.33 0 0 0-.347 1.296l.603 2.248q.62.235.25.493C1.562 7.317 1.5 8.177 1.5 9s.062 1.683.187 2.557q.37.256-.25.49l-.603 2.25a1.33 1.33 0 0 0 .346 1.296 1.33 1.33 0 0 0 1.298.348l2.416-.648q.225-.6.472-.027c2.34.31 4.476.311 6.82 0q.243-.33.47.028l2.417.647q.176.048.352.047c.35 0 .687-.137.945-.395a1.33 1.33 0 0 0 .346-1.296z", className: "nc-icon-wrapper", "data-color": "color-2", opacity: ".4" }) }));
11
- });
12
- Pillow.displayName = 'Pillow';
13
- export default Pillow;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PlaygroundProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Playground: React.ForwardRefExoticComponent<Omit<PlaygroundProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Playground;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Playground = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9.5 8.5V4.66a1.75 1.75 0 0 0-.62-1.337L6.63 1.42a1.744 1.744 0 0 0-2.26 0L2.12 3.323c-.394.334-.62.82-.62 1.336V16.25a.75.75 0 0 0 1.5 0V13.5h5v2.75a.75.75 0 0 0 1.5 0zM8 12H3v-2h5z", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "5.5", cy: "6", r: "1.5" }), _jsx("path", { d: "M3 10h5v2H3zm6.76 0c.728 0 1.389.459 1.641 1.142l1.291 3.486a3.26 3.26 0 0 0 3.048 2.122h.51a.75.75 0 0 0 0-1.5h-.51a1.76 1.76 0 0 1-1.641-1.142l-1.291-3.486A3.26 3.26 0 0 0 9.76 8.5H9.5V10z" })] }) }));
11
- });
12
- Playground.displayName = 'Playground';
13
- export default Playground;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface Playlist4Props extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Playlist4: React.ForwardRefExoticComponent<Omit<Playlist4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Playlist4;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Playlist4 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M7.75 10.5h-5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5m-5-2.5h12.455a.75.75 0 0 0 0-1.5H2.75a.75.75 0 0 0 0 1.5m0-4h12.5a.75.75 0 0 0 0-1.5H2.75a.75.75 0 0 0 0 1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.124 12.155 11.92 9.677A1.275 1.275 0 0 0 10 10.772v4.956a1.275 1.275 0 0 0 1.92 1.095l4.204-2.478c.393-.23.626-.64.626-1.095s-.233-.864-.626-1.095" })] }) }));
11
- });
12
- Playlist4.displayName = 'Playlist4';
13
- export default Playlist4;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface Plug3Props extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Plug3: React.ForwardRefExoticComponent<Omit<Plug3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Plug3;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Plug3 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M15.427 9.998 8.002 2.573a1.754 1.754 0 0 0-2.475 0L4.29 3.81a7.007 7.007 0 0 0 0 9.9 6.95 6.95 0 0 0 4.95 2.049 6.95 6.95 0 0 0 4.95-2.05l1.237-1.236c.33-.33.512-.77.512-1.238s-.182-.907-.512-1.237", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.29 13.71a7 7 0 0 1-.5-.56l-1.82 1.82a.75.75 0 1 0 1.06 1.06l1.82-1.82a7 7 0 0 1-.56-.5m6.01-8.839 1.592-1.59a.75.75 0 1 0-1.06-1.061L9.238 3.81zm3.89 3.889 1.59-1.59a.75.75 0 1 0-1.06-1.061L13.129 7.7z" })] }) }));
11
- });
12
- Plug3.displayName = 'Plug3';
13
- export default Plug3;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface Plug3SparkleProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Plug3Sparkle: React.ForwardRefExoticComponent<Omit<Plug3SparkleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default Plug3Sparkle;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const Plug3Sparkle = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M15.927 9.498 8.502 2.073a1.754 1.754 0 0 0-2.475 0L4.79 3.31a6.96 6.96 0 0 0-2.027 4.537 2.23 2.23 0 0 1 2.682-.639A2.26 2.26 0 0 1 6.65 9.911l-.36.119a2.25 2.25 0 0 1 1.529 3.437l-.863 1.342c.777.29 1.605.45 2.46.45a6.95 6.95 0 0 0 4.95-2.05l1.237-1.236c.33-.33.513-.77.513-1.238s-.183-.907-.513-1.237", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M6.908 11.89a.75.75 0 0 0-.658-.39H4.597l.62-2.03a.749.749 0 0 0-1.348-.626l-2.25 3.5A.75.75 0 0 0 2.25 13.5h1.653l-.62 2.03a.749.749 0 0 0 1.348.626l2.25-3.5a.75.75 0 0 0 .027-.765m3.892-7.52 1.592-1.59a.75.75 0 1 0-1.06-1.061L9.738 3.31zm3.89 3.889 1.59-1.59a.75.75 0 1 0-1.06-1.061L13.629 7.2z" })] }) }));
11
- });
12
- Plug3Sparkle.displayName = 'Plug3Sparkle';
13
- export default Plug3Sparkle;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PlugOffProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const PlugOff: React.ForwardRefExoticComponent<Omit<PlugOffProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default PlugOff;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const PlugOff = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m10.809 14.24-.4-.4c-.425-.424-.66-.989-.66-1.59s.235-1.166.66-1.59c.425-.426.99-.66 1.59-.66s1.167.234 1.592.66l.409.408.41-.409a2.23 2.23 0 0 1 1.106-.603A7 7 0 0 0 16 7.5V5.75C16 4.785 15.215 4 14.25 4H3.75C2.785 4 2 4.785 2 5.75V7.5c0 3.588 2.716 6.564 6.25 6.944v1.806a.75.75 0 0 0 1.5 0v-1.806a7 7 0 0 0 1.059-.204", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m15.06 14.25 1.47-1.47a.75.75 0 1 0-1.06-1.06L14 13.19l-1.47-1.47a.75.75 0 1 0-1.06 1.06l1.47 1.47-1.47 1.47a.75.75 0 1 0 1.06 1.06L14 15.31l1.47 1.47a.747.747 0 0 0 1.06 0 .75.75 0 0 0 0-1.06zM7 4V1.75a.75.75 0 0 0-1.5 0V4zm5.5 0V1.75a.75.75 0 0 0-1.5 0V4z" })] }) }));
11
- });
12
- PlugOff.displayName = 'PlugOff';
13
- export default PlugOff;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PlugSparkleProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const PlugSparkle: React.ForwardRefExoticComponent<Omit<PlugSparkleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default PlugSparkle;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const PlugSparkle = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.908 4.39A.75.75 0 0 0 16.25 4h-1.653l.62-2.03a.749.749 0 0 0-1.348-.626l-2.25 3.5A.75.75 0 0 0 12.25 6h1.653l-.62 2.03a.749.749 0 0 0 1.348.626l2.25-3.5a.75.75 0 0 0 .027-.765" }), _jsx("path", { d: "M11.78 9.056a.75.75 0 0 0-1.06 0L9.486 10.29 7.71 8.515 8.944 7.28a.75.75 0 1 0-1.06-1.06L6.649 7.454l-.423-.423c-.712-.713-1.954-.712-2.664 0l-.318.317a5.2 5.2 0 0 0-1.534 3.704c0 1.145.382 2.222 1.056 3.122L1.22 15.72a.75.75 0 1 0 1.06 1.06l1.546-1.545a5.2 5.2 0 0 0 3.121 1.056c1.4 0 2.715-.545 3.705-1.534l.318-.319a1.887 1.887 0 0 0 0-2.664l-.424-.424 1.235-1.234a.75.75 0 0 0 0-1.06Z", "data-color": "color-2", opacity: ".4" })] }) }));
11
- });
12
- PlugSparkle.displayName = 'PlugSparkle';
13
- export default PlugSparkle;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface PopEffectProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const PopEffect: React.ForwardRefExoticComponent<Omit<PopEffectProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default PopEffect;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const PopEffect = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m16.744 13.77-.946-.31-.316-.95c-.102-.31-.609-.31-.711 0l-.316.95-.946.31c-.153.05-.257.2-.257.36s.104.3.257.35l.946.32.316.95c.51.15.194.25.355.25s.305-.1.355-.25l.316-.95.946-.32c.153-.5.257-.19.257-.35s-.103-.31-.256-.36M9.492 2.492l-.946-.31-.316-.95c-.102-.31-.609-.31-.711 0l-.316.95-.946.31c-.153.05-.257.2-.257.36s.104.3.257.35l.946.32.316.95c.51.15.194.25.355.25s.305-.1.355-.25l.316-.95.946-.32c.153-.5.257-.19.257-.35s-.103-.31-.256-.36M3.25 15.5c.414 0 .75-.34.75-.75S3.664 14 3.25 14s-.75.34-.75.75.336.75.75.75" }), _jsx("path", { d: "M1.838 12.271a.75.75 0 0 1-.738-.624L.683 9.196l-.002-.014-.003-.014-.667-3.93a.75.75 0 0 1 .613-.865l1.968-.334a2.756 2.756 0 0 1 3.17 2.245 2.73 2.73 0 0 1-.465 2.055c-.425.6-1.059 1-1.784 1.122l-1.228.209.293 1.726a.75.75 0 0 1-.74.875m-.223-6.544.419 2.464 1.228-.208c.33-.56.617-.237.81-.51a1.252 1.252 0 0 0-1.23-1.954zm13.963-.983-1.981-.239a.75.75 0 0 0-.834.656l-.56 4.653C12.122 7.562 10.629 6 8.5 6c-.201 0-.39.02-.572.049a.75.75 0 1 0 .234 1.481A2 2 0 0 1 8.5 7.5c1.637 0 2.218 1.347 2.218 2.5s-.58 2.5-2.218 2.5c-1.467 0-1.95-1.052-2.108-1.679a.75.75 0 0 0-1.455.366C5.374 12.922 6.74 14 8.5 14c1.743 0 3.052-1.052 3.52-2.665l-.34.28a.75.75 0 1 0 1.49.178l.209-1.738 1.236.15a2.73 2.73 0 0 0 2.03-.57 2.73 2.73 0 0 0 1.03-1.839 2.754 2.754 0 0 0-2.403-3.052m.445 3.712a1.24 1.24 0 0 1-.923.259l-1.236-.149.298-2.482 1.237.149a1.252 1.252 0 0 1 .624 2.223", "data-color": "color-2", opacity: ".4" })] }) }));
11
- });
12
- PopEffect.displayName = 'PopEffect';
13
- export default PopEffect;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface ProfileAnalyticsProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const ProfileAnalytics: React.ForwardRefExoticComponent<Omit<ProfileAnalyticsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default ProfileAnalytics;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const ProfileAnalytics = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M15.631 6.815a.75.75 0 0 1-.686-.446 6.5 6.5 0 0 0-3.314-3.314.75.75 0 0 1 .609-1.371 8 8 0 0 1 4.076 4.076.75.75 0 0 1-.685 1.055M9 17c-4.411 0-8-3.589-8-8s3.589-8 8-8a.75.75 0 0 1 0 1.5C5.416 2.5 2.5 5.416 2.5 9s2.916 6.5 6.5 6.5 6.5-2.916 6.5-6.5A.75.75 0 0 1 17 9c0 4.411-3.589 8-8 8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m2.101 5H6.9c-.407 0-.79-.199-1.027-.532a1.24 1.24 0 0 1-.162-1.123C6.198 9.943 7.52 9 9 9s2.802.943 3.291 2.346c.13.375.7.795-.162 1.122a1.26 1.26 0 0 1-1.028.532" })] }) }));
11
- });
12
- ProfileAnalytics.displayName = 'ProfileAnalytics';
13
- export default ProfileAnalytics;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface ProfileBasicProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const ProfileBasic: React.ForwardRefExoticComponent<Omit<ProfileBasicProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default ProfileBasic;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface ProgressIndicator2Props extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const ProgressIndicator2: React.ForwardRefExoticComponent<Omit<ProgressIndicator2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default ProgressIndicator2;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const ProgressIndicator2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9 17c-4.411 0-8-3.589-8-8a7.95 7.95 0 0 1 2.343-5.657.75.75 0 1 1 1.06 1.06A6.46 6.46 0 0 0 2.5 9c0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5a6.508 6.508 0 0 0-7.8-6.37.75.75 0 1 1-.297-1.47A8 8 0 0 1 9 1c4.411 0 8 3.589 8 8s-3.589 8-8 8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 9.75a.75.75 0 0 1-.53-.22L3.343 4.404a.75.75 0 1 1 1.06-1.06L9.53 8.47A.75.75 0 0 1 9 9.75" })] }) }));
11
- });
12
- ProgressIndicator2.displayName = 'ProgressIndicator2';
13
- export default ProgressIndicator2;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import type { SVGProps } from 'react';
3
- export interface QuickActionsProps extends SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const QuickActions: React.ForwardRefExoticComponent<Omit<QuickActionsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
- export default QuickActions;
@@ -1,13 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from 'react';
3
- const QuickActions = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
- const dimensions = size
5
- ? { width: size, height: size }
6
- : {
7
- width: props.width || 18,
8
- height: props.height || 18,
9
- };
10
- return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m15.425 6.57-.615-.216a6 6 0 0 0-.277-.548 6 6 0 0 0-.337-.515l.12-.64a2.36 2.36 0 0 0-1.14-2.477l-.351-.203c-.866-.5-1.957-.4-2.716.25l-.494.422a6.2 6.2 0 0 0-1.23 0L7.89 2.22a2.36 2.36 0 0 0-2.716-.25l-.35.202a2.36 2.36 0 0 0-1.14 2.478l.12.64q-.361.502-.617 1.064l-.611.215A2.365 2.365 0 0 0 1 8.796v.405c0 1 .633 1.894 1.576 2.227l.614.216q.132.297.278.55.147.251.336.512l-.12.642a2.36 2.36 0 0 0 1.14 2.476l.35.204a2.37 2.37 0 0 0 2.717-.251l.493-.423q.612.06 1.228 0l.495.424a2.36 2.36 0 0 0 2.717.25l.35-.203a2.36 2.36 0 0 0 1.14-2.477l-.12-.64q.362-.505.616-1.064l.612-.215a2.365 2.365 0 0 0 1.576-2.227v-.405c0-1-.632-1.894-1.573-2.226", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M11.305 8.337A.63.63 0 0 0 10.75 8H9.412l.61-1.517a.626.626 0 0 0-1.091-.592L6.738 9.016A.626.626 0 0 0 7.25 10h1.338l-.61 1.517a.626.626 0 0 0 1.091.592l2.193-3.125a.63.63 0 0 0 .043-.647" })] }) }));
11
- });
12
- QuickActions.displayName = 'QuickActions';
13
- export default QuickActions;