@viraui/react 0.0.1

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 (615) hide show
  1. package/dist/avatar/avatar.guide.json +20 -0
  2. package/dist/button/button.guide.json +20 -0
  3. package/dist/catalog.json +110 -0
  4. package/dist/clamp-text/clamp-text.guide.json +23 -0
  5. package/dist/components/avatar/avatar.css +55 -0
  6. package/dist/components/avatar/avatar.d.ts +50 -0
  7. package/dist/components/avatar/avatar.js +17 -0
  8. package/dist/components/avatar/index.d.ts +2 -0
  9. package/dist/components/avatar/index.js +1 -0
  10. package/dist/components/basic-input/basic-input.css +45 -0
  11. package/dist/components/basic-input/basic-input.d.ts +14 -0
  12. package/dist/components/basic-input/basic-input.js +17 -0
  13. package/dist/components/basic-input/field-helper-copy.d.ts +13 -0
  14. package/dist/components/basic-input/field-helper-copy.js +25 -0
  15. package/dist/components/basic-input/index.d.ts +2 -0
  16. package/dist/components/basic-input/index.js +1 -0
  17. package/dist/components/basic-input/input-control-group.d.ts +26 -0
  18. package/dist/components/basic-input/input-control-group.js +8 -0
  19. package/dist/components/button/button.css +156 -0
  20. package/dist/components/button/button.d.ts +46 -0
  21. package/dist/components/button/button.js +17 -0
  22. package/dist/components/button/index.d.ts +2 -0
  23. package/dist/components/button/index.js +1 -0
  24. package/dist/components/clamp-text/clamp-text.css +12 -0
  25. package/dist/components/clamp-text/clamp-text.d.ts +39 -0
  26. package/dist/components/clamp-text/clamp-text.js +24 -0
  27. package/dist/components/clamp-text/index.d.ts +2 -0
  28. package/dist/components/clamp-text/index.js +1 -0
  29. package/dist/components/elevator/elevator.d.ts +52 -0
  30. package/dist/components/elevator/elevator.js +29 -0
  31. package/dist/components/elevator/index.d.ts +2 -0
  32. package/dist/components/elevator/index.js +1 -0
  33. package/dist/components/icon/icon.css +7 -0
  34. package/dist/components/icon/icon.d.ts +9 -0
  35. package/dist/components/icon/icon.js +11 -0
  36. package/dist/components/icon/index.d.ts +2 -0
  37. package/dist/components/icon/index.js +1 -0
  38. package/dist/components/icon-button/icon-button.d.ts +31 -0
  39. package/dist/components/icon-button/icon-button.js +3 -0
  40. package/dist/components/icon-button/index.d.ts +2 -0
  41. package/dist/components/icon-button/index.js +1 -0
  42. package/dist/components/index.d.ts +17 -0
  43. package/dist/components/index.js +17 -0
  44. package/dist/components/select/index.d.ts +2 -0
  45. package/dist/components/select/index.js +1 -0
  46. package/dist/components/select/select-group.d.ts +12 -0
  47. package/dist/components/select/select-group.js +10 -0
  48. package/dist/components/select/select-indicator-slot.d.ts +12 -0
  49. package/dist/components/select/select-indicator-slot.js +11 -0
  50. package/dist/components/select/select-option.d.ts +16 -0
  51. package/dist/components/select/select-option.js +11 -0
  52. package/dist/components/select/select-separator.d.ts +9 -0
  53. package/dist/components/select/select-separator.js +7 -0
  54. package/dist/components/select/select.css +194 -0
  55. package/dist/components/select/select.d.ts +66 -0
  56. package/dist/components/select/select.js +35 -0
  57. package/dist/components/skeleton/index.d.ts +2 -0
  58. package/dist/components/skeleton/index.js +1 -0
  59. package/dist/components/skeleton/skeleton.css +36 -0
  60. package/dist/components/skeleton/skeleton.d.ts +51 -0
  61. package/dist/components/skeleton/skeleton.js +17 -0
  62. package/dist/components/slider/index.d.ts +2 -0
  63. package/dist/components/slider/index.js +1 -0
  64. package/dist/components/slider/slider-control.css +71 -0
  65. package/dist/components/slider/slider-control.d.ts +8 -0
  66. package/dist/components/slider/slider-control.js +22 -0
  67. package/dist/components/slider/slider-utils.d.ts +2 -0
  68. package/dist/components/slider/slider-utils.js +4 -0
  69. package/dist/components/slider/slider.css +64 -0
  70. package/dist/components/slider/slider.d.ts +70 -0
  71. package/dist/components/slider/slider.js +19 -0
  72. package/dist/components/spinner/index.d.ts +2 -0
  73. package/dist/components/spinner/index.js +1 -0
  74. package/dist/components/spinner/spinner.css +45 -0
  75. package/dist/components/spinner/spinner.d.ts +17 -0
  76. package/dist/components/spinner/spinner.js +8 -0
  77. package/dist/components/stack/index.d.ts +2 -0
  78. package/dist/components/stack/index.js +1 -0
  79. package/dist/components/stack/stack.css +57 -0
  80. package/dist/components/stack/stack.d.ts +104 -0
  81. package/dist/components/stack/stack.js +38 -0
  82. package/dist/components/surface/index.d.ts +2 -0
  83. package/dist/components/surface/index.js +1 -0
  84. package/dist/components/surface/surface.css +61 -0
  85. package/dist/components/surface/surface.d.ts +69 -0
  86. package/dist/components/surface/surface.js +43 -0
  87. package/dist/components/switch/index.d.ts +2 -0
  88. package/dist/components/switch/index.js +1 -0
  89. package/dist/components/switch/switch.css +73 -0
  90. package/dist/components/switch/switch.d.ts +54 -0
  91. package/dist/components/switch/switch.js +15 -0
  92. package/dist/components/text/index.d.ts +2 -0
  93. package/dist/components/text/index.js +1 -0
  94. package/dist/components/text/text.css +139 -0
  95. package/dist/components/text/text.d.ts +127 -0
  96. package/dist/components/text/text.js +43 -0
  97. package/dist/components/textarea/index.d.ts +2 -0
  98. package/dist/components/textarea/index.js +1 -0
  99. package/dist/components/textarea/textarea.css +45 -0
  100. package/dist/components/textarea/textarea.d.ts +56 -0
  101. package/dist/components/textarea/textarea.js +13 -0
  102. package/dist/components/textfield/index.d.ts +2 -0
  103. package/dist/components/textfield/index.js +1 -0
  104. package/dist/components/textfield/textfield.css +87 -0
  105. package/dist/components/textfield/textfield.d.ts +49 -0
  106. package/dist/components/textfield/textfield.js +14 -0
  107. package/dist/components/title/index.d.ts +2 -0
  108. package/dist/components/title/index.js +1 -0
  109. package/dist/components/title/title.css +126 -0
  110. package/dist/components/title/title.d.ts +117 -0
  111. package/dist/components/title/title.js +41 -0
  112. package/dist/core/elevation/elevation-types.d.ts +17 -0
  113. package/dist/core/elevation/elevation-types.js +4 -0
  114. package/dist/core/elevation/get-elevation-props.d.ts +12 -0
  115. package/dist/core/elevation/get-elevation-props.js +12 -0
  116. package/dist/core/props/intrinsic-vira-props.d.ts +23 -0
  117. package/dist/core/props/intrinsic-vira-props.js +10 -0
  118. package/dist/core/styles/resolve-axis-padding.d.ts +5 -0
  119. package/dist/core/styles/resolve-axis-padding.js +17 -0
  120. package/dist/core/theme/resolve-theme-value.d.ts +5 -0
  121. package/dist/core/theme/resolve-theme-value.js +7 -0
  122. package/dist/elevator/elevator.guide.json +23 -0
  123. package/dist/guides/consumption.json +44 -0
  124. package/dist/guides/theme-surface.json +61 -0
  125. package/dist/icon/icon.guide.json +23 -0
  126. package/dist/icon-button/icon-button.guide.json +20 -0
  127. package/dist/index.d.ts +2 -0
  128. package/dist/index.js +1 -0
  129. package/dist/internal-icons/icon-registry.d.ts +248 -0
  130. package/dist/internal-icons/icon-registry.js +713 -0
  131. package/dist/internal-icons/icons/duo/AddSection.d.ts +7 -0
  132. package/dist/internal-icons/icons/duo/AddSection.js +13 -0
  133. package/dist/internal-icons/icons/duo/AiDeveloper.d.ts +7 -0
  134. package/dist/internal-icons/icons/duo/AiDeveloper.js +13 -0
  135. package/dist/internal-icons/icons/duo/AiLoading.d.ts +7 -0
  136. package/dist/internal-icons/icons/duo/AiLoading.js +13 -0
  137. package/dist/internal-icons/icons/duo/Album3.d.ts +7 -0
  138. package/dist/internal-icons/icons/duo/Album3.js +13 -0
  139. package/dist/internal-icons/icons/duo/ArchiveContent2.d.ts +7 -0
  140. package/dist/internal-icons/icons/duo/ArchiveContent2.js +13 -0
  141. package/dist/internal-icons/icons/duo/ArrowDown.d.ts +7 -0
  142. package/dist/internal-icons/icons/duo/ArrowDown.js +13 -0
  143. package/dist/internal-icons/icons/duo/ArrowDownLeft.d.ts +7 -0
  144. package/dist/internal-icons/icons/duo/ArrowDownLeft.js +13 -0
  145. package/dist/internal-icons/icons/duo/ArrowDownRight.d.ts +7 -0
  146. package/dist/internal-icons/icons/duo/ArrowDownRight.js +13 -0
  147. package/dist/internal-icons/icons/duo/ArrowLeft.d.ts +7 -0
  148. package/dist/internal-icons/icons/duo/ArrowLeft.js +13 -0
  149. package/dist/internal-icons/icons/duo/ArrowRight.d.ts +7 -0
  150. package/dist/internal-icons/icons/duo/ArrowRight.js +13 -0
  151. package/dist/internal-icons/icons/duo/ArrowRotate.d.ts +7 -0
  152. package/dist/internal-icons/icons/duo/ArrowRotate.js +13 -0
  153. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.d.ts +7 -0
  154. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.js +13 -0
  155. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.d.ts +7 -0
  156. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.js +13 -0
  157. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.d.ts +7 -0
  158. package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.js +13 -0
  159. package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.d.ts +7 -0
  160. package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.js +13 -0
  161. package/dist/internal-icons/icons/duo/ArrowUp.d.ts +7 -0
  162. package/dist/internal-icons/icons/duo/ArrowUp.js +13 -0
  163. package/dist/internal-icons/icons/duo/ArrowUpLeft.d.ts +7 -0
  164. package/dist/internal-icons/icons/duo/ArrowUpLeft.js +13 -0
  165. package/dist/internal-icons/icons/duo/ArrowUpRight.d.ts +7 -0
  166. package/dist/internal-icons/icons/duo/ArrowUpRight.js +13 -0
  167. package/dist/internal-icons/icons/duo/ArrowsFilter.d.ts +7 -0
  168. package/dist/internal-icons/icons/duo/ArrowsFilter.js +13 -0
  169. package/dist/internal-icons/icons/duo/ArrowsToLineY2.d.ts +7 -0
  170. package/dist/internal-icons/icons/duo/ArrowsToLineY2.js +13 -0
  171. package/dist/internal-icons/icons/duo/Birdhouse.d.ts +7 -0
  172. package/dist/internal-icons/icons/duo/Birdhouse.js +13 -0
  173. package/dist/internal-icons/icons/duo/BookmarkList.d.ts +7 -0
  174. package/dist/internal-icons/icons/duo/BookmarkList.js +13 -0
  175. package/dist/internal-icons/icons/duo/BookmarkedBook.d.ts +7 -0
  176. package/dist/internal-icons/icons/duo/BookmarkedBook.js +13 -0
  177. package/dist/internal-icons/icons/duo/BookmarkedBook2.d.ts +7 -0
  178. package/dist/internal-icons/icons/duo/BookmarkedBook2.js +13 -0
  179. package/dist/internal-icons/icons/duo/Box3.d.ts +7 -0
  180. package/dist/internal-icons/icons/duo/Box3.js +13 -0
  181. package/dist/internal-icons/icons/duo/BoxSparkle.d.ts +7 -0
  182. package/dist/internal-icons/icons/duo/BoxSparkle.js +13 -0
  183. package/dist/internal-icons/icons/duo/BoxSparkle2.d.ts +7 -0
  184. package/dist/internal-icons/icons/duo/BoxSparkle2.js +13 -0
  185. package/dist/internal-icons/icons/duo/Brochure.d.ts +7 -0
  186. package/dist/internal-icons/icons/duo/Brochure.js +13 -0
  187. package/dist/internal-icons/icons/duo/ButtonPlus.d.ts +7 -0
  188. package/dist/internal-icons/icons/duo/ButtonPlus.js +13 -0
  189. package/dist/internal-icons/icons/duo/Calculator3.d.ts +7 -0
  190. package/dist/internal-icons/icons/duo/Calculator3.js +13 -0
  191. package/dist/internal-icons/icons/duo/CaretDown.d.ts +7 -0
  192. package/dist/internal-icons/icons/duo/CaretDown.js +13 -0
  193. package/dist/internal-icons/icons/duo/CaretLeft.d.ts +7 -0
  194. package/dist/internal-icons/icons/duo/CaretLeft.js +13 -0
  195. package/dist/internal-icons/icons/duo/CaretRight.d.ts +7 -0
  196. package/dist/internal-icons/icons/duo/CaretRight.js +13 -0
  197. package/dist/internal-icons/icons/duo/CaretUp.d.ts +7 -0
  198. package/dist/internal-icons/icons/duo/CaretUp.js +13 -0
  199. package/dist/internal-icons/icons/duo/Chart3.d.ts +7 -0
  200. package/dist/internal-icons/icons/duo/Chart3.js +13 -0
  201. package/dist/internal-icons/icons/duo/ChartBar.d.ts +7 -0
  202. package/dist/internal-icons/icons/duo/ChartBar.js +13 -0
  203. package/dist/internal-icons/icons/duo/ChartCandlestick2.d.ts +7 -0
  204. package/dist/internal-icons/icons/duo/ChartCandlestick2.js +13 -0
  205. package/dist/internal-icons/icons/duo/ChatImage.d.ts +7 -0
  206. package/dist/internal-icons/icons/duo/ChatImage.js +13 -0
  207. package/dist/internal-icons/icons/duo/ChatInfo.d.ts +7 -0
  208. package/dist/internal-icons/icons/duo/ChatInfo.js +13 -0
  209. package/dist/internal-icons/icons/duo/ChatTask.d.ts +7 -0
  210. package/dist/internal-icons/icons/duo/ChatTask.js +13 -0
  211. package/dist/internal-icons/icons/duo/Check.d.ts +7 -0
  212. package/dist/internal-icons/icons/duo/Check.js +13 -0
  213. package/dist/internal-icons/icons/duo/CheckBoxArrow.d.ts +7 -0
  214. package/dist/internal-icons/icons/duo/CheckBoxArrow.js +13 -0
  215. package/dist/internal-icons/icons/duo/ChevronDown.d.ts +7 -0
  216. package/dist/internal-icons/icons/duo/ChevronDown.js +13 -0
  217. package/dist/internal-icons/icons/duo/ChevronExpandY.d.ts +7 -0
  218. package/dist/internal-icons/icons/duo/ChevronExpandY.js +13 -0
  219. package/dist/internal-icons/icons/duo/ChevronLeft.d.ts +7 -0
  220. package/dist/internal-icons/icons/duo/ChevronLeft.js +13 -0
  221. package/dist/internal-icons/icons/duo/ChevronLeftToLine.d.ts +7 -0
  222. package/dist/internal-icons/icons/duo/ChevronLeftToLine.js +13 -0
  223. package/dist/internal-icons/icons/duo/ChevronRight.d.ts +7 -0
  224. package/dist/internal-icons/icons/duo/ChevronRight.js +13 -0
  225. package/dist/internal-icons/icons/duo/ChevronRightToLine.d.ts +7 -0
  226. package/dist/internal-icons/icons/duo/ChevronRightToLine.js +13 -0
  227. package/dist/internal-icons/icons/duo/ChevronUp.d.ts +7 -0
  228. package/dist/internal-icons/icons/duo/ChevronUp.js +13 -0
  229. package/dist/internal-icons/icons/duo/Child.d.ts +7 -0
  230. package/dist/internal-icons/icons/duo/Child.js +13 -0
  231. package/dist/internal-icons/icons/duo/CircleCoinIn.d.ts +7 -0
  232. package/dist/internal-icons/icons/duo/CircleCoinIn.js +13 -0
  233. package/dist/internal-icons/icons/duo/CircleCoinOut.d.ts +7 -0
  234. package/dist/internal-icons/icons/duo/CircleCoinOut.js +13 -0
  235. package/dist/internal-icons/icons/duo/CircleCoinPlus.d.ts +7 -0
  236. package/dist/internal-icons/icons/duo/CircleCoinPlus.js +13 -0
  237. package/dist/internal-icons/icons/duo/CircleConversion.d.ts +7 -0
  238. package/dist/internal-icons/icons/duo/CircleConversion.js +13 -0
  239. package/dist/internal-icons/icons/duo/CircleCross.d.ts +7 -0
  240. package/dist/internal-icons/icons/duo/CircleCross.js +13 -0
  241. package/dist/internal-icons/icons/duo/CircleHalfArrowDown.d.ts +7 -0
  242. package/dist/internal-icons/icons/duo/CircleHalfArrowDown.js +13 -0
  243. package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.d.ts +7 -0
  244. package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.js +13 -0
  245. package/dist/internal-icons/icons/duo/CircleHalfArrowRight.d.ts +7 -0
  246. package/dist/internal-icons/icons/duo/CircleHalfArrowRight.js +13 -0
  247. package/dist/internal-icons/icons/duo/CircleHalfArrowUp.d.ts +7 -0
  248. package/dist/internal-icons/icons/duo/CircleHalfArrowUp.js +13 -0
  249. package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.d.ts +7 -0
  250. package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.js +13 -0
  251. package/dist/internal-icons/icons/duo/ClockTime.d.ts +7 -0
  252. package/dist/internal-icons/icons/duo/ClockTime.js +13 -0
  253. package/dist/internal-icons/icons/duo/CloneDashed3.d.ts +7 -0
  254. package/dist/internal-icons/icons/duo/CloneDashed3.js +13 -0
  255. package/dist/internal-icons/icons/duo/CloneImageDashed.d.ts +7 -0
  256. package/dist/internal-icons/icons/duo/CloneImageDashed.js +13 -0
  257. package/dist/internal-icons/icons/duo/CloneVideoDashed.d.ts +7 -0
  258. package/dist/internal-icons/icons/duo/CloneVideoDashed.js +13 -0
  259. package/dist/internal-icons/icons/duo/CloudeCode.d.ts +7 -0
  260. package/dist/internal-icons/icons/duo/CloudeCode.js +13 -0
  261. package/dist/internal-icons/icons/duo/CoinStack.d.ts +7 -0
  262. package/dist/internal-icons/icons/duo/CoinStack.js +13 -0
  263. package/dist/internal-icons/icons/duo/ConditionalLogic.d.ts +7 -0
  264. package/dist/internal-icons/icons/duo/ConditionalLogic.js +13 -0
  265. package/dist/internal-icons/icons/duo/ConnectPlus.d.ts +7 -0
  266. package/dist/internal-icons/icons/duo/ConnectPlus.js +13 -0
  267. package/dist/internal-icons/icons/duo/Connection3.d.ts +7 -0
  268. package/dist/internal-icons/icons/duo/Connection3.js +13 -0
  269. package/dist/internal-icons/icons/duo/CopyDelete.d.ts +7 -0
  270. package/dist/internal-icons/icons/duo/CopyDelete.js +13 -0
  271. package/dist/internal-icons/icons/duo/CopyId.d.ts +7 -0
  272. package/dist/internal-icons/icons/duo/CopyId.js +13 -0
  273. package/dist/internal-icons/icons/duo/Deaf.d.ts +7 -0
  274. package/dist/internal-icons/icons/duo/Deaf.js +13 -0
  275. package/dist/internal-icons/icons/duo/DependencyLink.d.ts +7 -0
  276. package/dist/internal-icons/icons/duo/DependencyLink.js +13 -0
  277. package/dist/internal-icons/icons/duo/DesktopDock.d.ts +7 -0
  278. package/dist/internal-icons/icons/duo/DesktopDock.js +13 -0
  279. package/dist/internal-icons/icons/duo/DiamondSparkle.d.ts +7 -0
  280. package/dist/internal-icons/icons/duo/DiamondSparkle.js +13 -0
  281. package/dist/internal-icons/icons/duo/DocumentScan.d.ts +7 -0
  282. package/dist/internal-icons/icons/duo/DocumentScan.js +13 -0
  283. package/dist/internal-icons/icons/duo/Dog2.d.ts +7 -0
  284. package/dist/internal-icons/icons/duo/Dog2.js +13 -0
  285. package/dist/internal-icons/icons/duo/DogLeash.d.ts +7 -0
  286. package/dist/internal-icons/icons/duo/DogLeash.js +13 -0
  287. package/dist/internal-icons/icons/duo/DogSlash.d.ts +7 -0
  288. package/dist/internal-icons/icons/duo/DogSlash.js +13 -0
  289. package/dist/internal-icons/icons/duo/DotFormation.d.ts +7 -0
  290. package/dist/internal-icons/icons/duo/DotFormation.js +13 -0
  291. package/dist/internal-icons/icons/duo/DrawFinger.d.ts +7 -0
  292. package/dist/internal-icons/icons/duo/DrawFinger.js +13 -0
  293. package/dist/internal-icons/icons/duo/Ear.d.ts +7 -0
  294. package/dist/internal-icons/icons/duo/Ear.js +13 -0
  295. package/dist/internal-icons/icons/duo/EarSound.d.ts +7 -0
  296. package/dist/internal-icons/icons/duo/EarSound.js +13 -0
  297. package/dist/internal-icons/icons/duo/Embed.d.ts +7 -0
  298. package/dist/internal-icons/icons/duo/Embed.js +13 -0
  299. package/dist/internal-icons/icons/duo/EnterDoor.d.ts +7 -0
  300. package/dist/internal-icons/icons/duo/EnterDoor.js +13 -0
  301. package/dist/internal-icons/icons/duo/EnterHome.d.ts +7 -0
  302. package/dist/internal-icons/icons/duo/EnterHome.js +13 -0
  303. package/dist/internal-icons/icons/duo/ExitDoor.d.ts +7 -0
  304. package/dist/internal-icons/icons/duo/ExitDoor.js +13 -0
  305. package/dist/internal-icons/icons/duo/Export2.d.ts +7 -0
  306. package/dist/internal-icons/icons/duo/Export2.js +13 -0
  307. package/dist/internal-icons/icons/duo/EyeSparkle.d.ts +7 -0
  308. package/dist/internal-icons/icons/duo/EyeSparkle.js +13 -0
  309. package/dist/internal-icons/icons/duo/FaceRobot.d.ts +7 -0
  310. package/dist/internal-icons/icons/duo/FaceRobot.js +13 -0
  311. package/dist/internal-icons/icons/duo/FaceRobot2.d.ts +7 -0
  312. package/dist/internal-icons/icons/duo/FaceRobot2.js +13 -0
  313. package/dist/internal-icons/icons/duo/FaceRobot3.d.ts +7 -0
  314. package/dist/internal-icons/icons/duo/FaceRobot3.js +13 -0
  315. package/dist/internal-icons/icons/duo/FerrisWheel.d.ts +7 -0
  316. package/dist/internal-icons/icons/duo/FerrisWheel.js +13 -0
  317. package/dist/internal-icons/icons/duo/FileExport.d.ts +7 -0
  318. package/dist/internal-icons/icons/duo/FileExport.js +13 -0
  319. package/dist/internal-icons/icons/duo/FlagMenu.d.ts +7 -0
  320. package/dist/internal-icons/icons/duo/FlagMenu.js +13 -0
  321. package/dist/internal-icons/icons/duo/FocusCenter.d.ts +7 -0
  322. package/dist/internal-icons/icons/duo/FocusCenter.js +13 -0
  323. package/dist/internal-icons/icons/duo/FoodOrder.d.ts +7 -0
  324. package/dist/internal-icons/icons/duo/FoodOrder.js +13 -0
  325. package/dist/internal-icons/icons/duo/FuelCan.d.ts +7 -0
  326. package/dist/internal-icons/icons/duo/FuelCan.js +13 -0
  327. package/dist/internal-icons/icons/duo/FuelCan2.d.ts +7 -0
  328. package/dist/internal-icons/icons/duo/FuelCan2.js +13 -0
  329. package/dist/internal-icons/icons/duo/Gear3Sparkle.d.ts +7 -0
  330. package/dist/internal-icons/icons/duo/Gear3Sparkle.js +13 -0
  331. package/dist/internal-icons/icons/duo/GridSparkle.d.ts +7 -0
  332. package/dist/internal-icons/icons/duo/GridSparkle.js +13 -0
  333. package/dist/internal-icons/icons/duo/HandHoldingGlobe.d.ts +7 -0
  334. package/dist/internal-icons/icons/duo/HandHoldingGlobe.js +13 -0
  335. package/dist/internal-icons/icons/duo/Handshake2.d.ts +7 -0
  336. package/dist/internal-icons/icons/duo/Handshake2.js +13 -0
  337. package/dist/internal-icons/icons/duo/Haptic.d.ts +7 -0
  338. package/dist/internal-icons/icons/duo/Haptic.js +13 -0
  339. package/dist/internal-icons/icons/duo/HelpChat.d.ts +7 -0
  340. package/dist/internal-icons/icons/duo/HelpChat.js +13 -0
  341. package/dist/internal-icons/icons/duo/HexagonSparkle.d.ts +7 -0
  342. package/dist/internal-icons/icons/duo/HexagonSparkle.js +13 -0
  343. package/dist/internal-icons/icons/duo/Hiking.d.ts +7 -0
  344. package/dist/internal-icons/icons/duo/Hiking.js +13 -0
  345. package/dist/internal-icons/icons/duo/History2.d.ts +7 -0
  346. package/dist/internal-icons/icons/duo/History2.js +13 -0
  347. package/dist/internal-icons/icons/duo/HorseHead.d.ts +7 -0
  348. package/dist/internal-icons/icons/duo/HorseHead.js +13 -0
  349. package/dist/internal-icons/icons/duo/HouseDollarSign.d.ts +7 -0
  350. package/dist/internal-icons/icons/duo/HouseDollarSign.js +13 -0
  351. package/dist/internal-icons/icons/duo/HouseMinus2.d.ts +7 -0
  352. package/dist/internal-icons/icons/duo/HouseMinus2.js +13 -0
  353. package/dist/internal-icons/icons/duo/Images3.d.ts +7 -0
  354. package/dist/internal-icons/icons/duo/Images3.js +13 -0
  355. package/dist/internal-icons/icons/duo/Img4k.d.ts +7 -0
  356. package/dist/internal-icons/icons/duo/Img4k.js +13 -0
  357. package/dist/internal-icons/icons/duo/InsertCrypto.d.ts +7 -0
  358. package/dist/internal-icons/icons/duo/InsertCrypto.js +13 -0
  359. package/dist/internal-icons/icons/duo/InsertDollar.d.ts +7 -0
  360. package/dist/internal-icons/icons/duo/InsertDollar.js +13 -0
  361. package/dist/internal-icons/icons/duo/InstantMoney.d.ts +7 -0
  362. package/dist/internal-icons/icons/duo/InstantMoney.js +13 -0
  363. package/dist/internal-icons/icons/duo/InvoiceIn.d.ts +7 -0
  364. package/dist/internal-icons/icons/duo/InvoiceIn.js +13 -0
  365. package/dist/internal-icons/icons/duo/InwardFlow.d.ts +7 -0
  366. package/dist/internal-icons/icons/duo/InwardFlow.js +13 -0
  367. package/dist/internal-icons/icons/duo/JoinedHands.d.ts +7 -0
  368. package/dist/internal-icons/icons/duo/JoinedHands.js +13 -0
  369. package/dist/internal-icons/icons/duo/LawShield.d.ts +7 -0
  370. package/dist/internal-icons/icons/duo/LawShield.js +13 -0
  371. package/dist/internal-icons/icons/duo/Lectern.d.ts +7 -0
  372. package/dist/internal-icons/icons/duo/Lectern.js +13 -0
  373. package/dist/internal-icons/icons/duo/Lectern2.d.ts +7 -0
  374. package/dist/internal-icons/icons/duo/Lectern2.js +13 -0
  375. package/dist/internal-icons/icons/duo/LightSpark.d.ts +7 -0
  376. package/dist/internal-icons/icons/duo/LightSpark.js +13 -0
  377. package/dist/internal-icons/icons/duo/LightSpark2.d.ts +7 -0
  378. package/dist/internal-icons/icons/duo/LightSpark2.js +13 -0
  379. package/dist/internal-icons/icons/duo/ListExport.d.ts +7 -0
  380. package/dist/internal-icons/icons/duo/ListExport.js +13 -0
  381. package/dist/internal-icons/icons/duo/ListFavs3.d.ts +7 -0
  382. package/dist/internal-icons/icons/duo/ListFavs3.js +13 -0
  383. package/dist/internal-icons/icons/duo/ListFavs4.d.ts +7 -0
  384. package/dist/internal-icons/icons/duo/ListFavs4.js +13 -0
  385. package/dist/internal-icons/icons/duo/LoadingStatus.d.ts +7 -0
  386. package/dist/internal-icons/icons/duo/LoadingStatus.js +13 -0
  387. package/dist/internal-icons/icons/duo/LoadingStatus2.d.ts +7 -0
  388. package/dist/internal-icons/icons/duo/LoadingStatus2.js +13 -0
  389. package/dist/internal-icons/icons/duo/LockedChat.d.ts +7 -0
  390. package/dist/internal-icons/icons/duo/LockedChat.js +13 -0
  391. package/dist/internal-icons/icons/duo/MagicHat.d.ts +7 -0
  392. package/dist/internal-icons/icons/duo/MagicHat.js +13 -0
  393. package/dist/internal-icons/icons/duo/MagicRabbit.d.ts +7 -0
  394. package/dist/internal-icons/icons/duo/MagicRabbit.js +13 -0
  395. package/dist/internal-icons/icons/duo/MagnifierSparkle2.d.ts +7 -0
  396. package/dist/internal-icons/icons/duo/MagnifierSparkle2.js +13 -0
  397. package/dist/internal-icons/icons/duo/MediaLibrary2.d.ts +7 -0
  398. package/dist/internal-icons/icons/duo/MediaLibrary2.js +13 -0
  399. package/dist/internal-icons/icons/duo/Membership.d.ts +7 -0
  400. package/dist/internal-icons/icons/duo/Membership.js +13 -0
  401. package/dist/internal-icons/icons/duo/Menu4.d.ts +7 -0
  402. package/dist/internal-icons/icons/duo/Menu4.js +13 -0
  403. package/dist/internal-icons/icons/duo/MilitaryMedal.d.ts +7 -0
  404. package/dist/internal-icons/icons/duo/MilitaryMedal.js +13 -0
  405. package/dist/internal-icons/icons/duo/MobileCircuit.d.ts +7 -0
  406. package/dist/internal-icons/icons/duo/MobileCircuit.js +13 -0
  407. package/dist/internal-icons/icons/duo/MoneyRefund.d.ts +7 -0
  408. package/dist/internal-icons/icons/duo/MoneyRefund.js +13 -0
  409. package/dist/internal-icons/icons/duo/MoneyRefund2.d.ts +7 -0
  410. package/dist/internal-icons/icons/duo/MoneyRefund2.js +13 -0
  411. package/dist/internal-icons/icons/duo/MotionAlongPath.d.ts +7 -0
  412. package/dist/internal-icons/icons/duo/MotionAlongPath.js +13 -0
  413. package/dist/internal-icons/icons/duo/Msgs2.d.ts +7 -0
  414. package/dist/internal-icons/icons/duo/Msgs2.js +13 -0
  415. package/dist/internal-icons/icons/duo/Navigation.d.ts +7 -0
  416. package/dist/internal-icons/icons/duo/Navigation.js +13 -0
  417. package/dist/internal-icons/icons/duo/NavigationHorizontal.d.ts +7 -0
  418. package/dist/internal-icons/icons/duo/NavigationHorizontal.js +13 -0
  419. package/dist/internal-icons/icons/duo/NavigationVertical.d.ts +7 -0
  420. package/dist/internal-icons/icons/duo/NavigationVertical.js +13 -0
  421. package/dist/internal-icons/icons/duo/ObjectSelection.d.ts +7 -0
  422. package/dist/internal-icons/icons/duo/ObjectSelection.js +13 -0
  423. package/dist/internal-icons/icons/duo/OfficeUser.d.ts +7 -0
  424. package/dist/internal-icons/icons/duo/OfficeUser.js +13 -0
  425. package/dist/internal-icons/icons/duo/OpenExternal.d.ts +7 -0
  426. package/dist/internal-icons/icons/duo/OpenExternal.js +13 -0
  427. package/dist/internal-icons/icons/duo/OrbitSparkle.d.ts +7 -0
  428. package/dist/internal-icons/icons/duo/OrbitSparkle.js +13 -0
  429. package/dist/internal-icons/icons/duo/OutwardFlow.d.ts +7 -0
  430. package/dist/internal-icons/icons/duo/OutwardFlow.js +13 -0
  431. package/dist/internal-icons/icons/duo/PaperPlaneFast.d.ts +7 -0
  432. package/dist/internal-icons/icons/duo/PaperPlaneFast.js +13 -0
  433. package/dist/internal-icons/icons/duo/Parachute.d.ts +7 -0
  434. package/dist/internal-icons/icons/duo/Parachute.js +13 -0
  435. package/dist/internal-icons/icons/duo/Paw.d.ts +7 -0
  436. package/dist/internal-icons/icons/duo/Paw.js +13 -0
  437. package/dist/internal-icons/icons/duo/Peace.d.ts +7 -0
  438. package/dist/internal-icons/icons/duo/Peace.js +13 -0
  439. package/dist/internal-icons/icons/duo/PicnicTable.d.ts +7 -0
  440. package/dist/internal-icons/icons/duo/PicnicTable.js +13 -0
  441. package/dist/internal-icons/icons/duo/Pillow.d.ts +7 -0
  442. package/dist/internal-icons/icons/duo/Pillow.js +13 -0
  443. package/dist/internal-icons/icons/duo/Playground.d.ts +7 -0
  444. package/dist/internal-icons/icons/duo/Playground.js +13 -0
  445. package/dist/internal-icons/icons/duo/Playlist4.d.ts +7 -0
  446. package/dist/internal-icons/icons/duo/Playlist4.js +13 -0
  447. package/dist/internal-icons/icons/duo/Plug3.d.ts +7 -0
  448. package/dist/internal-icons/icons/duo/Plug3.js +13 -0
  449. package/dist/internal-icons/icons/duo/Plug3Sparkle.d.ts +7 -0
  450. package/dist/internal-icons/icons/duo/Plug3Sparkle.js +13 -0
  451. package/dist/internal-icons/icons/duo/PlugOff.d.ts +7 -0
  452. package/dist/internal-icons/icons/duo/PlugOff.js +13 -0
  453. package/dist/internal-icons/icons/duo/PlugSparkle.d.ts +7 -0
  454. package/dist/internal-icons/icons/duo/PlugSparkle.js +13 -0
  455. package/dist/internal-icons/icons/duo/PopEffect.d.ts +7 -0
  456. package/dist/internal-icons/icons/duo/PopEffect.js +13 -0
  457. package/dist/internal-icons/icons/duo/ProfileAnalytics.d.ts +7 -0
  458. package/dist/internal-icons/icons/duo/ProfileAnalytics.js +13 -0
  459. package/dist/internal-icons/icons/duo/ProfileBasic.d.ts +7 -0
  460. package/dist/internal-icons/icons/duo/ProfileBasic.js +13 -0
  461. package/dist/internal-icons/icons/duo/ProgressIndicator2.d.ts +7 -0
  462. package/dist/internal-icons/icons/duo/ProgressIndicator2.js +13 -0
  463. package/dist/internal-icons/icons/duo/QuickActions.d.ts +7 -0
  464. package/dist/internal-icons/icons/duo/QuickActions.js +13 -0
  465. package/dist/internal-icons/icons/duo/QuickTimer.d.ts +7 -0
  466. package/dist/internal-icons/icons/duo/QuickTimer.js +13 -0
  467. package/dist/internal-icons/icons/duo/Rabbit.d.ts +7 -0
  468. package/dist/internal-icons/icons/duo/Rabbit.js +13 -0
  469. package/dist/internal-icons/icons/duo/Receipt3.d.ts +7 -0
  470. package/dist/internal-icons/icons/duo/Receipt3.js +13 -0
  471. package/dist/internal-icons/icons/duo/Receipt4.d.ts +7 -0
  472. package/dist/internal-icons/icons/duo/Receipt4.js +13 -0
  473. package/dist/internal-icons/icons/duo/Redo2.d.ts +7 -0
  474. package/dist/internal-icons/icons/duo/Redo2.js +13 -0
  475. package/dist/internal-icons/icons/duo/Redo3.d.ts +7 -0
  476. package/dist/internal-icons/icons/duo/Redo3.js +13 -0
  477. package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.d.ts +7 -0
  478. package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.js +13 -0
  479. package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.d.ts +7 -0
  480. package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.js +13 -0
  481. package/dist/internal-icons/icons/duo/RefreshAnticlockwise.d.ts +7 -0
  482. package/dist/internal-icons/icons/duo/RefreshAnticlockwise.js +13 -0
  483. package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.d.ts +7 -0
  484. package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.js +13 -0
  485. package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.d.ts +7 -0
  486. package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.js +13 -0
  487. package/dist/internal-icons/icons/duo/Refrigerator.d.ts +7 -0
  488. package/dist/internal-icons/icons/duo/Refrigerator.js +13 -0
  489. package/dist/internal-icons/icons/duo/RemoteControl.d.ts +7 -0
  490. package/dist/internal-icons/icons/duo/RemoteControl.js +13 -0
  491. package/dist/internal-icons/icons/duo/RemoteControl2.d.ts +7 -0
  492. package/dist/internal-icons/icons/duo/RemoteControl2.js +13 -0
  493. package/dist/internal-icons/icons/duo/ReportFile.d.ts +7 -0
  494. package/dist/internal-icons/icons/duo/ReportFile.js +13 -0
  495. package/dist/internal-icons/icons/duo/Reposition.d.ts +7 -0
  496. package/dist/internal-icons/icons/duo/Reposition.js +13 -0
  497. package/dist/internal-icons/icons/duo/Rerouting.d.ts +7 -0
  498. package/dist/internal-icons/icons/duo/Rerouting.js +13 -0
  499. package/dist/internal-icons/icons/duo/Robot2.d.ts +7 -0
  500. package/dist/internal-icons/icons/duo/Robot2.js +13 -0
  501. package/dist/internal-icons/icons/duo/Robot3.d.ts +7 -0
  502. package/dist/internal-icons/icons/duo/Robot3.js +13 -0
  503. package/dist/internal-icons/icons/duo/Robot4.d.ts +7 -0
  504. package/dist/internal-icons/icons/duo/Robot4.js +13 -0
  505. package/dist/internal-icons/icons/duo/RockOn.d.ts +7 -0
  506. package/dist/internal-icons/icons/duo/RockOn.js +13 -0
  507. package/dist/internal-icons/icons/duo/RopeStanchions.d.ts +7 -0
  508. package/dist/internal-icons/icons/duo/RopeStanchions.js +13 -0
  509. package/dist/internal-icons/icons/duo/Rotation3602.d.ts +7 -0
  510. package/dist/internal-icons/icons/duo/Rotation3602.js +13 -0
  511. package/dist/internal-icons/icons/duo/SavedItems2.d.ts +7 -0
  512. package/dist/internal-icons/icons/duo/SavedItems2.js +13 -0
  513. package/dist/internal-icons/icons/duo/ScaleImg4k.d.ts +7 -0
  514. package/dist/internal-icons/icons/duo/ScaleImg4k.js +13 -0
  515. package/dist/internal-icons/icons/duo/ScanImage.d.ts +7 -0
  516. package/dist/internal-icons/icons/duo/ScanImage.js +13 -0
  517. package/dist/internal-icons/icons/duo/ScissorsSparkle.d.ts +7 -0
  518. package/dist/internal-icons/icons/duo/ScissorsSparkle.js +13 -0
  519. package/dist/internal-icons/icons/duo/Seatbelt.d.ts +7 -0
  520. package/dist/internal-icons/icons/duo/Seatbelt.js +13 -0
  521. package/dist/internal-icons/icons/duo/ShakaHand.d.ts +7 -0
  522. package/dist/internal-icons/icons/duo/ShakaHand.js +13 -0
  523. package/dist/internal-icons/icons/duo/ShapeRectangle.d.ts +7 -0
  524. package/dist/internal-icons/icons/duo/ShapeRectangle.js +13 -0
  525. package/dist/internal-icons/icons/duo/Shovel.d.ts +7 -0
  526. package/dist/internal-icons/icons/duo/Shovel.js +13 -0
  527. package/dist/internal-icons/icons/duo/ShuffleSparkle.d.ts +7 -0
  528. package/dist/internal-icons/icons/duo/ShuffleSparkle.js +13 -0
  529. package/dist/internal-icons/icons/duo/SideProfileQuestion.d.ts +7 -0
  530. package/dist/internal-icons/icons/duo/SideProfileQuestion.js +13 -0
  531. package/dist/internal-icons/icons/duo/SideProfileSparkle.d.ts +7 -0
  532. package/dist/internal-icons/icons/duo/SideProfileSparkle.js +13 -0
  533. package/dist/internal-icons/icons/duo/SidebarEdit.d.ts +7 -0
  534. package/dist/internal-icons/icons/duo/SidebarEdit.js +13 -0
  535. package/dist/internal-icons/icons/duo/SlashCircle.d.ts +7 -0
  536. package/dist/internal-icons/icons/duo/SlashCircle.js +13 -0
  537. package/dist/internal-icons/icons/duo/Sliders4.d.ts +7 -0
  538. package/dist/internal-icons/icons/duo/Sliders4.js +13 -0
  539. package/dist/internal-icons/icons/duo/Snail.d.ts +7 -0
  540. package/dist/internal-icons/icons/duo/Snail.js +13 -0
  541. package/dist/internal-icons/icons/duo/Spiral.d.ts +7 -0
  542. package/dist/internal-icons/icons/duo/Spiral.js +13 -0
  543. package/dist/internal-icons/icons/duo/SplitView.d.ts +7 -0
  544. package/dist/internal-icons/icons/duo/SplitView.js +13 -0
  545. package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.d.ts +7 -0
  546. package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.js +13 -0
  547. package/dist/internal-icons/icons/duo/SquareDashedText.d.ts +7 -0
  548. package/dist/internal-icons/icons/duo/SquareDashedText.js +13 -0
  549. package/dist/internal-icons/icons/duo/SquarePath.d.ts +7 -0
  550. package/dist/internal-icons/icons/duo/SquarePath.js +13 -0
  551. package/dist/internal-icons/icons/duo/Star2Slash.d.ts +7 -0
  552. package/dist/internal-icons/icons/duo/Star2Slash.js +13 -0
  553. package/dist/internal-icons/icons/duo/StopSign.d.ts +7 -0
  554. package/dist/internal-icons/icons/duo/StopSign.js +13 -0
  555. package/dist/internal-icons/icons/duo/StopwatchBolt.d.ts +7 -0
  556. package/dist/internal-icons/icons/duo/StopwatchBolt.js +13 -0
  557. package/dist/internal-icons/icons/duo/SummitFlag.d.ts +7 -0
  558. package/dist/internal-icons/icons/duo/SummitFlag.js +13 -0
  559. package/dist/internal-icons/icons/duo/Sunrise2.d.ts +7 -0
  560. package/dist/internal-icons/icons/duo/Sunrise2.js +13 -0
  561. package/dist/internal-icons/icons/duo/Task.d.ts +7 -0
  562. package/dist/internal-icons/icons/duo/Task.js +13 -0
  563. package/dist/internal-icons/icons/duo/Task2.d.ts +7 -0
  564. package/dist/internal-icons/icons/duo/Task2.js +13 -0
  565. package/dist/internal-icons/icons/duo/TaskDebug.d.ts +7 -0
  566. package/dist/internal-icons/icons/duo/TaskDebug.js +13 -0
  567. package/dist/internal-icons/icons/duo/TaskSearch.d.ts +7 -0
  568. package/dist/internal-icons/icons/duo/TaskSearch.js +13 -0
  569. package/dist/internal-icons/icons/duo/Teepee.d.ts +7 -0
  570. package/dist/internal-icons/icons/duo/Teepee.js +13 -0
  571. package/dist/internal-icons/icons/duo/TextAdjust.d.ts +7 -0
  572. package/dist/internal-icons/icons/duo/TextAdjust.js +13 -0
  573. package/dist/internal-icons/icons/duo/TheatreMask.d.ts +7 -0
  574. package/dist/internal-icons/icons/duo/TheatreMask.js +13 -0
  575. package/dist/internal-icons/icons/duo/TheatreMask2.d.ts +7 -0
  576. package/dist/internal-icons/icons/duo/TheatreMask2.js +13 -0
  577. package/dist/internal-icons/icons/duo/TimerProgress.d.ts +7 -0
  578. package/dist/internal-icons/icons/duo/TimerProgress.js +13 -0
  579. package/dist/internal-icons/icons/duo/TimerProgress2.d.ts +7 -0
  580. package/dist/internal-icons/icons/duo/TimerProgress2.js +13 -0
  581. package/dist/internal-icons/icons/duo/TransactionSplit.d.ts +7 -0
  582. package/dist/internal-icons/icons/duo/TransactionSplit.js +13 -0
  583. package/dist/internal-icons/icons/duo/Undo2.d.ts +7 -0
  584. package/dist/internal-icons/icons/duo/Undo2.js +13 -0
  585. package/dist/internal-icons/icons/duo/Undo3.d.ts +7 -0
  586. package/dist/internal-icons/icons/duo/Undo3.js +13 -0
  587. package/dist/internal-icons/icons/duo/UnicornHead.d.ts +7 -0
  588. package/dist/internal-icons/icons/duo/UnicornHead.js +13 -0
  589. package/dist/internal-icons/icons/duo/UserContact.d.ts +7 -0
  590. package/dist/internal-icons/icons/duo/UserContact.js +13 -0
  591. package/dist/internal-icons/icons/duo/UserVoice2.d.ts +7 -0
  592. package/dist/internal-icons/icons/duo/UserVoice2.js +13 -0
  593. package/dist/internal-icons/icons/duo/VipBadge.d.ts +7 -0
  594. package/dist/internal-icons/icons/duo/VipBadge.js +13 -0
  595. package/dist/internal-icons/icons/duo/VoiceCaption.d.ts +7 -0
  596. package/dist/internal-icons/icons/duo/VoiceCaption.js +13 -0
  597. package/dist/internal-icons/icons/duo/WalletCoins.d.ts +7 -0
  598. package/dist/internal-icons/icons/duo/WalletCoins.js +13 -0
  599. package/dist/internal-icons/icons/duo/Weight.d.ts +7 -0
  600. package/dist/internal-icons/icons/duo/Weight.js +13 -0
  601. package/dist/internal-icons/icons/duo/index.d.ts +245 -0
  602. package/dist/internal-icons/icons/duo/index.js +245 -0
  603. package/dist/preflight.css +1 -0
  604. package/dist/select/select.guide.json +17 -0
  605. package/dist/skeleton/skeleton.guide.json +23 -0
  606. package/dist/slider/slider.guide.json +23 -0
  607. package/dist/spinner/spinner.guide.json +23 -0
  608. package/dist/stack/stack.guide.json +20 -0
  609. package/dist/surface/surface.guide.json +23 -0
  610. package/dist/switch/switch.guide.json +23 -0
  611. package/dist/text/text.guide.json +20 -0
  612. package/dist/textarea/textarea.guide.json +17 -0
  613. package/dist/textfield/textfield.guide.json +20 -0
  614. package/dist/title/title.guide.json +20 -0
  615. package/package.json +64 -0
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DesktopDockProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DesktopDock: React.ForwardRefExoticComponent<Omit<DesktopDockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DesktopDock;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DesktopDock = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.25 2H3.75A2.753 2.753 0 0 0 1 4.75v8.5A2.753 2.753 0 0 0 3.75 16h10.5A2.753 2.753 0 0 0 17 13.25v-8.5A2.753 2.753 0 0 0 14.25 2", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M14.25 2H3.75A2.753 2.753 0 0 0 1 4.75V6h16V4.75A2.753 2.753 0 0 0 14.25 2m-.863 8.5H4.613a.75.75 0 0 0-.733.6l-.201 1.006a.747.747 0 0 0 .733.894h9.177a.747.747 0 0 0 .732-.894l-.2-1.005a.75.75 0 0 0-.734-.601" })] }) }));
11
+ });
12
+ DesktopDock.displayName = 'DesktopDock';
13
+ export default DesktopDock;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DiamondSparkleProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DiamondSparkle: React.ForwardRefExoticComponent<Omit<DiamondSparkleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DiamondSparkle;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DiamondSparkle = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m16.277 5.61-2.404-2.557A1.77 1.77 0 0 0 12.59 2.5H5.41a1.77 1.77 0 0 0-1.285.554L1.723 5.61h-.001A1.735 1.735 0 0 0 1.6 7.845L7.593 15.8c.334.445.846.7 1.405.7H9c.559 0 1.072-.255 1.407-.7L16.4 7.844a1.73 1.73 0 0 0-.123-2.235", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m12.589 7.406-1.515-.51-.505-1.526c-.164-.493-.975-.493-1.139 0l-.505 1.526-1.515.51c-.245.081-.41.313-.41.573s.165.491.41.573l1.515.51.505 1.525a.601.601 0 0 0 1.14 0l.505-1.526 1.515-.51a.605.605 0 0 0-.001-1.146" })] }) }));
11
+ });
12
+ DiamondSparkle.displayName = 'DiamondSparkle';
13
+ export default DiamondSparkle;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DocumentScanProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DocumentScan: React.ForwardRefExoticComponent<Omit<DocumentScanProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DocumentScan;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DocumentScan = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m12.78 6.72-2-2a.75.75 0 0 0-.53-.22h-3.5C5.785 4.5 5 5.285 5 6.25v5.5c0 .965.785 1.75 1.75 1.75h4.5c.965 0 1.75-.785 1.75-1.75v-4.5a.75.75 0 0 0-.22-.53", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2.75 7.5A.75.75 0 0 1 2 6.75v-2A2.753 2.753 0 0 1 4.75 2h2a.75.75 0 0 1 0 1.5h-2c-.69 0-1.25.56-1.25 1.25v2a.75.75 0 0 1-.75.75m12.5 0a.75.75 0 0 1-.75-.75v-2c0-.69-.56-1.25-1.25-1.25h-2a.75.75 0 0 1 0-1.5h2A2.753 2.753 0 0 1 16 4.75v2a.75.75 0 0 1-.75.75m-2 8.5h-2a.75.75 0 0 1 0-1.5h2c.69 0 1.25-.56 1.25-1.25v-2a.75.75 0 0 1 1.5 0v2A2.753 2.753 0 0 1 13.25 16m-6.5 0h-2A2.753 2.753 0 0 1 2 13.25v-2a.75.75 0 0 1 1.5 0v2c0 .69.56 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5m5.5-8h-2a.75.75 0 0 1-.75-.75v-2a.75.75 0 0 1 1.28-.53l2 2A.751.751 0 0 1 12.25 8" })] }) }));
11
+ });
12
+ DocumentScan.displayName = 'DocumentScan';
13
+ export default DocumentScan;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface Dog2Props extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const Dog2: React.ForwardRefExoticComponent<Omit<Dog2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default Dog2;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const Dog2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m17.419 4.019-2.96-.683-1.335-2.002a.75.75 0 0 0-1.342.2L10.442 6H4.25c-.057 0-.11.013-.167.017C4.055 6.013 4.03 6 4 6h-.75C2.56 6 2 5.44 2 4.75a.75.75 0 0 0-1.5 0c0 1.062.612 1.975 1.495 2.433A2.73 2.73 0 0 0 1.5 8.75V16c0 .414.336.75.75.75h1.5A.75.75 0 0 0 4.5 16v-3.14L5.058 11h.709A7.4 7.4 0 0 0 9.9 12.25H11V16c0 .414.336.75.75.75h1.5A.75.75 0 0 0 14 16v-2.935L14.88 8h.23c1.307 0 2.44-.93 2.697-2.211l.178-.892a.75.75 0 0 0-.566-.878", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "13.75", cy: "4.75", r: ".75" })] }) }));
11
+ });
12
+ Dog2.displayName = 'Dog2';
13
+ export default Dog2;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DogLeashProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DogLeash: React.ForwardRefExoticComponent<Omit<DogLeashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DogLeash;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DogLeash = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m17.419 4.019-2.96-.683-1.335-2.002a.75.75 0 0 0-1.342.2L10.442 6H4.25c-.057 0-.11.013-.167.017C4.055 6.013 4.03 6 4 6h-.75C2.56 6 2 5.44 2 4.75a.75.75 0 0 0-1.5 0c0 1.062.612 1.975 1.495 2.433A2.73 2.73 0 0 0 1.5 8.75v7c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75v-2.89L5.058 11h.709A7.4 7.4 0 0 0 9.9 12.25H11v3.5c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75v-2.685L14.88 8h.23c1.307 0 2.44-.93 2.697-2.211l.178-.892a.75.75 0 0 0-.566-.878", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M8.75 5A3.754 3.754 0 0 1 5 1.25a.75.75 0 0 1 1.5 0c0 1.24 1.01 2.25 2.25 2.25a.75.75 0 0 1 0 1.5m5.887 4.4c-1.963-.169-3.744-1.651-4.185-3.434l-.1.034H8.925c.45 2.51 2.774 4.614 5.451 4.902z" }), _jsx("circle", { cx: "13.75", cy: "4.75", r: ".75" })] }) }));
11
+ });
12
+ DogLeash.displayName = 'DogLeash';
13
+ export default DogLeash;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DogSlashProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DogSlash: React.ForwardRefExoticComponent<Omit<DogSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DogSlash;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DogSlash = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M1.995 7.183A2.73 2.73 0 0 0 1.5 8.75v7c0 .207.084.395.22.53L4.5 13.5v-.64L5.058 11h.709c.253.169.519.31.787.446l8.072-8.071-.167-.04-1.335-2.001a.75.75 0 0 0-1.342.2L10.442 6H4.25c-.057 0-.11.013-.167.017C4.055 6.013 4.03 6 4 6h-.75C2.56 6 2 5.44 2 4.75a.75.75 0 0 0-1.5 0c0 1.062.612 1.975 1.495 2.433m15.424-3.164-.208-.048-8.213 8.213a8 8 0 0 0 .902.066H11v3.5c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75v-2.685L14.88 8h.23c1.307 0 2.44-.93 2.697-2.211l.178-.892a.75.75 0 0 0-.566-.878", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M8.75 5A3.754 3.754 0 0 1 5 1.25a.75.75 0 0 1 1.5 0c0 1.24 1.01 2.25 2.25 2.25a.75.75 0 0 1 0 1.5m2.178 2.072c-.21-.35-.38-.719-.476-1.106l-.1.034H8.925c.139.773.472 1.498.922 2.153zm.498 2.684c.863.611 1.874 1.03 2.95 1.146l.261-1.502a4.8 4.8 0 0 1-2.126-.73z" }), _jsx("path", { d: "M2 16.75a.75.75 0 0 1-.53-1.28l14-14a.75.75 0 1 1 1.06 1.06l-14 14a.75.75 0 0 1-.53.22" })] }) }));
11
+ });
12
+ DogSlash.displayName = 'DogSlash';
13
+ export default DogSlash;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DotFormationProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DotFormation: React.ForwardRefExoticComponent<Omit<DotFormationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DotFormation;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DotFormation = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("circle", { cx: "9", cy: "9", r: "2" }), _jsx("circle", { cx: "9", cy: "3", r: "2", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M5 4.268a2 2 0 0 0-1.516-.2c-.517.138-.947.469-1.215.93S1.931 6 2.07 6.517s.469.947.932 1.215a1.98 1.98 0 0 0 1.517.2 2.002 2.002 0 0 0 .483-3.663m-.484 5.799c-.517-.139-1.054-.067-1.517.2s-.794.698-.932 1.214a2 2 0 0 0 .2 1.517 2.01 2.01 0 0 0 1.735 1 2.002 2.002 0 0 0 .514-3.932", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "9", cy: "15", r: "2", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M14.999 10.269a2 2 0 0 0-1.517-.2 1.98 1.98 0 0 0-1.214.931 2.002 2.002 0 0 0 2.248 2.932c.517-.138.947-.47 1.215-.931s.338-1.002.2-1.518-.469-.947-.932-1.214m-1.517-2.337q.26.069.52.069c.347 0 .689-.91.997-.27.463-.266.794-.698.932-1.214a2 2 0 0 0-.2-1.517 2 2 0 0 0-1.215-.932 2.002 2.002 0 0 0-1.035 3.863", "data-color": "color-2", opacity: ".4" })] }) }));
11
+ });
12
+ DotFormation.displayName = 'DotFormation';
13
+ export default DotFormation;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface DrawFingerProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const DrawFinger: React.ForwardRefExoticComponent<Omit<DrawFingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default DrawFinger;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const DrawFinger = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M4.25 8.5C3.01 8.5 2 7.49 2 6.25S3.01 4 4.25 4h9.5a.751.751 0 0 0 0-1.5h-2.5a.75.75 0 0 1 0-1.5h2.5C14.99 1 16 2.01 16 3.25S14.99 5.5 13.75 5.5h-9.5a.751.751 0 0 0 0 1.5.75.75 0 0 1 0 1.5" }), _jsx("path", { d: "M11.004 10.166c1.795-.467 4.598-.564 5.587.192.649.495 1.033 1.478 1.144 3.116.281 4.154-1.156 4.28-3.791 4.28h-2.94c-1.963 0-3.25-.892-4.749-1.66-.696-.356-1.075-1.17-.812-1.907a1.43 1.43 0 0 1 1.84-.86l1.985.729-2.416-5.261A1.606 1.606 0 1 1 9.775 7.46z", "data-color": "color-2", opacity: ".4" })] }) }));
11
+ });
12
+ DrawFinger.displayName = 'DrawFinger';
13
+ export default DrawFinger;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface EarProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const Ear: React.ForwardRefExoticComponent<Omit<EarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default Ear;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const Ear = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M10.5 6.99a.75.75 0 0 1-.75-.75c0-.408-.336-.74-.75-.74s-.75.332-.75.74a.75.75 0 0 1-1.5 0C6.75 5.005 7.76 4 9 4s2.25 1.005 2.25 2.24a.75.75 0 0 1-.75.75" }), _jsx("path", { d: "M7.316 17.004c-1.368 0-2.506-.821-3.163-1.89a.75.75 0 1 1 1.277-.787c.557.904 1.65 1.603 3.05.854.64-.341.741-.817.892-1.775.124-.787.28-1.767.973-2.723.318-.44.646-.794.963-1.136.837-.903 1.442-1.557 1.442-3.307 0-2.062-1.682-3.74-3.75-3.74S5.25 4.178 5.25 6.24a.75.75 0 0 1-1.5 0C3.75 3.35 6.105 1 9 1s5.25 2.35 5.25 5.24c0 2.339-.937 3.35-1.842 4.327-.286.309-.583.63-.848.996-.483.665-.591 1.35-.706 2.077-.16 1.01-.34 2.156-1.668 2.864-.652.348-1.282.5-1.87.5", "data-color": "color-2", opacity: ".4" })] }) }));
11
+ });
12
+ Ear.displayName = 'Ear';
13
+ export default Ear;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface EarSoundProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const EarSound: React.ForwardRefExoticComponent<Omit<EarSoundProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default EarSound;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const EarSound = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M12.75 6.99a.75.75 0 0 1-.75-.75c0-.408-.336-.74-.75-.74s-.75.332-.75.74a.75.75 0 0 1-1.5 0C9 5.005 10.01 4 11.25 4s2.25 1.005 2.25 2.24a.75.75 0 0 1-.75.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9.566 17.004c-1.368 0-2.506-.821-3.163-1.89a.75.75 0 1 1 1.277-.787c.557.904 1.65 1.603 3.05.854.64-.341.741-.817.892-1.775.124-.787.28-1.767.973-2.723.318-.44.646-.794.963-1.136C14.395 8.644 15 7.99 15 6.24a3.75 3.75 0 0 0-3.75-3.74 3.736 3.736 0 0 0-3.647 2.863.75.75 0 1 1-1.458-.352 5.23 5.23 0 0 1 5.105-4.01c2.895 0 5.25 2.35 5.25 5.239 0 2.339-.936 3.35-1.842 4.327-.286.309-.583.63-.848.996-.483.665-.591 1.35-.705 2.077-.16 1.01-.341 2.156-1.668 2.864-.653.348-1.283.5-1.87.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.048 14.321a.75.75 0 0 1-.53-1.28 4.256 4.256 0 0 0 0-6.01.75.75 0 1 1 1.06-1.061 5.757 5.757 0 0 1 0 8.132.75.75 0 0 1-.53.22ZM1.75 12.023a.75.75 0 0 1-.53-1.28c.189-.19.293-.44.293-.707s-.104-.518-.293-.707a.75.75 0 1 1 1.06-1.06c.472.47.733 1.099.733 1.767s-.26 1.295-.733 1.767a.75.75 0 0 1-.53.22" })] }) }));
11
+ });
12
+ EarSound.displayName = 'EarSound';
13
+ export default EarSound;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface EmbedProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const Embed: React.ForwardRefExoticComponent<Omit<EmbedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default Embed;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const Embed = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.75 8.25h-3.826A4 4 0 0 0 9 5C6.794 5 5 6.794 5 9s1.794 4 4 4a4 4 0 0 0 3.924-3.25h3.826a.75.75 0 0 0 0-1.5" }), _jsx("path", { d: "M14.844 11.342a.75.75 0 0 0-1.018.297A5.5 5.5 0 0 1 9 14.5c-3.032 0-5.5-2.467-5.5-5.5S5.968 3.5 9 3.5a5.5 5.5 0 0 1 4.826 2.86.75.75 0 1 0 1.315-.72A7 7 0 0 0 9 2C5.393 2 2.416 4.742 2.04 8.25h-.79a.75.75 0 0 0 0 1.5h.79C2.418 13.258 5.395 16 9.002 16a7 7 0 0 0 6.14-3.64.75.75 0 0 0-.297-1.018Z", "data-color": "color-2", opacity: ".4" })] }) }));
11
+ });
12
+ Embed.displayName = 'Embed';
13
+ export default Embed;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface EnterDoorProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const EnterDoor: React.ForwardRefExoticComponent<Omit<EnterDoorProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default EnterDoor;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const EnterDoor = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M13.75 9a2.23 2.23 0 0 1-1.59-.66l-2.5-2.5C9.233 5.417 9 4.852 9 4.25s.234-1.166.66-1.59L11.317 1H5.75C4.51 1 3.5 2.01 3.5 3.25V15.5h11V8.864a2.2 2.2 0 0 1-.75.136", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.25 17H2.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5m-4-6h-1a.75.75 0 0 1 0-1.5h1a.75.75 0 0 1 0 1.5m5-7.5h-3.19l1.22-1.22a.75.75 0 1 0-1.06-1.06l-2.5 2.5a.75.75 0 0 0 0 1.06l2.5 2.5a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06L13.06 5h3.19a.75.75 0 0 0 0-1.5" })] }) }));
11
+ });
12
+ EnterDoor.displayName = 'EnterDoor';
13
+ export default EnterDoor;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface EnterHomeProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const EnterHome: React.ForwardRefExoticComponent<Omit<EnterHomeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default EnterHome;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const EnterHome = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m15.309 5.353-5.25-3.99a1.755 1.755 0 0 0-2.118 0l-5.25 3.99A1.76 1.76 0 0 0 2 6.746v7.504A2.753 2.753 0 0 0 4.75 17h8.5A2.753 2.753 0 0 0 16 14.25V6.746a1.76 1.76 0 0 0-.691-1.393", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m10.28 10.22-2.5-2.5a.75.75 0 1 0-1.06 1.06L7.94 10H2a.75.75 0 0 0 0 1.5h5.94l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06" })] }) }));
11
+ });
12
+ EnterHome.displayName = 'EnterHome';
13
+ export default EnterHome;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ExitDoorProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const ExitDoor: React.ForwardRefExoticComponent<Omit<ExitDoorProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default ExitDoor;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const ExitDoor = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M13.75 9a2.23 2.23 0 0 1-1.59-.66 2.23 2.23 0 0 1-.646-1.84h-.264C10.01 6.5 9 5.49 9 4.25S10.01 2 11.25 2h.264a2.24 2.24 0 0 1 .123-1H5.75C4.51 1 3.5 2.01 3.5 3.25V15.5h11V8.864a2.2 2.2 0 0 1-.75.136", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.25 17H2.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5m-4-6h-1a.75.75 0 0 1 0-1.5h1a.75.75 0 0 1 0 1.5m5.53-7.28-2.5-2.5a.75.75 0 1 0-1.06 1.06l1.22 1.22h-3.19a.75.75 0 0 0 0 1.5h3.19l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06" })] }) }));
11
+ });
12
+ ExitDoor.displayName = 'ExitDoor';
13
+ export default ExitDoor;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface Export2Props extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const Export2: React.ForwardRefExoticComponent<Omit<Export2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default Export2;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const Export2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M12.78 4.47 9.53 1.22a.75.75 0 0 0-1.06 0L5.22 4.47a.75.75 0 1 0 1.06 1.06l1.97-1.97v4.69a.75.75 0 0 0 1.5 0V3.56l1.97 1.97a.747.747 0 0 0 1.06 0 .75.75 0 0 0 0-1.06" }), _jsx("path", { d: "M13.25 10.5h-8.5c-1.792 0-3.25 1.458-3.25 3.25S2.958 17 4.75 17h8.5c1.792 0 3.25-1.458 3.25-3.25s-1.458-3.25-3.25-3.25", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "5", cy: "13.75", r: "1" }), _jsx("circle", { cx: "8", cy: "13.75", r: "1" })] }) }));
11
+ });
12
+ Export2.displayName = 'Export2';
13
+ export default Export2;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface EyeSparkleProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const EyeSparkle: React.ForwardRefExoticComponent<Omit<EyeSparkleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default EyeSparkle;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const EyeSparkle = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.61 7.518h-.002C15.797 6.083 13.43 2.75 9 2.75S2.203 6.084 1.39 7.518a2.99 2.99 0 0 0 .002 2.965C2.204 11.917 4.572 15.25 9 15.25s6.796-3.333 7.61-4.768a2.99 2.99 0 0 0 0-2.964", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m11.98 8.286-1.713-.553-.553-1.713a.75.75 0 0 0-1.428 0l-.553 1.713-1.714.553a.75.75 0 0 0 0 1.428l1.714.553.553 1.714a.75.75 0 0 0 1.428 0l.553-1.714 1.713-.553a.75.75 0 0 0 0-1.428" })] }) }));
11
+ });
12
+ EyeSparkle.displayName = 'EyeSparkle';
13
+ export default EyeSparkle;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FaceRobotProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FaceRobot: React.ForwardRefExoticComponent<Omit<FaceRobotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FaceRobot;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FaceRobot = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "15", height: "13", x: "1.5", y: "3", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M12 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 9a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4.5 3.5h-5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5m-10-5h-.25a.75.75 0 0 0-.75.75v2.5c0 .414.336.75.75.75h.25zm15 0h.25a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-.75.75h-.25zM9.75 3V1.25a.75.75 0 0 0-1.5 0V3z" })] }) }));
11
+ });
12
+ FaceRobot.displayName = 'FaceRobot';
13
+ export default FaceRobot;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FaceRobot2Props extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FaceRobot2: React.ForwardRefExoticComponent<Omit<FaceRobot2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FaceRobot2;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FaceRobot2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "15", height: "13", x: "1.5", y: "3", "data-color": "color-2", opacity: ".4", rx: "4.75", ry: "4.75" }), _jsx("path", { d: "M9.75 12.5h-1.5c-.69 0-1.25.56-1.25 1.25V14a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-.25c0-.69-.56-1.25-1.25-1.25" }), _jsx("circle", { cx: "5.75", cy: "9.75", r: "1.25" }), _jsx("circle", { cx: "12.25", cy: "9.75", r: "1.25" }), _jsx("path", { d: "M1.5 11.25v-3.5c0-.86.02-.165.025-.25H1.5C.81 7.5.25 8.06.25 8.75v1.5c0 .69.56 1.25 1.25 1.25h.025c-.004-.084-.025-.164-.025-.25m15-3.75h-.025c.4.085.25.164.25.25v3.5c0 .086-.2.166-.25.25h.025c.69 0 1.25-.56 1.25-1.25v-1.5c0-.69-.56-1.25-1.25-1.25M9.75 3V1.5a.75.75 0 0 0-1.5 0V3z" })] }) }));
11
+ });
12
+ FaceRobot2.displayName = 'FaceRobot2';
13
+ export default FaceRobot2;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FaceRobot3Props extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FaceRobot3: React.ForwardRefExoticComponent<Omit<FaceRobot3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FaceRobot3;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FaceRobot3 = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M10.25 2.5h-.5v-1a.75.75 0 0 0-1.5 0v1h-.5C5.13 2.5 3 4.63 3 7.25v1.5a2.753 2.753 0 0 0 2.75 2.75h6.5A2.753 2.753 0 0 0 15 8.75v-1.5c0-2.62-2.13-4.75-4.75-4.75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "6.5", cy: "7", r: "1" }), _jsx("circle", { cx: "11.5", cy: "7", r: "1" }), _jsx("path", { d: "m4.028 12.967-.75-.75a.746.746 0 0 1 0-1.06l.5-.499a2.74 2.74 0 0 1-.726-1.395l-.834.833c-.425.425-.66.99-.66 1.591s.235 1.167.66 1.591l.75.75a2.21 2.21 0 0 0 .43 2.502.747.747 0 0 0 1.061 0 .75.75 0 0 0 0-1.06.716.716 0 0 1 1.01-1.01.75.75 0 0 0 1.061-1.062 2.21 2.21 0 0 0-2.502-.43Zm12.413-1.279c0-.602-.234-1.167-.659-1.591l-.834-.834a2.74 2.74 0 0 1-.725 1.396l.499.499a.746.746 0 0 1 0 1.06l-.75.749a2.215 2.215 0 0 0-2.502.431.75.75 0 0 0 1.06 1.062.715.715 0 0 1 1.011 1.01.75.75 0 1 0 1.06 1.06 2.21 2.21 0 0 0 .432-2.502l.75-.75c.424-.424.659-.99.659-1.59Z" })] }) }));
11
+ });
12
+ FaceRobot3.displayName = 'FaceRobot3';
13
+ export default FaceRobot3;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FerrisWheelProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FerrisWheel: React.ForwardRefExoticComponent<Omit<FerrisWheelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FerrisWheel;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FerrisWheel = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M7.827 1a1.2 1.2 0 0 0-.77.417 1.25 1.25 0 0 0 2.5 0c0-.147-.03-.286-.076-.417zm6.75 6a1.2 1.2 0 0 0-.77.417 1.25 1.25 0 0 0 2.5 0c0-.147-.03-.286-.076-.417zM3.424 7c.46.131.76.27.76.417a1.25 1.25 0 0 1-2.5 0c0-.147.03-.286.077-.417zm2-4c.46.131.76.27.76.417a1.25 1.25 0 0 1-2.5 0c0-.147.03-.286.077-.417zm-1 8.5c.46.131.76.27.76.417a1.25 1.25 0 0 1-2.5 0c0-.147.03-.286.077-.417zM12.577 3a1.2 1.2 0 0 0-.77.417 1.25 1.25 0 0 0 2.5 0c0-.147-.03-.286-.076-.417zm1 8.5a1.2 1.2 0 0 0-.77.417 1.25 1.25 0 0 0 2.5 0c0-.147-.03-.286-.076-.417z" }), _jsx("path", { d: "M14.25 15.5h-1.908l-2.189-5.22A2.122 2.122 0 0 0 9 6.375a2.122 2.122 0 0 0-1.153 3.905L5.658 15.5H3.75a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m6.344 13.864.58-1.384A4.48 4.48 0 0 1 4.5 8.5C4.5 6.02 6.519 4 9 4s4.5 2.019 4.5 4.5a4.48 4.48 0 0 1-2.424 3.98l.58 1.384A5.98 5.98 0 0 0 15 8.5c0-3.309-2.691-6-6-6s-6 2.691-6 6a5.98 5.98 0 0 0 3.344 5.364" })] }) }));
11
+ });
12
+ FerrisWheel.displayName = 'FerrisWheel';
13
+ export default FerrisWheel;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FileExportProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FileExport: React.ForwardRefExoticComponent<Omit<FileExportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FileExport;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FileExport = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m15.487 5.427-3.915-3.915A1.75 1.75 0 0 0 10.336 1H5.75A2.75 2.75 0 0 0 3 3.75v10.5A2.75 2.75 0 0 0 5.75 17h7.5A2.75 2.75 0 0 0 16 14.25V6.666c0-.465-.185-.91-.513-1.239", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.87 6.001H12c-.55 0-1-.45-1-1v-3.87c.212.087.407.216.572.381l3.915 3.915c.166.166.295.361.382.574M9.78 10.22 7.53 7.97a.75.75 0 1 0-1.06 1.06l.97.97H4a2.503 2.503 0 0 0-2.5 2.5c0 1.022.619 1.901 1.5 2.288V12.5c0-.551.449-1 1-1h3.44l-.97.97a.75.75 0 1 0 1.06 1.06l2.25-2.25a.75.75 0 0 0 0-1.06" })] }) }));
11
+ });
12
+ FileExport.displayName = 'FileExport';
13
+ export default FileExport;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FlagMenuProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FlagMenu: React.ForwardRefExoticComponent<Omit<FlagMenuProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FlagMenu;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FlagMenu = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M7.745 9.85A2.47 2.47 0 0 1 9 9.5c.565 0 1.08.195 1.5.513.42-.318.935-.513 1.5-.513s1.08.195 1.5.513c.42-.318.935-.513 1.5-.513V3.24a.75.75 0 0 0-1.178-.616c-1 .695-1.928.984-2.738.859-.658-.101-1.109-.444-1.631-.84-.598-.456-1.274-.971-2.307-1.129-1.004-.155-2.06.097-3.146.705v8.261c.06-.22.125-.25.179-.62.999-.695 1.923-.985 2.738-.859.313.48.578.154.828.292", "data-color": "color-2", opacity: ".4" }), _jsx("path", { fillRule: "evenodd", d: "M3.75 1.25A.75.75 0 0 1 4.5 2v14A.75.75 0 0 1 3 16V2a.75.75 0 0 1 .75-.75" }), _jsx("path", { d: "M12 13a1 1 0 0 1 0-2 1 1 0 0 1 0 2m-3 0a1 1 0 0 1 0-2 1 1 0 0 1 0 2m6 0a1 1 0 0 1 0-2 1 1 0 0 1 0 2" })] }) }));
11
+ });
12
+ FlagMenu.displayName = 'FlagMenu';
13
+ export default FlagMenu;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FocusCenterProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FocusCenter: React.ForwardRefExoticComponent<Omit<FocusCenterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FocusCenter;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FocusCenter = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("circle", { cx: "9", cy: "9", r: "3", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m15.06 9 1.72-1.72a.75.75 0 1 0-1.06-1.06l-2.25 2.25a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06zm-5.53 4.47a.75.75 0 0 0-1.06 0l-2.25 2.25a.75.75 0 1 0 1.06 1.06L9 15.06l1.72 1.72a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06zM2.28 6.22a.75.75 0 1 0-1.06 1.06L2.94 9l-1.72 1.72a.75.75 0 1 0 1.06 1.06l2.25-2.25a.75.75 0 0 0 0-1.06zm8.44-5L9 2.94 7.28 1.22a.75.75 0 1 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.06 0l2.25-2.25a.75.75 0 1 0-1.06-1.06" })] }) }));
11
+ });
12
+ FocusCenter.displayName = 'FocusCenter';
13
+ export default FocusCenter;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface FoodOrderProps extends SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+ declare const FoodOrder: React.ForwardRefExoticComponent<Omit<FoodOrderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+ export default FoodOrder;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ const FoodOrder = React.forwardRef(({ size, className, style, ...props }, ref) => {
4
+ const dimensions = size
5
+ ? { width: size, height: size }
6
+ : {
7
+ width: props.width || 18,
8
+ height: props.height || 18,
9
+ };
10
+ return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.8 9.24a.75.75 0 0 0-.55-.24h-1.912l.097-.875a.26.26 0 0 1 .136-.197l1.514-.757a.75.75 0 1 0-.67-1.342l-1.514.757c-.532.266-.89.778-.957 1.372L12.83 9h-2.08a.75.75 0 0 0-.747.808l.429 5.576c.7.906.835 1.616 1.745 1.616h2.648c.91 0 1.675-.71 1.745-1.616l.429-5.576a.75.75 0 0 0-.198-.568Z" }), _jsx("path", { d: "m8.936 15.5-.43-5.578A2.25 2.25 0 0 1 10.75 7.5h.75a3.22 3.22 0 0 1 .996-1.733A2.73 2.73 0 0 0 10.19 4.5H4.31a2.74 2.74 0 0 0-2.737 2.477l-.6 6A2.75 2.75 0 0 0 3.71 16h5.314a3 3 0 0 1-.088-.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M6 4.5v-.75a1.251 1.251 0 0 1 2.5 0v.75H10v-.75C10 2.233 8.767 1 7.25 1S4.5 2.233 4.5 3.75v.75z" })] }) }));
11
+ });
12
+ FoodOrder.displayName = 'FoodOrder';
13
+ export default FoodOrder;