@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,10 +1,13 @@
1
- export const extractIntrinsicViraProps = (props) => {
2
- const { grow, shrink, ...componentProps } = props;
3
- return {
4
- componentProps,
5
- intrinsicAttributes: {
6
- ...(grow === false ? { 'data-grow': 'false' } : {}),
7
- ...(shrink === false ? { 'data-shrink': 'false' } : {}),
8
- },
9
- };
1
+ //#region src/core/props/intrinsic-vira-props.ts
2
+ var extractIntrinsicViraProps = (props) => {
3
+ const { grow, shrink, ...componentProps } = props;
4
+ return {
5
+ componentProps,
6
+ intrinsicAttributes: {
7
+ ...grow === false ? { "data-grow": "false" } : {},
8
+ ...shrink === false ? { "data-shrink": "false" } : {}
9
+ }
10
+ };
10
11
  };
12
+ //#endregion
13
+ export { extractIntrinsicViraProps };
@@ -1,4 +1,4 @@
1
- import type { ThemeTypes } from '@viraui/foundation/vira/types';
1
+ import { ThemeTypes } from '@viraui/foundation/vira/types';
2
2
  import type * as React from 'react';
3
3
  type AxisPadding = ThemeTypes['space'] | [ThemeTypes['space'] | 0, ThemeTypes['space'] | 0];
4
4
  export declare const resolveAxisPadding: (value: AxisPadding | undefined, startKey: string, endKey: string) => React.CSSProperties;
@@ -1,17 +1,16 @@
1
- import { resolveThemeValue } from '../../core/theme/resolve-theme-value.js';
2
- export const resolveAxisPadding = (value, startKey, endKey) => {
3
- if (!value) {
4
- return {};
5
- }
6
- if (Array.isArray(value)) {
7
- return {
8
- [startKey]: resolveThemeValue(value[0], 'space', 0),
9
- [endKey]: resolveThemeValue(value[1], 'space', 0),
10
- };
11
- }
12
- const resolvedValue = resolveThemeValue(value, 'space', 0);
13
- return {
14
- [startKey]: resolvedValue,
15
- [endKey]: resolvedValue,
16
- };
1
+ import { resolveThemeValue } from "../theme/resolve-theme-value.js";
2
+ //#region src/core/styles/resolve-axis-padding.ts
3
+ var resolveAxisPadding = (value, startKey, endKey) => {
4
+ if (!value) return {};
5
+ if (Array.isArray(value)) return {
6
+ [startKey]: resolveThemeValue(value[0], "space", 0),
7
+ [endKey]: resolveThemeValue(value[1], "space", 0)
8
+ };
9
+ const resolvedValue = resolveThemeValue(value, "space", 0);
10
+ return {
11
+ [startKey]: resolvedValue,
12
+ [endKey]: resolvedValue
13
+ };
17
14
  };
15
+ //#endregion
16
+ export { resolveAxisPadding };
@@ -1,4 +1,4 @@
1
- import theme from '@viraui/foundation/vira/nested';
1
+ import { default as theme } from '@viraui/foundation/vira/nested';
2
2
  type ThemeTree = typeof theme;
3
3
  type ThemeKey = keyof ThemeTree;
4
4
  export declare const resolveThemeValue: <TKey extends ThemeKey, TValue extends keyof ThemeTree[TKey], TFallback>(key: TValue | null | undefined | 0, themeKey: TKey, fallbackValue: TFallback) => ThemeTree[TKey][TValue] | TFallback;
@@ -1,7 +1,8 @@
1
- import theme from '@viraui/foundation/vira/nested';
2
- export const resolveThemeValue = (key, themeKey, fallbackValue) => {
3
- if (!key) {
4
- return fallbackValue;
5
- }
6
- return theme[themeKey][key];
1
+ import theme from "@viraui/foundation/vira/nested";
2
+ //#region src/core/theme/resolve-theme-value.ts
3
+ var resolveThemeValue = (key, themeKey, fallbackValue) => {
4
+ if (!key) return fallbackValue;
5
+ return theme[themeKey][key];
7
6
  };
7
+ //#endregion
8
+ export { resolveThemeValue };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './components/index.js';
2
- export type { IntrinsicViraProps } from './core/props/intrinsic-vira-props.js';
1
+ export * from './components';
2
+ export type { IntrinsicViraProps } from './core/props/intrinsic-vira-props';
package/dist/index.js CHANGED
@@ -1 +1,24 @@
1
- export * from './components/index.js';
1
+ import { Avatar } from "./components/avatar/avatar.js";
2
+ import { ClampText } from "./components/clamp-text/clamp-text.js";
3
+ import { ELEVATION_DEFAULTS } from "./core/elevation/elevation-types.js";
4
+ import { getElevationProps } from "./core/elevation/get-elevation-props.js";
5
+ import { Elevator } from "./components/elevator/elevator.js";
6
+ import { Spinner } from "./components/spinner/spinner.js";
7
+ import { Button } from "./components/button/button.js";
8
+ import { IconButton } from "./components/icon-button/icon-button.js";
9
+ import { Text } from "./components/text/text.js";
10
+ import { Stack } from "./components/stack/stack.js";
11
+ import { LinearProgress } from "./components/linear-progress/linear-progress.js";
12
+ import { Textfield } from "./components/textfield/textfield.js";
13
+ import { Textarea } from "./components/textarea/textarea.js";
14
+ import { Slider } from "./components/slider/slider.js";
15
+ import { Switch } from "./components/switch/switch.js";
16
+ import { Checkbox } from "./components/checkbox/checkbox.js";
17
+ import { Radio } from "./components/radio/radio.js";
18
+ import { RadioGroup } from "./components/radio/radio-group.js";
19
+ import { Icon } from "./components/icon/icon.js";
20
+ import { Select } from "./components/select/select.js";
21
+ import { Skeleton } from "./components/skeleton/skeleton.js";
22
+ import { Surface } from "./components/surface/surface.js";
23
+ import { Title } from "./components/title/title.js";
24
+ export { Avatar, Button, Checkbox, ClampText, ELEVATION_DEFAULTS, Elevator, Icon, IconButton, LinearProgress, Radio, RadioGroup, Select, Skeleton, Slider, Spinner, Stack, Surface, Switch, Text, Textarea, Textfield, Title, getElevationProps };
@@ -2,250 +2,44 @@ import type { ComponentType, SVGProps } from 'react';
2
2
  export type GeneratedIconComponent = ComponentType<SVGProps<SVGSVGElement> & {
3
3
  size?: number | string;
4
4
  }>;
5
- export declare const generatedIconNames: readonly ["AddSection", "AiDeveloper", "AiLoading", "Album3", "ArchiveContent2", "ArrowDown", "ArrowDownLeft", "ArrowDownRight", "ArrowLeft", "ArrowRight", "ArrowRotate", "ArrowRotateAnticlockwiseCheck", "ArrowRotateAnticlockwiseSlash", "ArrowRotateAnticlockwiseXmark", "ArrowRotateClockwiseSlash", "ArrowsFilter", "ArrowsToLineY2", "ArrowUp", "ArrowUpLeft", "ArrowUpRight", "Birdhouse", "BookmarkedBook", "BookmarkedBook2", "BookmarkList", "Box3", "BoxSparkle", "BoxSparkle2", "Brochure", "ButtonPlus", "Calculator3", "CaretDown", "CaretLeft", "CaretRight", "CaretUp", "Chart3", "ChartBar", "ChartCandlestick2", "ChatImage", "ChatInfo", "ChatTask", "Check", "CheckBoxArrow", "ChevronDown", "ChevronExpandY", "ChevronLeft", "ChevronLeftToLine", "ChevronRight", "ChevronRightToLine", "ChevronUp", "Child", "CircleCoinIn", "CircleCoinOut", "CircleCoinPlus", "CircleConversion", "CircleCross", "CircleHalfArrowDown", "CircleHalfArrowLeft", "CircleHalfArrowRight", "CircleHalfArrowUp", "CircleHalfDottedChart2", "ClockTime", "CloneDashed3", "CloneImageDashed", "CloneVideoDashed", "CloudeCode", "CoinStack", "ConditionalLogic", "Connection3", "ConnectPlus", "CopyDelete", "CopyId", "DarkLight", "Deaf", "DependencyLink", "DesktopDock", "DiamondSparkle", "DocumentScan", "Dog2", "DogLeash", "DogSlash", "DotFormation", "DrawFinger", "Ear", "EarSound", "Embed", "EnterDoor", "EnterHome", "ExitDoor", "Export2", "EyeSparkle", "FaceRobot", "FaceRobot2", "FaceRobot3", "FerrisWheel", "FileExport", "FlagMenu", "FocusCenter", "FoodOrder", "FuelCan", "FuelCan2", "Gear3Sparkle", "GridSparkle", "HandHoldingGlobe", "Handshake2", "Haptic", "HelpChat", "HexagonSparkle", "Hiking", "History2", "HorseHead", "HouseDollarSign", "HouseMinus2", "Images3", "Img4k", "InsertCrypto", "InsertDollar", "InstantMoney", "InvoiceIn", "InwardFlow", "JoinedHands", "LawShield", "Lectern", "Lectern2", "LightSpark", "LightSpark2", "ListExport", "ListFavs3", "ListFavs4", "LoadingStatus", "LoadingStatus2", "LockedChat", "MagicHat", "MagicRabbit", "MagnifierSparkle2", "MediaLibrary2", "Membership", "Menu4", "MilitaryMedal", "MobileCircuit", "MoneyRefund", "MoneyRefund2", "MoonStars", "MotionAlongPath", "Msgs2", "Navigation", "NavigationHorizontal", "NavigationVertical", "ObjectSelection", "OfficeUser", "OpenExternal", "OrbitSparkle", "OutwardFlow", "PaperPlaneFast", "Parachute", "Paw", "Peace", "PicnicTable", "Pillow", "Playground", "Playlist4", "Plug3", "Plug3Sparkle", "PlugOff", "PlugSparkle", "PopEffect", "ProfileAnalytics", "ProfileBasic", "ProgressIndicator2", "QuickActions", "QuickTimer", "Rabbit", "Receipt3", "Receipt4", "Redo2", "Redo3", "Refresh3AnticlockwiseSlash", "Refresh3ClockwiseSlash", "RefreshAnticlockwise", "RefreshAnticlockwiseSlash", "RefreshClockwiseSlash", "Refrigerator", "RemoteControl", "RemoteControl2", "ReportFile", "Reposition", "Rerouting", "Robot2", "Robot3", "Robot4", "RockOn", "RopeStanchions", "Rotation3602", "SavedItems2", "ScaleImg4k", "ScanImage", "ScissorsSparkle", "Seatbelt", "ShakaHand", "ShapeRectangle", "Shovel", "ShuffleSparkle", "SidebarEdit", "SideProfileQuestion", "SideProfileSparkle", "SlashCircle", "Sliders4", "Snail", "Spiral", "SplitView", "SquareDashedSearchSparkle", "SquareDashedText", "SquarePath", "Star2Slash", "StopSign", "StopwatchBolt", "SummitFlag", "Sun", "Sunrise2", "Task", "Task2", "TaskDebug", "TaskSearch", "Teepee", "TextAdjust", "TheatreMask", "TheatreMask2", "TimerProgress", "TimerProgress2", "TransactionSplit", "Undo2", "Undo3", "UnicornHead", "UserContact", "UserVoice2", "VipBadge", "VoiceCaption", "WalletCoins", "Weight"];
5
+ export declare const generatedIconNames: readonly ["ArrowDown", "ArrowDownLeft", "ArrowDownRight", "ArrowLeft", "ArrowRight", "ArrowUp", "ArrowUpLeft", "ArrowUpRight", "CaretDown", "CaretLeft", "CaretRight", "CaretUp", "Check", "ChevronDown", "ChevronExpandY", "ChevronLeft", "ChevronRight", "ChevronUp", "CircleHalfDottedClock", "Clock", "DarkLight", "History", "Lock", "LockOpen", "Magnifier", "Minus", "MoonStars", "Plus", "Quickstart", "RefreshAnticlockwise", "Sun", "Xmark"];
6
6
  export type GeneratedIconName = (typeof generatedIconNames)[number];
7
7
  export declare const generatedIconVariants: readonly ["duo"];
8
8
  export type GeneratedIconVariant = (typeof generatedIconVariants)[number];
9
9
  export declare const generatedIconRegistry: {
10
10
  readonly duo: {
11
- readonly AddSection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AddSection.js").AddSectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
12
- readonly AiDeveloper: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AiDeveloper.js").AiDeveloperProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
13
- readonly AiLoading: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AiLoading.js").AiLoadingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
14
- readonly Album3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Album3.js").Album3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
15
- readonly ArchiveContent2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArchiveContent2.js").ArchiveContent2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
16
- readonly ArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDown.js").ArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
17
- readonly ArrowDownLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownLeft.js").ArrowDownLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
18
- readonly ArrowDownRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownRight.js").ArrowDownRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
19
- readonly ArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowLeft.js").ArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
20
- readonly ArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRight.js").ArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
21
- readonly ArrowRotate: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotate.js").ArrowRotateProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
22
- readonly ArrowRotateAnticlockwiseCheck: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseCheck.js").ArrowRotateAnticlockwiseCheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
23
- readonly ArrowRotateAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseSlash.js").ArrowRotateAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
24
- readonly ArrowRotateAnticlockwiseXmark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseXmark.js").ArrowRotateAnticlockwiseXmarkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
25
- readonly ArrowRotateClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateClockwiseSlash.js").ArrowRotateClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
26
- readonly ArrowsFilter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowsFilter.js").ArrowsFilterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
27
- readonly ArrowsToLineY2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowsToLineY2.js").ArrowsToLineY2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
28
- readonly ArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUp.js").ArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
29
- readonly ArrowUpLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpLeft.js").ArrowUpLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
30
- readonly ArrowUpRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpRight.js").ArrowUpRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
31
- readonly Birdhouse: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Birdhouse.js").BirdhouseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
32
- readonly BookmarkedBook: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkedBook.js").BookmarkedBookProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
33
- readonly BookmarkedBook2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkedBook2.js").BookmarkedBook2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
34
- readonly BookmarkList: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkList.js").BookmarkListProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
35
- readonly Box3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Box3.js").Box3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
36
- readonly BoxSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BoxSparkle.js").BoxSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
37
- readonly BoxSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BoxSparkle2.js").BoxSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
38
- readonly Brochure: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Brochure.js").BrochureProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
39
- readonly ButtonPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ButtonPlus.js").ButtonPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
40
- readonly Calculator3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Calculator3.js").Calculator3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
41
- readonly CaretDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretDown.js").CaretDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
42
- readonly CaretLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretLeft.js").CaretLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
43
- readonly CaretRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretRight.js").CaretRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
44
- readonly CaretUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretUp.js").CaretUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
45
- readonly Chart3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Chart3.js").Chart3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
46
- readonly ChartBar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartBar.js").ChartBarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
47
- readonly ChartCandlestick2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartCandlestick2.js").ChartCandlestick2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
48
- readonly ChatImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatImage.js").ChatImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
49
- readonly ChatInfo: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatInfo.js").ChatInfoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
50
- readonly ChatTask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatTask.js").ChatTaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
51
- readonly Check: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Check.js").CheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
52
- readonly CheckBoxArrow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CheckBoxArrow.js").CheckBoxArrowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
53
- readonly ChevronDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronDown.js").ChevronDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
54
- readonly ChevronExpandY: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronExpandY.js").ChevronExpandYProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
55
- readonly ChevronLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeft.js").ChevronLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
56
- readonly ChevronLeftToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeftToLine.js").ChevronLeftToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
57
- readonly ChevronRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRight.js").ChevronRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
58
- readonly ChevronRightToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRightToLine.js").ChevronRightToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
59
- readonly ChevronUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronUp.js").ChevronUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
60
- readonly Child: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Child.js").ChildProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
61
- readonly CircleCoinIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinIn.js").CircleCoinInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
62
- readonly CircleCoinOut: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinOut.js").CircleCoinOutProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
63
- readonly CircleCoinPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinPlus.js").CircleCoinPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
64
- readonly CircleConversion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleConversion.js").CircleConversionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
65
- readonly CircleCross: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCross.js").CircleCrossProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
66
- readonly CircleHalfArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowDown.js").CircleHalfArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
67
- readonly CircleHalfArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowLeft.js").CircleHalfArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
68
- readonly CircleHalfArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowRight.js").CircleHalfArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
69
- readonly CircleHalfArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowUp.js").CircleHalfArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
70
- readonly CircleHalfDottedChart2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfDottedChart2.js").CircleHalfDottedChart2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
71
- readonly ClockTime: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ClockTime.js").ClockTimeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
72
- readonly CloneDashed3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneDashed3.js").CloneDashed3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
73
- readonly CloneImageDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneImageDashed.js").CloneImageDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
74
- readonly CloneVideoDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneVideoDashed.js").CloneVideoDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
75
- readonly CloudeCode: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloudeCode.js").CloudeCodeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
76
- readonly CoinStack: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CoinStack.js").CoinStackProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
77
- readonly ConditionalLogic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConditionalLogic.js").ConditionalLogicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
78
- readonly Connection3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Connection3.js").Connection3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
79
- readonly ConnectPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConnectPlus.js").ConnectPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
80
- readonly CopyDelete: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyDelete.js").CopyDeleteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
81
- readonly CopyId: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyId.js").CopyIdProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
82
- readonly DarkLight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DarkLight.js").DarkLightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
83
- readonly Deaf: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Deaf.js").DeafProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
84
- readonly DependencyLink: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DependencyLink.js").DependencyLinkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
85
- readonly DesktopDock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DesktopDock.js").DesktopDockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
86
- readonly DiamondSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DiamondSparkle.js").DiamondSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
87
- readonly DocumentScan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DocumentScan.js").DocumentScanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
88
- readonly Dog2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Dog2.js").Dog2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
89
- readonly DogLeash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogLeash.js").DogLeashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
90
- readonly DogSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogSlash.js").DogSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
91
- readonly DotFormation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DotFormation.js").DotFormationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
92
- readonly DrawFinger: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DrawFinger.js").DrawFingerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
93
- readonly Ear: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Ear.js").EarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
94
- readonly EarSound: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EarSound.js").EarSoundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
95
- readonly Embed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Embed.js").EmbedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
96
- readonly EnterDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterDoor.js").EnterDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
97
- readonly EnterHome: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterHome.js").EnterHomeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
98
- readonly ExitDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ExitDoor.js").ExitDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
99
- readonly Export2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Export2.js").Export2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
100
- readonly EyeSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EyeSparkle.js").EyeSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
101
- readonly FaceRobot: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot.js").FaceRobotProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
102
- readonly FaceRobot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot2.js").FaceRobot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
103
- readonly FaceRobot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot3.js").FaceRobot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
104
- readonly FerrisWheel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FerrisWheel.js").FerrisWheelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
105
- readonly FileExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FileExport.js").FileExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
106
- readonly FlagMenu: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FlagMenu.js").FlagMenuProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
107
- readonly FocusCenter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FocusCenter.js").FocusCenterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
108
- readonly FoodOrder: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FoodOrder.js").FoodOrderProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
109
- readonly FuelCan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan.js").FuelCanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
110
- readonly FuelCan2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan2.js").FuelCan2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
111
- readonly Gear3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Gear3Sparkle.js").Gear3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
112
- readonly GridSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/GridSparkle.js").GridSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
113
- readonly HandHoldingGlobe: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HandHoldingGlobe.js").HandHoldingGlobeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
114
- readonly Handshake2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Handshake2.js").Handshake2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
115
- readonly Haptic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Haptic.js").HapticProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
116
- readonly HelpChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HelpChat.js").HelpChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
117
- readonly HexagonSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HexagonSparkle.js").HexagonSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
118
- readonly Hiking: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Hiking.js").HikingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
119
- readonly History2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/History2.js").History2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
120
- readonly HorseHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HorseHead.js").HorseHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
121
- readonly HouseDollarSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseDollarSign.js").HouseDollarSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
122
- readonly HouseMinus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseMinus2.js").HouseMinus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
123
- readonly Images3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Images3.js").Images3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
124
- readonly Img4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Img4k.js").Img4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
125
- readonly InsertCrypto: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertCrypto.js").InsertCryptoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
126
- readonly InsertDollar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertDollar.js").InsertDollarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
127
- readonly InstantMoney: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InstantMoney.js").InstantMoneyProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
128
- readonly InvoiceIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InvoiceIn.js").InvoiceInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
129
- readonly InwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InwardFlow.js").InwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
130
- readonly JoinedHands: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/JoinedHands.js").JoinedHandsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
131
- readonly LawShield: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LawShield.js").LawShieldProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
132
- readonly Lectern: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern.js").LecternProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
133
- readonly Lectern2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern2.js").Lectern2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
134
- readonly LightSpark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark.js").LightSparkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
135
- readonly LightSpark2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark2.js").LightSpark2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
136
- readonly ListExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListExport.js").ListExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
137
- readonly ListFavs3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs3.js").ListFavs3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
138
- readonly ListFavs4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs4.js").ListFavs4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
139
- readonly LoadingStatus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus.js").LoadingStatusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
140
- readonly LoadingStatus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus2.js").LoadingStatus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
141
- readonly LockedChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LockedChat.js").LockedChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
142
- readonly MagicHat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicHat.js").MagicHatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
143
- readonly MagicRabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicRabbit.js").MagicRabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
144
- readonly MagnifierSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagnifierSparkle2.js").MagnifierSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
145
- readonly MediaLibrary2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MediaLibrary2.js").MediaLibrary2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
146
- readonly Membership: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Membership.js").MembershipProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
147
- readonly Menu4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Menu4.js").Menu4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
148
- readonly MilitaryMedal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MilitaryMedal.js").MilitaryMedalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
149
- readonly MobileCircuit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MobileCircuit.js").MobileCircuitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
150
- readonly MoneyRefund: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund.js").MoneyRefundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
151
- readonly MoneyRefund2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund2.js").MoneyRefund2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
152
- readonly MoonStars: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoonStars.js").MoonStarsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
153
- readonly MotionAlongPath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MotionAlongPath.js").MotionAlongPathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
154
- readonly Msgs2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Msgs2.js").Msgs2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
155
- readonly Navigation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Navigation.js").NavigationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
156
- readonly NavigationHorizontal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationHorizontal.js").NavigationHorizontalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
157
- readonly NavigationVertical: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationVertical.js").NavigationVerticalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
158
- readonly ObjectSelection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ObjectSelection.js").ObjectSelectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
159
- readonly OfficeUser: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OfficeUser.js").OfficeUserProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
160
- readonly OpenExternal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OpenExternal.js").OpenExternalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
161
- readonly OrbitSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OrbitSparkle.js").OrbitSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
162
- readonly OutwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OutwardFlow.js").OutwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
163
- readonly PaperPlaneFast: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PaperPlaneFast.js").PaperPlaneFastProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
164
- readonly Parachute: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Parachute.js").ParachuteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
165
- readonly Paw: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Paw.js").PawProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
166
- readonly Peace: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Peace.js").PeaceProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
167
- readonly PicnicTable: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PicnicTable.js").PicnicTableProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
168
- readonly Pillow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Pillow.js").PillowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
169
- readonly Playground: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playground.js").PlaygroundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
170
- readonly Playlist4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playlist4.js").Playlist4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
171
- readonly Plug3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3.js").Plug3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
172
- readonly Plug3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3Sparkle.js").Plug3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
173
- readonly PlugOff: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugOff.js").PlugOffProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
174
- readonly PlugSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugSparkle.js").PlugSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
175
- readonly PopEffect: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PopEffect.js").PopEffectProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
176
- readonly ProfileAnalytics: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileAnalytics.js").ProfileAnalyticsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
177
- readonly ProfileBasic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileBasic.js").ProfileBasicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
178
- readonly ProgressIndicator2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProgressIndicator2.js").ProgressIndicator2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
179
- readonly QuickActions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickActions.js").QuickActionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
180
- readonly QuickTimer: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickTimer.js").QuickTimerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
181
- readonly Rabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rabbit.js").RabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
182
- readonly Receipt3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt3.js").Receipt3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
183
- readonly Receipt4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt4.js").Receipt4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
184
- readonly Redo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo2.js").Redo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
185
- readonly Redo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo3.js").Redo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
186
- readonly Refresh3AnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3AnticlockwiseSlash.js").Refresh3AnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
187
- readonly Refresh3ClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3ClockwiseSlash.js").Refresh3ClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
188
- readonly RefreshAnticlockwise: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwise.js").RefreshAnticlockwiseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
189
- readonly RefreshAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwiseSlash.js").RefreshAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
190
- readonly RefreshClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshClockwiseSlash.js").RefreshClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
191
- readonly Refrigerator: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refrigerator.js").RefrigeratorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
192
- readonly RemoteControl: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl.js").RemoteControlProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
193
- readonly RemoteControl2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl2.js").RemoteControl2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
194
- readonly ReportFile: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ReportFile.js").ReportFileProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
195
- readonly Reposition: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Reposition.js").RepositionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
196
- readonly Rerouting: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rerouting.js").ReroutingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
197
- readonly Robot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot2.js").Robot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
198
- readonly Robot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot3.js").Robot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
199
- readonly Robot4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot4.js").Robot4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
200
- readonly RockOn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RockOn.js").RockOnProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
201
- readonly RopeStanchions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RopeStanchions.js").RopeStanchionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
202
- readonly Rotation3602: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rotation3602.js").Rotation3602Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
203
- readonly SavedItems2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SavedItems2.js").SavedItems2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
204
- readonly ScaleImg4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScaleImg4k.js").ScaleImg4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
205
- readonly ScanImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScanImage.js").ScanImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
206
- readonly ScissorsSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScissorsSparkle.js").ScissorsSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
207
- readonly Seatbelt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Seatbelt.js").SeatbeltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
208
- readonly ShakaHand: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShakaHand.js").ShakaHandProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
209
- readonly ShapeRectangle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShapeRectangle.js").ShapeRectangleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
210
- readonly Shovel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Shovel.js").ShovelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
211
- readonly ShuffleSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShuffleSparkle.js").ShuffleSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
212
- readonly SidebarEdit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SidebarEdit.js").SidebarEditProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
213
- readonly SideProfileQuestion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileQuestion.js").SideProfileQuestionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
214
- readonly SideProfileSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileSparkle.js").SideProfileSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
215
- readonly SlashCircle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SlashCircle.js").SlashCircleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
216
- readonly Sliders4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sliders4.js").Sliders4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
217
- readonly Snail: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Snail.js").SnailProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
218
- readonly Spiral: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Spiral.js").SpiralProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
219
- readonly SplitView: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SplitView.js").SplitViewProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
220
- readonly SquareDashedSearchSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedSearchSparkle.js").SquareDashedSearchSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
221
- readonly SquareDashedText: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedText.js").SquareDashedTextProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
222
- readonly SquarePath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquarePath.js").SquarePathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
223
- readonly Star2Slash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Star2Slash.js").Star2SlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
224
- readonly StopSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopSign.js").StopSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
225
- readonly StopwatchBolt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopwatchBolt.js").StopwatchBoltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
226
- readonly SummitFlag: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SummitFlag.js").SummitFlagProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
227
- readonly Sun: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sun.js").SunProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
228
- readonly Sunrise2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sunrise2.js").Sunrise2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
229
- readonly Task: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task.js").TaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
230
- readonly Task2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task2.js").Task2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
231
- readonly TaskDebug: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskDebug.js").TaskDebugProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
232
- readonly TaskSearch: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskSearch.js").TaskSearchProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
233
- readonly Teepee: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Teepee.js").TeepeeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
234
- readonly TextAdjust: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TextAdjust.js").TextAdjustProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
235
- readonly TheatreMask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask.js").TheatreMaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
236
- readonly TheatreMask2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask2.js").TheatreMask2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
237
- readonly TimerProgress: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress.js").TimerProgressProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
238
- readonly TimerProgress2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress2.js").TimerProgress2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
239
- readonly TransactionSplit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TransactionSplit.js").TransactionSplitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
240
- readonly Undo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo2.js").Undo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
241
- readonly Undo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo3.js").Undo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
242
- readonly UnicornHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UnicornHead.js").UnicornHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
243
- readonly UserContact: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserContact.js").UserContactProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
244
- readonly UserVoice2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserVoice2.js").UserVoice2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
245
- readonly VipBadge: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VipBadge.js").VipBadgeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
246
- readonly VoiceCaption: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VoiceCaption.js").VoiceCaptionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
247
- readonly WalletCoins: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/WalletCoins.js").WalletCoinsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
248
- readonly Weight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Weight.js").WeightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ readonly ArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDown").ArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
12
+ readonly ArrowDownLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownLeft").ArrowDownLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
13
+ readonly ArrowDownRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownRight").ArrowDownRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
14
+ readonly ArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowLeft").ArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
15
+ readonly ArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRight").ArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
16
+ readonly ArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUp").ArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
17
+ readonly ArrowUpLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpLeft").ArrowUpLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
18
+ readonly ArrowUpRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpRight").ArrowUpRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
19
+ readonly CaretDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretDown").CaretDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
20
+ readonly CaretLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretLeft").CaretLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
21
+ readonly CaretRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretRight").CaretRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
22
+ readonly CaretUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretUp").CaretUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
23
+ readonly Check: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Check").CheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
24
+ readonly ChevronDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronDown").ChevronDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
25
+ readonly ChevronExpandY: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronExpandY").ChevronExpandYProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
26
+ readonly ChevronLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeft").ChevronLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
27
+ readonly ChevronRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRight").ChevronRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
28
+ readonly ChevronUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronUp").ChevronUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
29
+ readonly CircleHalfDottedClock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfDottedClock").CircleHalfDottedClockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
30
+ readonly Clock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Clock").ClockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
31
+ readonly DarkLight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DarkLight").DarkLightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
32
+ readonly History: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/History").HistoryProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
33
+ readonly Lock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lock").LockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
34
+ readonly LockOpen: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LockOpen").LockOpenProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
35
+ readonly Magnifier: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Magnifier").MagnifierProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
36
+ readonly Minus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Minus").MinusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
37
+ readonly MoonStars: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoonStars").MoonStarsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
38
+ readonly Plus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plus").PlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
39
+ readonly Quickstart: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Quickstart").QuickstartProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
40
+ readonly RefreshAnticlockwise: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwise").RefreshAnticlockwiseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
41
+ readonly Sun: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sun").SunProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
42
+ readonly Xmark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Xmark").XmarkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
249
43
  };
250
44
  };
251
45
  export declare const generatedDefaultIconVariant: "duo";