@class101/cdn-ui-system 0.0.7 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1000) hide show
  1. package/chunk-2A2YD3YP.js +22244 -0
  2. package/chunk-37VQUPZR.js +217 -0
  3. package/chunk-BDSNAS3L.js +183 -0
  4. package/chunk-CGEEKALF.js +184 -0
  5. package/chunk-ESGHR2XF.js +603 -0
  6. package/chunk-IFZN3H2K.js +515 -0
  7. package/chunk-IPFBPHEG.js +9145 -0
  8. package/chunk-J3Q2BPOW.js +19 -0
  9. package/chunk-KBZLTPPY.js +58 -0
  10. package/chunk-KTYFPJF3.js +5428 -0
  11. package/chunk-LE44IRCL.js +152 -0
  12. package/chunk-LN36XQS3.js +47 -0
  13. package/chunk-MBYCGPJ2.js +29 -0
  14. package/chunk-O6RRFC57.js +255 -0
  15. package/chunk-QNI6E7MT.js +39 -0
  16. package/chunk-R4HM35UZ.js +84 -0
  17. package/chunk-RYCV4KQR.js +187 -0
  18. package/chunk-SFQY5CLW.js +300 -0
  19. package/chunk-SFWBAQL4.js +21 -0
  20. package/chunk-SPRM5WZD.js +29 -0
  21. package/chunk-SU3NURQK.js +254 -0
  22. package/chunk-T7TBQTBE.js +1510 -0
  23. package/chunk-VIIHQGZ3.js +76 -0
  24. package/chunk-XXMJSYNO.js +952 -0
  25. package/contexts/ImageContext/ImageContext.js +5 -3
  26. package/contexts/ImageContext/index.js +5 -3
  27. package/contexts/LinkContext/LinkContext.js +5 -3
  28. package/contexts/LinkContext/index.js +5 -3
  29. package/contexts/SafeAreaContext/SafeAreaContext.js +11 -0
  30. package/contexts/SafeAreaContext/index.js +10 -0
  31. package/contexts/ScrollContext/ScrollContext.js +18 -0
  32. package/contexts/ScrollContext/index.js +11 -0
  33. package/contexts/UiSystemProvider.js +19 -10
  34. package/core/colors/DarkModeColors.js +6 -3
  35. package/core/colors/LightModeColors.js +6 -3
  36. package/core/index.js +21 -9
  37. package/core/props/action.js +8 -3
  38. package/core/props/animator.js +8 -3
  39. package/core/props/background.js +14 -4
  40. package/core/props/border.js +33 -5
  41. package/core/props/color.js +8 -3
  42. package/core/props/flexbox.js +17 -4
  43. package/core/props/icon.js +8 -3
  44. package/core/props/image.js +15 -6
  45. package/core/props/index.js +47 -22
  46. package/core/props/layout.js +37 -5
  47. package/core/props/position.js +8 -3
  48. package/core/props/shadow.js +8 -3
  49. package/core/props/space.js +8 -3
  50. package/core/props/transform.js +34 -3
  51. package/core/props/transition.js +8 -3
  52. package/core/props/types/ResponsiveValue.js +6 -2
  53. package/core/props/types/SystemComponent.js +6 -2
  54. package/core/props/typography.js +15 -5
  55. package/core/props/utils/calculateResponsiveValues.js +27 -0
  56. package/core/props/utils/getResponsiveValue.js +17 -10
  57. package/core/props/utils/skipForwardProps.js +8 -4
  58. package/core/props/video.js +9 -3
  59. package/core/theme/baseTheme.js +17 -4
  60. package/core/theme/defaultTheme.js +12 -10
  61. package/core/theme/signatureTheme.js +14 -11
  62. package/core/variants/baseVariant/baseVariant.js +7 -5
  63. package/core/variants/baseVariant/index.js +5 -3
  64. package/core/variants/makeStyled/index.js +11 -0
  65. package/core/variants/makeStyled/makeStyled.js +19 -0
  66. package/core/variants/propVariant/index.js +5 -3
  67. package/core/variants/propVariant/propVariant.js +12 -14
  68. package/core/variants/propVariant/propVariant.spec.js +13 -11
  69. package/core/variants/propsVariant/index.js +10 -0
  70. package/core/variants/propsVariant/propsVariant.js +32 -0
  71. package/core/variants/propsVariant/propsVariant.spec.js +73 -0
  72. package/core/variants/styleVariant/index.js +5 -3
  73. package/core/variants/styleVariant/styleVariant.js +21 -14
  74. package/core/variants/styleVariant/styleVariant.spec.js +17 -13
  75. package/core/variants/stylesVariant/index.js +10 -0
  76. package/core/variants/stylesVariant/stylesVariant.js +40 -0
  77. package/core/variants/stylesVariant/stylesVariant.spec.js +52 -0
  78. package/core/variants/system/index.js +5 -3
  79. package/core/variants/system/system.js +27 -19
  80. package/core/variants/system/type.js +6 -0
  81. package/hooks/useIsMobile/index.js +10 -0
  82. package/hooks/useIsMobile/useIsMobile.js +12 -0
  83. package/hooks/useMediaQuery/index.js +10 -0
  84. package/hooks/useMediaQuery/useMediaQuery.js +32 -0
  85. package/hooks/useNativeResponsiveValue/index.js +10 -0
  86. package/hooks/useNativeResponsiveValue/useNativeResponsiveValue.js +42 -0
  87. package/hooks/useResponsiveValue/index.js +5 -3
  88. package/hooks/useResponsiveValue/useResponsiveValue.js +18 -8
  89. package/hooks/useWindowResizeEvent/index.js +10 -0
  90. package/hooks/useWindowResizeEvent/useWindowResizeEvent.js +27 -0
  91. package/index.js +160 -100
  92. package/lib/Accordion/Accordion.js +27 -17
  93. package/lib/Accordion/index.js +5 -3
  94. package/lib/Action/Action.js +18 -15
  95. package/lib/Action/index.js +5 -3
  96. package/lib/Alert/Alert.js +16 -11
  97. package/lib/Alert/index.js +5 -3
  98. package/lib/Animation/Animator/Animator.js +37 -25
  99. package/lib/Animation/Animator/index.js +5 -3
  100. package/lib/Animation/FadeAnimation/FadeAnimation.js +28 -15
  101. package/lib/Animation/FadeAnimation/index.js +5 -3
  102. package/lib/Animation/RotateAnimation/RotateAnimation.js +16 -8
  103. package/lib/Animation/RotateAnimation/index.js +5 -3
  104. package/lib/Animation/SlideAnimation/SlideAnimation.js +20 -10
  105. package/lib/Animation/SlideAnimation/index.js +5 -3
  106. package/lib/Animation/Transition/Transition.js +27 -16
  107. package/lib/Animation/Transition/index.js +5 -3
  108. package/lib/Avatar/Avatar.js +100 -82
  109. package/lib/Avatar/index.js +5 -3
  110. package/lib/Backdrop/Backdrop.js +15 -9
  111. package/lib/Backdrop/index.js +5 -3
  112. package/lib/Background/Background.js +15 -25
  113. package/lib/Background/index.js +5 -3
  114. package/lib/BackgroundImage/BackgroundImage.js +20 -0
  115. package/lib/BackgroundImage/index.js +10 -0
  116. package/lib/BreadCrumb/BreadCrumb.js +21 -12
  117. package/lib/BreadCrumb/index.js +5 -3
  118. package/lib/BulletPagination/BulletPagination.js +37 -0
  119. package/lib/BulletPagination/index.js +10 -0
  120. package/lib/Button/Button/Button.js +69 -19
  121. package/lib/Button/Button/index.js +5 -3
  122. package/lib/Button/ContainedButton/ContainedButton.js +147 -123
  123. package/lib/Button/ContainedButton/index.js +5 -3
  124. package/lib/Button/GhostButton/GhostButton.js +155 -0
  125. package/lib/Button/GhostButton/index.js +10 -0
  126. package/lib/Button/TextButton/TextButton.js +112 -104
  127. package/lib/Button/TextButton/index.js +5 -3
  128. package/lib/Callout/Callout.js +71 -0
  129. package/lib/Callout/index.js +10 -0
  130. package/lib/Chip/FilterChip/FilterChip.js +77 -0
  131. package/lib/Chip/FilterChip/index.js +10 -0
  132. package/lib/Chip/InputChip/InputChip.js +1443 -0
  133. package/lib/Chip/InputChip/index.js +10 -0
  134. package/lib/ConditionalWrapper/ConditionalWrapper.js +6 -3
  135. package/lib/ConditionalWrapper/index.js +5 -3
  136. package/lib/ContentArea/ContentArea.js +41 -0
  137. package/lib/ContentArea/index.js +10 -0
  138. package/lib/Divider/Divider.js +19 -15
  139. package/lib/Divider/index.js +5 -3
  140. package/lib/Dot/Dot.js +29 -0
  141. package/lib/Dot/index.js +10 -0
  142. package/lib/Drawer/Drawer.js +57 -0
  143. package/lib/Drawer/index.js +10 -0
  144. package/lib/Elevation/Elevation.js +18 -7
  145. package/lib/Elevation/index.js +5 -3
  146. package/lib/Form/CardNumberField/CardNumberField.js +28 -0
  147. package/lib/Form/CardNumberField/index.js +10 -0
  148. package/lib/Form/CardNumberInput/CardNumberInput.js +50 -0
  149. package/lib/Form/CardNumberInput/constants.js +16 -0
  150. package/lib/Form/CardNumberInput/index.js +10 -0
  151. package/lib/Form/CardNumberInput/utils.js +48 -0
  152. package/lib/Form/CheckBox/CheckBox.js +26 -20
  153. package/lib/Form/CheckBox/index.js +5 -3
  154. package/lib/Form/CheckBoxField/CheckBoxField.js +26 -17
  155. package/lib/Form/CheckBoxField/index.js +5 -3
  156. package/lib/Form/Description/Description.js +28 -19
  157. package/lib/Form/Description/index.js +5 -3
  158. package/lib/Form/FormField/FormField.js +10 -7
  159. package/lib/Form/FormField/index.js +5 -3
  160. package/lib/Form/HiddenInput/HiddenInput.js +26 -22
  161. package/lib/Form/HiddenInput/index.js +5 -3
  162. package/lib/Form/InlineTextLabel/InlineTextLabel.js +78 -20
  163. package/lib/Form/InlineTextLabel/index.js +5 -3
  164. package/lib/Form/Input/Input.js +23 -46
  165. package/lib/Form/Input/index.js +5 -3
  166. package/lib/Form/Label/Label.js +6 -3
  167. package/lib/Form/Label/index.js +5 -3
  168. package/lib/Form/Radio/Radio.js +47 -0
  169. package/lib/Form/Radio/index.js +10 -0
  170. package/lib/Form/RadioField/RadioField.js +38 -0
  171. package/lib/Form/RadioField/index.js +10 -0
  172. package/lib/Form/RadioGroupField/RadioGroupField.js +49 -0
  173. package/lib/Form/RadioGroupField/index.js +10 -0
  174. package/lib/Form/Range/Range.js +21 -17
  175. package/lib/Form/Range/index.js +5 -3
  176. package/lib/Form/SearchInput/SearchInput.js +72 -0
  177. package/lib/Form/SearchInput/index.js +10 -0
  178. package/lib/Form/Select/Select.js +60 -44
  179. package/lib/Form/Select/index.js +5 -3
  180. package/lib/Form/SelectField/SelectField.js +23 -16
  181. package/lib/Form/SelectField/index.js +5 -3
  182. package/lib/Form/TextArea/TextArea.js +16 -10
  183. package/lib/Form/TextArea/index.js +5 -3
  184. package/lib/Form/TextAreaField/TextAreaField.js +28 -0
  185. package/lib/Form/TextAreaField/index.js +10 -0
  186. package/lib/Form/TextField/TextField.js +23 -16
  187. package/lib/Form/TextField/index.js +5 -3
  188. package/lib/Form/TextInput/TextInput.js +32 -0
  189. package/lib/Form/TextInput/index.js +10 -0
  190. package/lib/Form/TextInput/variants.js +42 -0
  191. package/lib/Form/TextLabel/TextLabel.js +9 -6
  192. package/lib/Form/TextLabel/index.js +5 -3
  193. package/lib/GlobalStyle/GlobalStyle.js +33 -5
  194. package/lib/GlobalStyle/index.js +5 -3
  195. package/lib/GridList/GridList.js +44 -24
  196. package/lib/GridList/__mocks__/index.js +4 -2
  197. package/lib/GridList/index.js +5 -3
  198. package/lib/Highlight/Highlight.js +7 -4
  199. package/lib/Highlight/index.js +5 -3
  200. package/lib/HtmlContentStyle/HtmlContentStyle.js +38 -45
  201. package/lib/HtmlContentStyle/index.js +5 -3
  202. package/lib/Icon/Icon.js +4 -2
  203. package/lib/Icon/fill/Add.js +26 -13
  204. package/lib/Icon/fill/AddCircle.js +26 -13
  205. package/lib/Icon/fill/Alert.js +33 -20
  206. package/lib/Icon/fill/AlertCircle.js +26 -13
  207. package/lib/Icon/fill/Analysis.js +26 -13
  208. package/lib/Icon/fill/AppDownloadCircle.js +26 -13
  209. package/lib/Icon/fill/AppleCircle.js +26 -13
  210. package/lib/Icon/fill/Archive.js +26 -13
  211. package/lib/Icon/fill/ArrowDown.js +26 -13
  212. package/lib/Icon/fill/ArrowLeft.js +26 -13
  213. package/lib/Icon/fill/ArrowRight.js +26 -13
  214. package/lib/Icon/fill/ArrowUp.js +26 -13
  215. package/lib/Icon/fill/Badge.js +26 -13
  216. package/lib/Icon/fill/Bell.js +26 -13
  217. package/lib/Icon/fill/BellOff.js +26 -13
  218. package/lib/Icon/fill/Bold.js +26 -13
  219. package/lib/Icon/fill/Bookmark.js +26 -13
  220. package/lib/Icon/fill/Camera.js +26 -13
  221. package/lib/Icon/fill/Canlendar.js +26 -13
  222. package/lib/Icon/fill/Caption.js +29 -16
  223. package/lib/Icon/fill/Cart.js +32 -0
  224. package/lib/Icon/fill/Check.js +33 -20
  225. package/lib/Icon/fill/CheckCircle.js +26 -13
  226. package/lib/Icon/fill/CheckboxIndeterminated.js +26 -13
  227. package/lib/Icon/fill/CheckboxOff.js +26 -13
  228. package/lib/Icon/fill/CheckboxOn.js +26 -13
  229. package/lib/Icon/fill/ChevronDown.js +26 -13
  230. package/lib/Icon/fill/ChevronLeft.js +26 -13
  231. package/lib/Icon/fill/ChevronRight.js +26 -13
  232. package/lib/Icon/fill/ChevronUp.js +26 -13
  233. package/lib/Icon/fill/Clap.js +26 -13
  234. package/lib/Icon/fill/ClearStyle.js +26 -13
  235. package/lib/Icon/fill/Clip.js +26 -13
  236. package/lib/Icon/fill/Clock.js +33 -20
  237. package/lib/Icon/fill/Close.js +26 -13
  238. package/lib/Icon/fill/CloseCircle.js +26 -13
  239. package/lib/Icon/fill/Comment.js +26 -13
  240. package/lib/Icon/fill/Compass.js +26 -13
  241. package/lib/Icon/fill/Confetti.js +34 -21
  242. package/lib/Icon/fill/Contents.js +26 -13
  243. package/lib/Icon/fill/Copy.js +29 -16
  244. package/lib/Icon/fill/Coupon.js +26 -13
  245. package/lib/Icon/fill/CreditCard.js +26 -13
  246. package/lib/Icon/fill/Crop.js +26 -13
  247. package/lib/Icon/fill/Crown.js +26 -13
  248. package/lib/Icon/fill/DepositPassbook.js +26 -13
  249. package/lib/Icon/fill/Design.js +29 -16
  250. package/lib/Icon/fill/Development.js +26 -13
  251. package/lib/Icon/fill/DisclosureDown.js +26 -13
  252. package/lib/Icon/fill/DisclosureUp.js +26 -13
  253. package/lib/Icon/fill/Dislike.js +26 -13
  254. package/lib/Icon/fill/Divider.js +26 -13
  255. package/lib/Icon/fill/Download.js +29 -16
  256. package/lib/Icon/fill/DropDown.js +26 -13
  257. package/lib/Icon/fill/DropUp.js +26 -13
  258. package/lib/Icon/fill/Earybird.js +26 -13
  259. package/lib/Icon/fill/Edit.js +28 -15
  260. package/lib/Icon/fill/EyeOff.js +26 -13
  261. package/lib/Icon/fill/EyeOn.js +29 -16
  262. package/lib/Icon/fill/FacebookCircle.js +26 -13
  263. package/lib/Icon/fill/Filter.js +26 -13
  264. package/lib/Icon/fill/FullScreen.js +26 -13
  265. package/lib/Icon/fill/FullScreenExit.js +26 -13
  266. package/lib/Icon/fill/Gear.js +28 -15
  267. package/lib/Icon/fill/Ghost.js +26 -13
  268. package/lib/Icon/fill/Gift.js +26 -13
  269. package/lib/Icon/fill/Groove.js +26 -13
  270. package/lib/Icon/fill/Hashtag.js +26 -13
  271. package/lib/Icon/fill/Heart.js +26 -13
  272. package/lib/Icon/fill/HeartFull.js +26 -13
  273. package/lib/Icon/fill/HelpCircle.js +26 -13
  274. package/lib/Icon/fill/Home.js +26 -13
  275. package/lib/Icon/fill/Hot.js +26 -13
  276. package/lib/Icon/fill/InfoCircle.js +26 -13
  277. package/lib/Icon/fill/InstagramCircle.js +29 -16
  278. package/lib/Icon/fill/Laptop.js +26 -13
  279. package/lib/Icon/fill/Like.js +26 -13
  280. package/lib/Icon/fill/Link.js +29 -16
  281. package/lib/Icon/fill/LinkOutside.js +29 -16
  282. package/lib/Icon/fill/ListBullet.js +26 -13
  283. package/lib/Icon/fill/ListNumber.js +26 -13
  284. package/lib/Icon/fill/Location.js +26 -13
  285. package/lib/Icon/fill/LocationCurrent.js +26 -13
  286. package/lib/Icon/fill/Lock.js +26 -13
  287. package/lib/Icon/fill/LockOff.js +26 -13
  288. package/lib/Icon/fill/Logout.js +26 -13
  289. package/lib/Icon/fill/Menu.js +26 -13
  290. package/lib/Icon/fill/Message.js +32 -19
  291. package/lib/Icon/fill/Mic.js +29 -16
  292. package/lib/Icon/fill/Minus.js +26 -13
  293. package/lib/Icon/fill/MinusCircle.js +26 -13
  294. package/lib/Icon/fill/Mobile.js +26 -13
  295. package/lib/Icon/fill/Monitor.js +26 -13
  296. package/lib/Icon/fill/MoreHorizontal.js +26 -13
  297. package/lib/Icon/fill/MoreVertical.js +26 -13
  298. package/lib/Icon/fill/NaverCircle.js +26 -13
  299. package/lib/Icon/fill/Notice.js +26 -13
  300. package/lib/Icon/fill/Oa.js +26 -13
  301. package/lib/Icon/fill/Paper1.js +26 -13
  302. package/lib/Icon/fill/Paper2.js +26 -13
  303. package/lib/Icon/fill/Paper3.js +26 -13
  304. package/lib/Icon/fill/Person.js +29 -16
  305. package/lib/Icon/fill/Phone.js +26 -13
  306. package/lib/Icon/fill/Photo.js +29 -16
  307. package/lib/Icon/fill/PhotoAdd.js +29 -16
  308. package/lib/Icon/fill/PhotoDouble.js +32 -19
  309. package/lib/Icon/fill/Pin.js +26 -13
  310. package/lib/Icon/fill/Pip.js +29 -16
  311. package/lib/Icon/fill/Play.js +26 -13
  312. package/lib/Icon/fill/PlayBackA.js +32 -19
  313. package/lib/Icon/fill/PlayCircle.js +26 -13
  314. package/lib/Icon/fill/PlayFast.js +26 -13
  315. package/lib/Icon/fill/PlayFast10Sec.js +29 -16
  316. package/lib/Icon/fill/PlayFast15Sec.js +29 -16
  317. package/lib/Icon/fill/PlayFast5Sec.js +29 -16
  318. package/lib/Icon/fill/PlayNext.js +26 -13
  319. package/lib/Icon/fill/PlayPause.js +26 -13
  320. package/lib/Icon/fill/PlayPrev.js +26 -13
  321. package/lib/Icon/fill/PlayRewind10Sec.js +29 -16
  322. package/lib/Icon/fill/PlayRewind15Sec.js +29 -16
  323. package/lib/Icon/fill/PlayRewind5Sec.js +29 -16
  324. package/lib/Icon/fill/PlaySpeedX025.js +26 -13
  325. package/lib/Icon/fill/PlaySpeedX05.js +26 -13
  326. package/lib/Icon/fill/PlaySpeedX1.js +26 -13
  327. package/lib/Icon/fill/PlaySpeedX15.js +26 -13
  328. package/lib/Icon/fill/PlaySpeedX2.js +26 -13
  329. package/lib/Icon/fill/PlaystoreCircle.js +26 -13
  330. package/lib/Icon/fill/PointCircle.js +29 -16
  331. package/lib/Icon/fill/Project.js +26 -13
  332. package/lib/Icon/fill/Quote.js +26 -13
  333. package/lib/Icon/fill/QuoteReverse.js +26 -13
  334. package/lib/Icon/fill/Receipt.js +26 -13
  335. package/lib/Icon/fill/Repeat.js +26 -13
  336. package/lib/Icon/fill/Replay.js +29 -16
  337. package/lib/Icon/fill/Reply.js +26 -13
  338. package/lib/Icon/fill/Report.js +26 -13
  339. package/lib/Icon/fill/Rocket.js +26 -13
  340. package/lib/Icon/fill/RotateClockwise.js +33 -20
  341. package/lib/Icon/fill/Sad.js +26 -13
  342. package/lib/Icon/fill/Search.js +26 -13
  343. package/lib/Icon/fill/Send.js +26 -13
  344. package/lib/Icon/fill/Send2.js +26 -13
  345. package/lib/Icon/fill/Serious.js +26 -13
  346. package/lib/Icon/fill/Share.js +29 -16
  347. package/lib/Icon/fill/Sheild.js +26 -13
  348. package/lib/Icon/fill/ShippingTruck.js +29 -16
  349. package/lib/Icon/fill/Smile.js +26 -13
  350. package/lib/Icon/fill/SocialMedia.js +26 -13
  351. package/lib/Icon/fill/Sorting.js +32 -19
  352. package/lib/Icon/fill/Square.js +26 -13
  353. package/lib/Icon/fill/Star.js +26 -13
  354. package/lib/Icon/fill/StarFull.js +26 -13
  355. package/lib/Icon/fill/StarHalf.js +26 -13
  356. package/lib/Icon/fill/Stock.js +26 -13
  357. package/lib/Icon/fill/Store.js +26 -13
  358. package/lib/Icon/fill/Subtitle.js +26 -13
  359. package/lib/Icon/fill/TalkHelp.js +33 -20
  360. package/lib/Icon/fill/TextH1.js +26 -13
  361. package/lib/Icon/fill/TextH2.js +26 -13
  362. package/lib/Icon/fill/TextH3.js +26 -13
  363. package/lib/Icon/fill/ThunderCircle.js +26 -13
  364. package/lib/Icon/fill/Timer.js +26 -13
  365. package/lib/Icon/fill/ToggleOff.js +26 -13
  366. package/lib/Icon/fill/ToggleOn.js +26 -13
  367. package/lib/Icon/fill/ToteBag.js +26 -13
  368. package/lib/Icon/fill/Trash.js +26 -13
  369. package/lib/Icon/fill/TwitterCircle.js +26 -13
  370. package/lib/Icon/fill/Undo.js +26 -13
  371. package/lib/Icon/fill/Video.js +26 -13
  372. package/lib/Icon/fill/Volume.js +29 -16
  373. package/lib/Icon/fill/VolumeMute.js +26 -13
  374. package/lib/Icon/fill/Web.js +26 -13
  375. package/lib/Icon/fill/Won.js +26 -13
  376. package/lib/Icon/fill/WonBadge.js +26 -13
  377. package/lib/Icon/fill/WonCircle.js +26 -13
  378. package/lib/Icon/fill/Write.js +26 -13
  379. package/lib/Icon/fill/YoutubeCircle.js +29 -16
  380. package/lib/Icon/fill/index.js +182 -178
  381. package/lib/Icon/index.js +4 -2
  382. package/lib/Icon/regular/Add.js +26 -13
  383. package/lib/Icon/regular/AddCircle.js +29 -16
  384. package/lib/Icon/regular/Alert.js +29 -16
  385. package/lib/Icon/regular/AlertCircle.js +29 -16
  386. package/lib/Icon/regular/Analysis.js +26 -13
  387. package/lib/Icon/regular/AppDownloadCircle.js +32 -19
  388. package/lib/Icon/regular/AppleCircle.js +31 -18
  389. package/lib/Icon/regular/Archive.js +29 -16
  390. package/lib/Icon/regular/ArrowDown.js +26 -13
  391. package/lib/Icon/regular/ArrowLeft.js +26 -13
  392. package/lib/Icon/regular/ArrowRight.js +26 -13
  393. package/lib/Icon/regular/ArrowUp.js +26 -13
  394. package/lib/Icon/regular/Badge.js +29 -16
  395. package/lib/Icon/regular/Bell.js +31 -18
  396. package/lib/Icon/regular/BellOff.js +31 -18
  397. package/lib/Icon/regular/Bold.js +26 -13
  398. package/lib/Icon/regular/Bookmark.js +26 -13
  399. package/lib/Icon/regular/Camera.js +29 -16
  400. package/lib/Icon/regular/Canlendar.js +29 -16
  401. package/lib/Icon/regular/Caption.js +29 -16
  402. package/lib/Icon/regular/Cart.js +32 -0
  403. package/lib/Icon/regular/Check.js +26 -13
  404. package/lib/Icon/regular/CheckCircle.js +29 -16
  405. package/lib/Icon/regular/CheckboxIndeterminated.js +26 -13
  406. package/lib/Icon/regular/CheckboxOff.js +26 -13
  407. package/lib/Icon/regular/CheckboxOn.js +26 -13
  408. package/lib/Icon/regular/ChevronDown.js +26 -13
  409. package/lib/Icon/regular/ChevronLeft.js +26 -13
  410. package/lib/Icon/regular/ChevronRight.js +26 -13
  411. package/lib/Icon/regular/ChevronUp.js +26 -13
  412. package/lib/Icon/regular/Clap.js +29 -16
  413. package/lib/Icon/regular/ClearStyle.js +26 -13
  414. package/lib/Icon/regular/Clip.js +26 -13
  415. package/lib/Icon/regular/Clock.js +31 -18
  416. package/lib/Icon/regular/Close.js +26 -13
  417. package/lib/Icon/regular/CloseCircle.js +29 -16
  418. package/lib/Icon/regular/Comment.js +29 -16
  419. package/lib/Icon/regular/Compass.js +29 -16
  420. package/lib/Icon/regular/Confetti.js +26 -13
  421. package/lib/Icon/regular/Contents.js +29 -16
  422. package/lib/Icon/regular/Copy.js +29 -16
  423. package/lib/Icon/regular/Coupon.js +26 -13
  424. package/lib/Icon/regular/CreditCard.js +26 -13
  425. package/lib/Icon/regular/Crop.js +26 -13
  426. package/lib/Icon/regular/Crown.js +26 -13
  427. package/lib/Icon/regular/DepositPassbook.js +26 -13
  428. package/lib/Icon/regular/Design.js +29 -16
  429. package/lib/Icon/regular/Development.js +26 -13
  430. package/lib/Icon/regular/DisclosureDown.js +26 -13
  431. package/lib/Icon/regular/DisclosureUp.js +26 -13
  432. package/lib/Icon/regular/Dislike.js +33 -20
  433. package/lib/Icon/regular/Divider.js +26 -13
  434. package/lib/Icon/regular/Download.js +29 -16
  435. package/lib/Icon/regular/DropDown.js +26 -13
  436. package/lib/Icon/regular/DropUp.js +26 -13
  437. package/lib/Icon/regular/Earybird.js +29 -16
  438. package/lib/Icon/regular/Edit.js +26 -13
  439. package/lib/Icon/regular/EyeOff.js +26 -13
  440. package/lib/Icon/regular/EyeOn.js +29 -16
  441. package/lib/Icon/regular/FacebookCircle.js +31 -18
  442. package/lib/Icon/regular/Filter.js +26 -13
  443. package/lib/Icon/regular/FullScreen.js +26 -13
  444. package/lib/Icon/regular/FullScreenExit.js +26 -13
  445. package/lib/Icon/regular/Gear.js +28 -15
  446. package/lib/Icon/regular/Ghost.js +29 -16
  447. package/lib/Icon/regular/Gift.js +26 -13
  448. package/lib/Icon/regular/Groove.js +26 -13
  449. package/lib/Icon/regular/Hashtag.js +26 -13
  450. package/lib/Icon/regular/Heart.js +26 -13
  451. package/lib/Icon/regular/HeartFull.js +26 -13
  452. package/lib/Icon/regular/HelpCircle.js +29 -16
  453. package/lib/Icon/regular/Home.js +29 -16
  454. package/lib/Icon/regular/Hot.js +29 -16
  455. package/lib/Icon/regular/InfoCircle.js +29 -16
  456. package/lib/Icon/regular/InstagramCircle.js +32 -19
  457. package/lib/Icon/regular/Laptop.js +26 -13
  458. package/lib/Icon/regular/Like.js +26 -13
  459. package/lib/Icon/regular/Link.js +29 -16
  460. package/lib/Icon/regular/LinkOutside.js +29 -16
  461. package/lib/Icon/regular/ListBullet.js +26 -13
  462. package/lib/Icon/regular/ListNumber.js +26 -13
  463. package/lib/Icon/regular/Location.js +29 -16
  464. package/lib/Icon/regular/LocationCurrent.js +26 -13
  465. package/lib/Icon/regular/Lock.js +29 -16
  466. package/lib/Icon/regular/LockOff.js +29 -16
  467. package/lib/Icon/regular/Logout.js +26 -13
  468. package/lib/Icon/regular/Menu.js +26 -13
  469. package/lib/Icon/regular/Message.js +26 -13
  470. package/lib/Icon/regular/Mic.js +29 -16
  471. package/lib/Icon/regular/Minus.js +26 -13
  472. package/lib/Icon/regular/MinusCircle.js +29 -16
  473. package/lib/Icon/regular/Mobile.js +29 -16
  474. package/lib/Icon/regular/Monitor.js +26 -13
  475. package/lib/Icon/regular/MoreHorizontal.js +26 -13
  476. package/lib/Icon/regular/MoreVertical.js +26 -13
  477. package/lib/Icon/regular/NaverCircle.js +29 -16
  478. package/lib/Icon/regular/Notice.js +26 -13
  479. package/lib/Icon/regular/Oa.js +26 -13
  480. package/lib/Icon/regular/Paper1.js +26 -13
  481. package/lib/Icon/regular/Paper2.js +29 -16
  482. package/lib/Icon/regular/Paper3.js +29 -16
  483. package/lib/Icon/regular/Person.js +26 -13
  484. package/lib/Icon/regular/Phone.js +26 -13
  485. package/lib/Icon/regular/Photo.js +29 -16
  486. package/lib/Icon/regular/PhotoAdd.js +32 -19
  487. package/lib/Icon/regular/PhotoDouble.js +32 -19
  488. package/lib/Icon/regular/Pin.js +26 -13
  489. package/lib/Icon/regular/Pip.js +29 -16
  490. package/lib/Icon/regular/Play.js +26 -13
  491. package/lib/Icon/regular/PlayBackA.js +32 -19
  492. package/lib/Icon/regular/PlayCircle.js +29 -16
  493. package/lib/Icon/regular/PlayFast.js +26 -13
  494. package/lib/Icon/regular/PlayFast10Sec.js +29 -16
  495. package/lib/Icon/regular/PlayFast15Sec.js +29 -16
  496. package/lib/Icon/regular/PlayFast5Sec.js +29 -16
  497. package/lib/Icon/regular/PlayNext.js +26 -13
  498. package/lib/Icon/regular/PlayPause.js +26 -13
  499. package/lib/Icon/regular/PlayPrev.js +26 -13
  500. package/lib/Icon/regular/PlayRewind10Sec.js +29 -16
  501. package/lib/Icon/regular/PlayRewind15Sec.js +29 -16
  502. package/lib/Icon/regular/PlayRewind5Sec.js +29 -16
  503. package/lib/Icon/regular/PlaySpeedX025.js +26 -13
  504. package/lib/Icon/regular/PlaySpeedX05.js +26 -13
  505. package/lib/Icon/regular/PlaySpeedX1.js +26 -13
  506. package/lib/Icon/regular/PlaySpeedX15.js +26 -13
  507. package/lib/Icon/regular/PlaySpeedX2.js +26 -13
  508. package/lib/Icon/regular/PlaystoreCircle.js +29 -16
  509. package/lib/Icon/regular/PointCircle.js +29 -16
  510. package/lib/Icon/regular/Project.js +26 -13
  511. package/lib/Icon/regular/Quote.js +26 -13
  512. package/lib/Icon/regular/QuoteReverse.js +26 -13
  513. package/lib/Icon/regular/Receipt.js +29 -16
  514. package/lib/Icon/regular/Repeat.js +26 -13
  515. package/lib/Icon/regular/Replay.js +29 -16
  516. package/lib/Icon/regular/Reply.js +31 -18
  517. package/lib/Icon/regular/Report.js +26 -13
  518. package/lib/Icon/regular/Rocket.js +29 -16
  519. package/lib/Icon/regular/RotateClockwise.js +26 -13
  520. package/lib/Icon/regular/Sad.js +32 -19
  521. package/lib/Icon/regular/Search.js +26 -13
  522. package/lib/Icon/regular/Send.js +26 -13
  523. package/lib/Icon/regular/Send2.js +26 -13
  524. package/lib/Icon/regular/Serious.js +29 -16
  525. package/lib/Icon/regular/Share.js +29 -16
  526. package/lib/Icon/regular/Sheild.js +29 -16
  527. package/lib/Icon/regular/ShippingTruck.js +26 -13
  528. package/lib/Icon/regular/Smile.js +29 -16
  529. package/lib/Icon/regular/SocialMedia.js +29 -16
  530. package/lib/Icon/regular/Sorting.js +32 -19
  531. package/lib/Icon/regular/Square.js +26 -13
  532. package/lib/Icon/regular/Star.js +26 -13
  533. package/lib/Icon/regular/StarFull.js +26 -13
  534. package/lib/Icon/regular/StarHalf.js +26 -13
  535. package/lib/Icon/regular/Stock.js +26 -13
  536. package/lib/Icon/regular/Store.js +26 -13
  537. package/lib/Icon/regular/Subtitle.js +29 -16
  538. package/lib/Icon/regular/TalkHelp.js +29 -16
  539. package/lib/Icon/regular/TextH1.js +26 -13
  540. package/lib/Icon/regular/TextH2.js +26 -13
  541. package/lib/Icon/regular/TextH3.js +26 -13
  542. package/lib/Icon/regular/ThunderCircle.js +29 -16
  543. package/lib/Icon/regular/Timer.js +31 -18
  544. package/lib/Icon/regular/ToggleOff.js +26 -13
  545. package/lib/Icon/regular/ToggleOn.js +26 -13
  546. package/lib/Icon/regular/ToteBag.js +26 -13
  547. package/lib/Icon/regular/Trash.js +29 -16
  548. package/lib/Icon/regular/Twitter.js +32 -0
  549. package/lib/Icon/regular/TwitterCircle.js +29 -16
  550. package/lib/Icon/regular/Undo.js +26 -13
  551. package/lib/Icon/regular/Video.js +29 -16
  552. package/lib/Icon/regular/Volume.js +29 -16
  553. package/lib/Icon/regular/VolumeMute.js +26 -13
  554. package/lib/Icon/regular/Web.js +26 -13
  555. package/lib/Icon/regular/Won.js +26 -13
  556. package/lib/Icon/regular/WonBadge.js +29 -16
  557. package/lib/Icon/regular/WonCircle.js +29 -16
  558. package/lib/Icon/regular/Write.js +26 -13
  559. package/lib/Icon/regular/YoutubeCircle.js +29 -16
  560. package/lib/Icon/regular/index.js +184 -178
  561. package/lib/Icon/thin/Add.js +26 -13
  562. package/lib/Icon/thin/AddCircle.js +29 -16
  563. package/lib/Icon/thin/Alert.js +35 -22
  564. package/lib/Icon/thin/AlertCircle.js +29 -16
  565. package/lib/Icon/thin/Analysis.js +26 -13
  566. package/lib/Icon/thin/AppDownloadCircle.js +29 -16
  567. package/lib/Icon/thin/AppleCircle.js +31 -18
  568. package/lib/Icon/thin/Archive.js +29 -16
  569. package/lib/Icon/thin/ArrowDown.js +26 -13
  570. package/lib/Icon/thin/ArrowLeft.js +26 -13
  571. package/lib/Icon/thin/ArrowRight.js +26 -13
  572. package/lib/Icon/thin/ArrowUp.js +26 -13
  573. package/lib/Icon/thin/Badge.js +29 -16
  574. package/lib/Icon/thin/Bell.js +26 -13
  575. package/lib/Icon/thin/BellOff.js +26 -13
  576. package/lib/Icon/thin/Bold.js +26 -13
  577. package/lib/Icon/thin/Bookmark.js +26 -13
  578. package/lib/Icon/thin/Camera.js +29 -16
  579. package/lib/Icon/thin/Canlendar.js +29 -16
  580. package/lib/Icon/thin/Caption.js +29 -16
  581. package/lib/Icon/thin/Cart.js +32 -0
  582. package/lib/Icon/thin/Check.js +26 -13
  583. package/lib/Icon/thin/CheckCircle.js +29 -16
  584. package/lib/Icon/thin/CheckboxIndeterminated.js +28 -15
  585. package/lib/Icon/thin/CheckboxOff.js +26 -13
  586. package/lib/Icon/thin/CheckboxOn.js +28 -15
  587. package/lib/Icon/thin/ChevronDown.js +26 -13
  588. package/lib/Icon/thin/ChevronLeft.js +26 -13
  589. package/lib/Icon/thin/ChevronRight.js +26 -13
  590. package/lib/Icon/thin/ChevronUp.js +26 -13
  591. package/lib/Icon/thin/Clap.js +26 -13
  592. package/lib/Icon/thin/ClearStyle.js +26 -13
  593. package/lib/Icon/thin/Clip.js +26 -13
  594. package/lib/Icon/thin/Clock.js +29 -16
  595. package/lib/Icon/thin/Close.js +26 -13
  596. package/lib/Icon/thin/CloseCircle.js +29 -16
  597. package/lib/Icon/thin/Comment.js +29 -16
  598. package/lib/Icon/thin/Compass.js +29 -16
  599. package/lib/Icon/thin/Confetti.js +26 -13
  600. package/lib/Icon/thin/Contents.js +29 -16
  601. package/lib/Icon/thin/Copy.js +29 -16
  602. package/lib/Icon/thin/Coupon.js +26 -13
  603. package/lib/Icon/thin/CreditCard.js +26 -13
  604. package/lib/Icon/thin/Crop.js +26 -13
  605. package/lib/Icon/thin/Crown.js +26 -13
  606. package/lib/Icon/thin/DepositPassbook.js +26 -13
  607. package/lib/Icon/thin/Design.js +29 -16
  608. package/lib/Icon/thin/Development.js +26 -13
  609. package/lib/Icon/thin/DisclosureDown.js +26 -13
  610. package/lib/Icon/thin/DisclosureUp.js +26 -13
  611. package/lib/Icon/thin/Dislike.js +33 -20
  612. package/lib/Icon/thin/Divider.js +26 -13
  613. package/lib/Icon/thin/Download.js +29 -16
  614. package/lib/Icon/thin/DropDown.js +26 -13
  615. package/lib/Icon/thin/DropUp.js +26 -13
  616. package/lib/Icon/thin/Earybird.js +29 -16
  617. package/lib/Icon/thin/Edit.js +26 -13
  618. package/lib/Icon/thin/EyeOff.js +26 -13
  619. package/lib/Icon/thin/EyeOn.js +29 -16
  620. package/lib/Icon/thin/FacebookCircle.js +31 -18
  621. package/lib/Icon/thin/Filter.js +26 -13
  622. package/lib/Icon/thin/FullScreen.js +26 -13
  623. package/lib/Icon/thin/FullScreenExit.js +26 -13
  624. package/lib/Icon/thin/Gear.js +26 -13
  625. package/lib/Icon/thin/Ghost.js +29 -16
  626. package/lib/Icon/thin/Gift.js +26 -13
  627. package/lib/Icon/thin/Groove.js +26 -13
  628. package/lib/Icon/thin/Hashtag.js +26 -13
  629. package/lib/Icon/thin/Heart.js +26 -13
  630. package/lib/Icon/thin/HeartFull.js +26 -13
  631. package/lib/Icon/thin/HelpCircle.js +29 -16
  632. package/lib/Icon/thin/Home.js +29 -16
  633. package/lib/Icon/thin/Hot.js +29 -16
  634. package/lib/Icon/thin/InfoCircle.js +29 -16
  635. package/lib/Icon/thin/InstagramCircle.js +32 -19
  636. package/lib/Icon/thin/Laptop.js +26 -13
  637. package/lib/Icon/thin/Like.js +26 -13
  638. package/lib/Icon/thin/Link.js +29 -16
  639. package/lib/Icon/thin/LinkOutside.js +29 -16
  640. package/lib/Icon/thin/ListBullet.js +26 -13
  641. package/lib/Icon/thin/ListNumber.js +26 -13
  642. package/lib/Icon/thin/Location.js +29 -16
  643. package/lib/Icon/thin/LocationCurrent.js +26 -13
  644. package/lib/Icon/thin/Lock.js +29 -16
  645. package/lib/Icon/thin/LockOff.js +29 -16
  646. package/lib/Icon/thin/Logout.js +26 -13
  647. package/lib/Icon/thin/Menu.js +26 -13
  648. package/lib/Icon/thin/Message.js +26 -13
  649. package/lib/Icon/thin/Mic.js +29 -16
  650. package/lib/Icon/thin/Minus.js +26 -13
  651. package/lib/Icon/thin/MinusCircle.js +29 -16
  652. package/lib/Icon/thin/Mobile.js +29 -16
  653. package/lib/Icon/thin/Monitor.js +26 -13
  654. package/lib/Icon/thin/MoreHorizontal.js +26 -13
  655. package/lib/Icon/thin/MoreVertical.js +26 -13
  656. package/lib/Icon/thin/NaverCircle.js +29 -16
  657. package/lib/Icon/thin/Notice.js +26 -13
  658. package/lib/Icon/thin/Oa.js +26 -13
  659. package/lib/Icon/thin/Paper1.js +26 -13
  660. package/lib/Icon/thin/Paper2.js +29 -16
  661. package/lib/Icon/thin/Paper3.js +29 -16
  662. package/lib/Icon/thin/Person.js +26 -13
  663. package/lib/Icon/thin/Phone.js +26 -13
  664. package/lib/Icon/thin/Photo.js +29 -16
  665. package/lib/Icon/thin/PhotoAdd.js +29 -16
  666. package/lib/Icon/thin/PhotoDouble.js +29 -16
  667. package/lib/Icon/thin/Pin.js +26 -13
  668. package/lib/Icon/thin/Pip.js +29 -16
  669. package/lib/Icon/thin/Play.js +26 -13
  670. package/lib/Icon/thin/PlayBackA.js +26 -13
  671. package/lib/Icon/thin/PlayCircle.js +29 -16
  672. package/lib/Icon/thin/PlayFast.js +26 -13
  673. package/lib/Icon/thin/PlayFast10Sec.js +29 -16
  674. package/lib/Icon/thin/PlayFast15Sec.js +29 -16
  675. package/lib/Icon/thin/PlayFast5Sec.js +29 -16
  676. package/lib/Icon/thin/PlayNext.js +26 -13
  677. package/lib/Icon/thin/PlayPause.js +26 -13
  678. package/lib/Icon/thin/PlayPrev.js +26 -13
  679. package/lib/Icon/thin/PlayRewind10Sec.js +29 -16
  680. package/lib/Icon/thin/PlayRewind15Sec.js +29 -16
  681. package/lib/Icon/thin/PlayRewind5Sec.js +29 -16
  682. package/lib/Icon/thin/PlaySpeedX025.js +26 -13
  683. package/lib/Icon/thin/PlaySpeedX05.js +26 -13
  684. package/lib/Icon/thin/PlaySpeedX1.js +26 -13
  685. package/lib/Icon/thin/PlaySpeedX15.js +26 -13
  686. package/lib/Icon/thin/PlaySpeedX2.js +26 -13
  687. package/lib/Icon/thin/PlaystoreCircle.js +29 -16
  688. package/lib/Icon/thin/PointCircle.js +29 -16
  689. package/lib/Icon/thin/Project.js +26 -13
  690. package/lib/Icon/thin/Quote.js +26 -13
  691. package/lib/Icon/thin/QuoteReverse.js +26 -13
  692. package/lib/Icon/thin/Receipt.js +29 -16
  693. package/lib/Icon/thin/Repeat.js +26 -13
  694. package/lib/Icon/thin/Replay.js +29 -16
  695. package/lib/Icon/thin/Reply.js +29 -16
  696. package/lib/Icon/thin/Report.js +26 -13
  697. package/lib/Icon/thin/Rocket.js +29 -16
  698. package/lib/Icon/thin/RotateClockwise.js +29 -16
  699. package/lib/Icon/thin/Sad.js +32 -19
  700. package/lib/Icon/thin/Search.js +26 -13
  701. package/lib/Icon/thin/Send.js +26 -13
  702. package/lib/Icon/thin/Send2.js +26 -13
  703. package/lib/Icon/thin/Serious.js +35 -22
  704. package/lib/Icon/thin/Share.js +29 -16
  705. package/lib/Icon/thin/Sheild.js +29 -16
  706. package/lib/Icon/thin/ShippingTruck.js +26 -13
  707. package/lib/Icon/thin/Smile.js +32 -19
  708. package/lib/Icon/thin/SocialMedia.js +29 -16
  709. package/lib/Icon/thin/Sorting.js +26 -13
  710. package/lib/Icon/thin/Square.js +26 -13
  711. package/lib/Icon/thin/Star.js +26 -13
  712. package/lib/Icon/thin/StarFull.js +26 -13
  713. package/lib/Icon/thin/StarHalf.js +26 -13
  714. package/lib/Icon/thin/Stock.js +26 -13
  715. package/lib/Icon/thin/Store.js +26 -13
  716. package/lib/Icon/thin/Subtitle.js +29 -16
  717. package/lib/Icon/thin/TalkHelp.js +29 -16
  718. package/lib/Icon/thin/TextH1.js +26 -13
  719. package/lib/Icon/thin/TextH2.js +26 -13
  720. package/lib/Icon/thin/TextH3.js +26 -13
  721. package/lib/Icon/thin/ThunderCircle.js +29 -16
  722. package/lib/Icon/thin/Timer.js +29 -16
  723. package/lib/Icon/thin/ToggleOff.js +26 -13
  724. package/lib/Icon/thin/ToggleOn.js +26 -13
  725. package/lib/Icon/thin/ToteBag.js +26 -13
  726. package/lib/Icon/thin/Trash.js +29 -16
  727. package/lib/Icon/thin/TwitterCircle.js +29 -16
  728. package/lib/Icon/thin/Undo.js +26 -13
  729. package/lib/Icon/thin/Video.js +29 -16
  730. package/lib/Icon/thin/Volume.js +29 -16
  731. package/lib/Icon/thin/VolumeMute.js +29 -16
  732. package/lib/Icon/thin/Web.js +26 -13
  733. package/lib/Icon/thin/Won.js +26 -13
  734. package/lib/Icon/thin/WonBadge.js +29 -16
  735. package/lib/Icon/thin/WonCircle.js +29 -16
  736. package/lib/Icon/thin/Write.js +26 -13
  737. package/lib/Icon/thin/YoutubeCircle.js +29 -16
  738. package/lib/Icon/thin/index.js +182 -178
  739. package/lib/Icon/types.js +6 -2
  740. package/lib/ImageThumbnail/ImageThumbnail.js +27 -0
  741. package/lib/ImageThumbnail/index.js +10 -0
  742. package/lib/Layout/Center/Center.js +17 -23
  743. package/lib/Layout/Center/index.js +5 -3
  744. package/lib/Layout/HStack/HStack.js +18 -9
  745. package/lib/Layout/HStack/index.js +5 -3
  746. package/lib/Layout/Position/Position.js +8 -6
  747. package/lib/Layout/Position/index.js +5 -3
  748. package/lib/Layout/ResponsiveStack/ResponsiveStack.js +15 -8
  749. package/lib/Layout/ResponsiveStack/index.js +5 -3
  750. package/lib/Layout/VStack/VStack.js +18 -9
  751. package/lib/Layout/VStack/index.js +5 -3
  752. package/lib/Layout/ZStack/ZStack.js +38 -25
  753. package/lib/Layout/ZStack/index.js +5 -3
  754. package/lib/LinearGradient/LinearGradient.js +52 -0
  755. package/lib/LinearGradient/index.js +10 -0
  756. package/lib/Link/Link.js +20 -39
  757. package/lib/Link/index.js +5 -3
  758. package/lib/Linkify/Linkify.js +2171 -0
  759. package/lib/Linkify/index.js +10 -0
  760. package/lib/List/List.js +51 -0
  761. package/lib/List/index.js +10 -0
  762. package/lib/Media/Image/Image.js +40 -21
  763. package/lib/Media/Image/index.js +5 -3
  764. package/lib/Media/Image/useActualSizes.js +27 -165
  765. package/lib/Media/SeekBar/SeekBar.js +10 -7
  766. package/lib/Media/SeekBar/index.js +5 -3
  767. package/lib/Media/Video/Video.js +11 -8
  768. package/lib/Media/Video/index.js +5 -3
  769. package/lib/Media/VideoCaption/VideoCaption.js +10 -7
  770. package/lib/Media/VideoCaption/index.js +5 -3
  771. package/lib/Media/VideoOverlay/VideoOverlay.js +23 -23
  772. package/lib/Media/VideoOverlay/index.js +5 -3
  773. package/lib/Media/VolumeBar/VolumeBar.js +14 -11
  774. package/lib/Media/VolumeBar/index.js +5 -3
  775. package/lib/Menu/Menu/Menu.js +19 -13
  776. package/lib/Menu/Menu/index.js +5 -3
  777. package/lib/Menu/MenuIcon/MenuIcon.js +15 -8
  778. package/lib/Menu/MenuIcon/index.js +5 -3
  779. package/lib/Menu/MenuItem/MenuItem.js +17 -14
  780. package/lib/Menu/MenuItem/index.js +5 -3
  781. package/lib/Menu/MenuText/MenuText.js +50 -35
  782. package/lib/Menu/MenuText/index.js +5 -3
  783. package/lib/Menu/MenuTextButton/MenuTextButton.js +16 -9
  784. package/lib/Menu/MenuTextButton/index.js +5 -3
  785. package/lib/Menu/MenuTextButtonItem/MenuTextButtonItem.js +38 -27
  786. package/lib/Menu/MenuTextButtonItem/index.js +5 -3
  787. package/lib/Menu/MenuTextItem/MenuTextItem.js +18 -11
  788. package/lib/Menu/MenuTextItem/index.js +5 -3
  789. package/lib/ModalBottomSheet/ModalBottomSheet.js +30 -123
  790. package/lib/ModalBottomSheet/index.js +6 -4
  791. package/lib/ModalBottomSheet/useModalBottomSheet.js +6 -4
  792. package/lib/NewLine/NewLine.js +13 -9
  793. package/lib/NewLine/index.js +5 -3
  794. package/lib/Opacity/Opacity.js +8 -4
  795. package/lib/Opacity/index.js +5 -3
  796. package/lib/Overlay/Overlay.js +10 -6
  797. package/lib/Overlay/index.js +5 -3
  798. package/lib/Pagination/Pagination.js +388 -14
  799. package/lib/Pagination/index.js +5 -3
  800. package/lib/Paper/Paper.js +111 -0
  801. package/lib/Paper/index.js +10 -0
  802. package/lib/PopoverBottomSheet/PopoverBottomSheet.js +64 -122
  803. package/lib/PopoverBottomSheet/index.js +5 -3
  804. package/lib/Portal/Portal.js +28 -36
  805. package/lib/Portal/index.js +5 -3
  806. package/lib/Profile/Profile.js +9 -6
  807. package/lib/Profile/index.js +5 -3
  808. package/lib/ProfileLabel/ProfileLabel.js +92 -57
  809. package/lib/ProfileLabel/index.js +5 -3
  810. package/lib/Progress/ProgressBar/ProgressBar.js +12 -9
  811. package/lib/Progress/ProgressBar/index.js +5 -3
  812. package/lib/Progress/ProgressStep/ProgressStep.js +65 -52
  813. package/lib/Progress/ProgressStep/index.js +5 -3
  814. package/lib/Rank/Rank.js +21 -18
  815. package/lib/Rank/index.js +5 -3
  816. package/lib/Ratio/Ratio.js +44 -35
  817. package/lib/Ratio/index.js +5 -3
  818. package/lib/SafeAreaContent/SafeAreaContent.js +26 -0
  819. package/lib/SafeAreaContent/index.js +10 -0
  820. package/lib/Scroll/Scroll.js +48 -0
  821. package/lib/Scroll/index.js +10 -0
  822. package/lib/Scroll/variant.js +6 -0
  823. package/lib/ScrollTarget/ScrollTarget.js +34 -0
  824. package/lib/ScrollTarget/index.js +10 -0
  825. package/lib/Section/Section.js +18 -19
  826. package/lib/Section/index.js +5 -3
  827. package/lib/SectionHeader/SectionHeader.js +15 -11
  828. package/lib/SectionHeader/index.js +5 -3
  829. package/lib/SideNavigation/SideNavigation/SideNavigation.js +15 -0
  830. package/lib/SideNavigation/SideNavigation/index.js +10 -0
  831. package/lib/SideNavigation/SideNavigationMenu/SideNavigationMenu.js +69 -0
  832. package/lib/SideNavigation/SideNavigationMenu/index.js +10 -0
  833. package/lib/SideNavigation/SideNavigationMenuGroup/SideNavigationMenuGroup.js +20 -0
  834. package/lib/SideNavigation/SideNavigationMenuGroup/index.js +10 -0
  835. package/lib/SideNavigation/SideNavigationSubMenu/SideNavigationSubMenu.js +44 -0
  836. package/lib/SideNavigation/SideNavigationSubMenu/index.js +10 -0
  837. package/lib/Skeleton/Skeleton.js +26 -19
  838. package/lib/Skeleton/index.js +5 -3
  839. package/lib/SlideList/SlideList.js +21 -14
  840. package/lib/SlideList/__mocks__/index.js +4 -2
  841. package/lib/SlideList/index.js +5 -3
  842. package/lib/Slider/Slider.js +1236 -121
  843. package/lib/Slider/hooks/usePageControl.js +98 -0
  844. package/lib/Slider/index.js +7 -5
  845. package/lib/Slider/plugins/AutoPlay.js +82 -0
  846. package/lib/Slider/useSliderState.js +40 -0
  847. package/lib/Slider/variants.js +25 -0
  848. package/lib/SliderSection/SliderSection.js +19 -10
  849. package/lib/SliderSection/index.js +5 -3
  850. package/lib/Space/Space.js +26 -0
  851. package/lib/Space/index.js +10 -0
  852. package/lib/Spinner/Spinner.js +34 -22
  853. package/lib/Spinner/index.js +5 -3
  854. package/lib/Svg/Svg.js +49 -0
  855. package/lib/Svg/index.js +10 -0
  856. package/lib/Tab/ScrollTabPanel/ScrollTabPanel.js +6 -3
  857. package/lib/Tab/ScrollTabPanel/index.js +5 -3
  858. package/lib/Tab/ScrollTabPanelWithObserver/ScrollTabPanelWithObserver.js +12 -68
  859. package/lib/Tab/ScrollTabPanelWithObserver/index.js +5 -3
  860. package/lib/Tab/ScrollTabs/ScrollTabs.js +44 -31
  861. package/lib/Tab/ScrollTabs/index.js +5 -3
  862. package/lib/Tab/Tab/Tab.js +41 -50
  863. package/lib/Tab/Tab/index.js +5 -3
  864. package/lib/Tab/ViewPagerTabPanel/ViewPagerTabPanel.js +12 -6
  865. package/lib/Tab/ViewPagerTabPanel/index.js +5 -3
  866. package/lib/Tab/ViewPagerTabs/ViewPagerTabs.js +47 -19
  867. package/lib/Tab/ViewPagerTabs/index.js +5 -3
  868. package/lib/Table/Table.js +6950 -0
  869. package/lib/Table/index.js +10 -0
  870. package/lib/Tag/Chip/Chip.js +66 -62
  871. package/lib/Tag/Chip/index.js +5 -3
  872. package/lib/Tag/IconBadge/IconBadge.js +25 -18
  873. package/lib/Tag/IconBadge/index.js +5 -3
  874. package/lib/Tag/StateTag/StateTag.js +22 -15
  875. package/lib/Tag/StateTag/index.js +5 -3
  876. package/lib/Tag/Tag/Tag.js +21 -24
  877. package/lib/Tag/Tag/index.js +5 -3
  878. package/lib/Tooltip/Tooltip.js +184 -0
  879. package/lib/Tooltip/index.js +10 -0
  880. package/lib/Typography/Body/Body.js +24 -10
  881. package/lib/Typography/Body/index.js +5 -3
  882. package/lib/Typography/Paragraph/Paragraph.js +17 -10
  883. package/lib/Typography/Paragraph/index.js +5 -3
  884. package/lib/Typography/Text/Text.js +41 -54
  885. package/lib/Typography/Text/index.js +5 -3
  886. package/lib/Typography/Title/Title.js +22 -14
  887. package/lib/Typography/Title/index.js +5 -3
  888. package/lib/Underline/Underline.js +47 -34
  889. package/lib/Underline/index.js +5 -3
  890. package/lib/ViewPager/ViewPager.js +14 -8
  891. package/lib/ViewPager/index.js +5 -3
  892. package/lib/ViewPager/type.js +6 -2
  893. package/lib/ViewPagerItem/ViewPagerItem.js +9 -6
  894. package/lib/ViewPagerItem/index.js +5 -3
  895. package/lib/VirtualizedList/VirtualizedList.js +56 -0
  896. package/lib/VirtualizedList/index.js +10 -0
  897. package/lib/VirtualizedList/variants.js +6 -0
  898. package/lib/deprecated/Slide/Slide.js +7 -5
  899. package/lib/deprecated/Slide/index.js +4 -2
  900. package/lib/deprecated/Swiper/Swiper.js +19 -9
  901. package/lib/deprecated/Swiper/hooks/useAutoPlay.js +6 -4
  902. package/lib/deprecated/Swiper/hooks/useSwiper.js +468 -12
  903. package/lib/deprecated/Swiper/index.js +4 -2
  904. package/lib/deprecated/Swiper/types/SwiperOptions.js +6 -2
  905. package/mime-types-SLPLVYDI.js +9284 -0
  906. package/package.json +3 -2
  907. package/private/Bar/Bar.js +8 -5
  908. package/private/Bar/index.js +5 -3
  909. package/private/Box/Box.js +13 -5
  910. package/private/Box/index.js +5 -3
  911. package/private/Box/variants.js +6 -0
  912. package/private/ForwardStyle/ForwardStyle.js +14 -14
  913. package/private/ForwardStyle/StyledChildren.js +35 -0
  914. package/private/ForwardStyle/index.js +5 -3
  915. package/private/Stack/Stack.js +75 -64
  916. package/private/Stack/index.js +5 -3
  917. package/private/Transform/Transform.js +8 -6
  918. package/private/Transform/index.js +5 -3
  919. package/@types/image.d.js +0 -2
  920. package/@types/theme.d.js +0 -5
  921. package/lib/Animation/Animator/Animator.stories.js +0 -63
  922. package/lib/Animation/FadeAnimation/FadeAnimation.stories.js +0 -42
  923. package/lib/Animation/SlideAnimation/SlideAnimation.stories.js +0 -35
  924. package/lib/Animation/Transition/Transition.stories.js +0 -47
  925. package/lib/Background/Background.stories.js +0 -35
  926. package/lib/Button/ButtonIcon/ButtonIcon.js +0 -48
  927. package/lib/Button/ButtonIcon/index.js +0 -8
  928. package/lib/Button/IconButton/IconButton.js +0 -141
  929. package/lib/Button/IconButton/index.js +0 -8
  930. package/lib/Button/TextButton/TextButton.stories.js +0 -59
  931. package/lib/ConditionalWrapper/ConditionalWrapper.stories.js +0 -40
  932. package/lib/Divider/Divider.stories.js +0 -78
  933. package/lib/Elevation/Elevation.stories.js +0 -33
  934. package/lib/Form/Description/Description.stories.js +0 -34
  935. package/lib/Form/FormField/FormField.stories.js +0 -36
  936. package/lib/Form/InlineTextLabel/InlineTextLabel.stories.js +0 -40
  937. package/lib/Form/Input/Input.stories.js +0 -34
  938. package/lib/Form/Label/Label.stories.js +0 -40
  939. package/lib/Form/Select/Select.stories.js +0 -45
  940. package/lib/Form/SelectField/SelectField.stories.js +0 -89
  941. package/lib/Form/TextField/TextField.stories.js +0 -84
  942. package/lib/Form/TextLabel/TextLabel.stories.js +0 -31
  943. package/lib/Frame/Frame.js +0 -70
  944. package/lib/Frame/index.js +0 -8
  945. package/lib/Highlight/Highlight.stories.js +0 -27
  946. package/lib/HtmlContentStyle/HtmlContentStyle.stories.js +0 -19
  947. package/lib/Layout/Center/Center.stories.js +0 -40
  948. package/lib/Layout/Position/Position.stories.js +0 -39
  949. package/lib/Link/Link.stories.js +0 -34
  950. package/lib/Media/Image/Image.stories.js +0 -24
  951. package/lib/Menu/Menu/Menu.stories.js +0 -60
  952. package/lib/Menu/MenuIcon/MenuIcon.stories.js +0 -28
  953. package/lib/Menu/MenuItem/MenuItem.stories.js +0 -39
  954. package/lib/Menu/MenuText/MenuText.stories.js +0 -35
  955. package/lib/Menu/MenuTextButton/MenuTextButton.stories.js +0 -86
  956. package/lib/Menu/MenuTextButtonItem/MenuTextButtonItem.stories.js +0 -170
  957. package/lib/Menu/MenuTextItem/MenuTextItem.stories.js +0 -85
  958. package/lib/Opacity/Opacity.stories.js +0 -30
  959. package/lib/Overlay/Overlay.stories.js +0 -30
  960. package/lib/Pagination/Pagination.stories.js +0 -34
  961. package/lib/Progress/ProgressBar/ProgressBar.stories.js +0 -54
  962. package/lib/Progress/ProgressStep/ProgressStep.stories.js +0 -40
  963. package/lib/Rank/Rank.stories.js +0 -36
  964. package/lib/Ratio/Ratio.stories.js +0 -31
  965. package/lib/Section/Section.stories.js +0 -46
  966. package/lib/SlideList/SlideList.stories.js +0 -57
  967. package/lib/Slider/Slider.stories.js +0 -44
  968. package/lib/Slider/__mocks__/index.js +0 -49
  969. package/lib/Slider/constants.js +0 -20
  970. package/lib/Slider/internalHooks/useAutoPlay.js +0 -38
  971. package/lib/Slider/internalHooks/usePageControl.js +0 -42
  972. package/lib/Slider/internalHooks/useVirtual.js +0 -25
  973. package/lib/Slider/useSlider.js +0 -40
  974. package/lib/SliderSection/SliderSection.stories.js +0 -81
  975. package/lib/Tab/ScrollTabPanel/ScrollTabPanel.stories.js +0 -18
  976. package/lib/Tab/ScrollTabPanelWithObserver/ScrollTabPanelWithObserver.stories.js +0 -18
  977. package/lib/Tab/ScrollTabs/ScrollTabs.stories.js +0 -55
  978. package/lib/Tab/Tab/Tab.stories.js +0 -44
  979. package/lib/Tag/Chip/Chip.stories.js +0 -53
  980. package/lib/Tag/Tag/Tag.stories.js +0 -40
  981. package/lib/Typography/Body/Body.stories.js +0 -33
  982. package/lib/Typography/Caption/Caption.js +0 -20
  983. package/lib/Typography/Caption/Caption.stories.js +0 -40
  984. package/lib/Typography/Caption/index.js +0 -8
  985. package/lib/Typography/Paragraph/Paragraph.stories.js +0 -40
  986. package/lib/Typography/Title/Title.stories.js +0 -38
  987. package/lib/Underline/Underline.stories.js +0 -35
  988. package/lib/ViewPager/ViewPager.stories.js +0 -74
  989. package/lib/deprecated/Swiper/Swiper.stories.js +0 -177
  990. package/private/Box/Box.stories.js +0 -60
  991. package/private/ForwardStyle/ForwardStyle.stories.js +0 -23
  992. package/private/Space/Space.js +0 -12
  993. package/private/Space/Space.stories.js +0 -36
  994. package/private/Space/index.js +0 -8
  995. package/private/Svg/Svg.js +0 -34
  996. package/private/Svg/index.js +0 -8
  997. package/utils/appendCssUnit/appendCssUnit.js +0 -13
  998. package/utils/appendCssUnit/appendCssUnit.spec.js +0 -31
  999. package/utils/appendCssUnit/index.js +0 -8
  1000. package/utils/index.js +0 -8
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlayPause.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlayPause = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- viewBox: "0 0 24 24",
8
- fill,
9
- xmlns: "http://www.w3.org/2000/svg",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- d: "M14.75 20.765a.275.275 0 00.3.235h2.4a.275.275 0 00.3-.235V3.235a.275.275 0 00-.3-.235h-2.4a.275.275 0 00-.3.235v17.53zM6.25 20.765a.275.275 0 00.3.235h2.4a.275.275 0 00.3-.235V3.235A.275.275 0 008.95 3h-2.4a.275.275 0 00-.3.235v17.53z",
14
- fill
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlayPause = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ fill,
21
+ xmlns: "http://www.w3.org/2000/svg",
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ d: "M14.75 20.765a.275.275 0 0 0 .3.235h2.4a.275.275 0 0 0 .3-.235V3.235a.275.275 0 0 0-.3-.235h-2.4a.275.275 0 0 0-.3.235v17.53ZM6.25 20.765a.275.275 0 0 0 .3.235h2.4a.275.275 0 0 0 .3-.235V3.235A.275.275 0 0 0 8.95 3h-2.4a.275.275 0 0 0-.3.235v17.53Z",
26
+ fill
27
+ }));
28
+ };
16
29
  PlayPause.forwardStyle = true;
17
30
  export {
18
31
  PlayPause
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlayPrev.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlayPrev = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- viewBox: "0 0 24 24",
8
- fill,
9
- xmlns: "http://www.w3.org/2000/svg",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- d: "M5.25 21h2c.15 0 .25-.1.25-.25v-7.6l11.2 7.8c.05.05.05.05.1.05.1 0 .2-.1.2-.2V3.2c0-.1-.1-.2-.2-.2-.05 0-.05 0-.1.05l-11.2 7.8v-7.6c0-.15-.1-.25-.25-.25h-2C5.1 3 5 3.1 5 3.25v17.5c0 .15.1.25.25.25zM16.5 7.6v8.8L10.2 12l6.3-4.4z",
14
- fill
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlayPrev = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ fill,
21
+ xmlns: "http://www.w3.org/2000/svg",
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ d: "M5.25 21h2c.15 0 .25-.1.25-.25v-7.6l11.2 7.8c.05.05.05.05.1.05.1 0 .2-.1.2-.2V3.2c0-.1-.1-.2-.2-.2-.05 0-.05 0-.1.05l-11.2 7.8v-7.6c0-.15-.1-.25-.25-.25h-2C5.1 3 5 3.1 5 3.25v17.5c0 .15.1.25.25.25ZM16.5 7.6v8.8L10.2 12l6.3-4.4Z",
26
+ fill
27
+ }));
28
+ };
16
29
  PlayPrev.forwardStyle = true;
17
30
  export {
18
31
  PlayPrev
@@ -1,21 +1,34 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlayRewind10Sec.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlayRewind10Sec = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M8 15.852c-.05 0-.1-.05-.1-.1v-5.648h-.1c-.15.1-1.15.8-1.55 1.05-.05.05-.15 0-.15-.1v-1.65c0-.05 0-.05.05-.1.35-.25 1.4-.95 1.75-1.2.05 0 .05-.05.1-.05h2.05c.05 0 .1.05.1.1v7.548c0 .05-.05.1-.1.1H8v.05zM11.5 11.803c0-.75.15-1.45.4-2 .25-.549.65-.999 1.1-1.299.5-.3 1.05-.45 1.7-.45.65 0 1.25.15 1.7.45.45.3.85.75 1.1 1.3.25.55.4 1.25.4 2v.4c0 .549-.1 1.099-.25 1.549-.15.45-.35.85-.65 1.2-.3.35-.6.6-1 .75-.4.199-.85.249-1.35.249-.65 0-1.2-.15-1.7-.45-.45-.3-.85-.75-1.1-1.3-.25-.55-.4-1.25-.4-1.999v-.4h.05zm2.25.4c0 .45.05.8.1 1.1.1.3.2.55.35.7.15.15.3.25.5.25s.35-.1.5-.25c.15-.15.25-.4.35-.7.1-.3.1-.65.1-1.1v-.4c0-.45-.05-.8-.1-1.1-.1-.3-.2-.55-.35-.7-.15-.15-.3-.25-.5-.25s-.4.1-.5.25c-.15.15-.25.4-.3.7-.05.3-.1.65-.1 1.1v.4h-.05z"
15
- }), /* @__PURE__ */ React.createElement(Svg.Path, {
16
- fill,
17
- d: "M23 11.304c-.35-5.499-4.85-9.997-10.4-10.297-2-.1-3.9.35-5.55 1.15L6 .506c-.1-.15-.35-.15-.45.05L3.1 6.005c-.1.15.05.35.25.35l5.95.05c.2 0 .3-.2.2-.4l-1.05-1.7c1.4-.65 3-.949 4.7-.749 3.85.5 6.9 3.649 7.3 7.498C21 16.152 17 20.5 12 20.5c-4.6 0-8.35-3.7-8.5-8.248 0-.15-.1-.25-.25-.25h-2c-.15 0-.25.1-.25.25C1.15 18.201 6 23 12 23c6.3 0 11.35-5.298 11-11.696z"
18
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlayRewind10Sec = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M8 15.852c-.05 0-.1-.05-.1-.1v-5.648h-.1c-.15.1-1.15.8-1.55 1.05-.05.05-.15 0-.15-.1v-1.65c0-.05 0-.05.05-.1.35-.25 1.4-.95 1.75-1.2.05 0 .05-.05.1-.05h2.05c.05 0 .1.05.1.1v7.548c0 .05-.05.1-.1.1H8v.05ZM11.5 11.803c0-.75.15-1.45.4-2 .25-.549.65-.999 1.1-1.299.5-.3 1.05-.45 1.7-.45.65 0 1.25.15 1.7.45.45.3.85.75 1.1 1.3.25.55.4 1.25.4 2v.4c0 .549-.1 1.099-.25 1.549-.15.45-.35.85-.65 1.2-.3.35-.6.6-1 .75-.4.199-.85.249-1.35.249-.65 0-1.2-.15-1.7-.45-.45-.3-.85-.75-1.1-1.3-.25-.55-.4-1.25-.4-1.999v-.4h.05Zm2.25.4c0 .45.05.8.1 1.1.1.3.2.55.35.7.15.15.3.25.5.25s.35-.1.5-.25c.15-.15.25-.4.35-.7.1-.3.1-.65.1-1.1v-.4c0-.45-.05-.8-.1-1.1-.1-.3-.2-.55-.35-.7-.15-.15-.3-.25-.5-.25s-.4.1-.5.25c-.15.15-.25.4-.3.7-.05.3-.1.65-.1 1.1v.4h-.05Z"
27
+ }), /* @__PURE__ */ React.createElement(Svg.Path, {
28
+ fill,
29
+ d: "M23 11.304c-.35-5.499-4.85-9.997-10.4-10.297-2-.1-3.9.35-5.55 1.15L6 .506c-.1-.15-.35-.15-.45.05L3.1 6.005c-.1.15.05.35.25.35l5.95.05c.2 0 .3-.2.2-.4l-1.05-1.7c1.4-.65 3-.949 4.7-.749 3.85.5 6.9 3.649 7.3 7.498C21 16.152 17 20.5 12 20.5c-4.6 0-8.35-3.7-8.5-8.248 0-.15-.1-.25-.25-.25h-2c-.15 0-.25.1-.25.25C1.15 18.201 6 23 12 23c6.3 0 11.35-5.298 11-11.696Z"
30
+ }));
31
+ };
19
32
  PlayRewind10Sec.forwardStyle = true;
20
33
  export {
21
34
  PlayRewind10Sec
@@ -1,21 +1,34 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlayRewind15Sec.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlayRewind15Sec = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M7.95 15.852c-.05 0-.1-.05-.1-.1v-5.748h-.1c-.15.1-1.15.8-1.6 1.1-.05.05-.15 0-.15-.1v-1.7c0-.05 0-.05.05-.1.35-.25 1.45-1 1.8-1.2H10c.05 0 .1.05.1.1v7.649c0 .05-.05.1-.1.1H7.95zM13.2 13.603c.05 0 .1.05.1.05.1.25.25.35.3.4l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.15-.1.3-.2.4-.4.1-.15.15-.35.15-.55 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.4-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.1.05-.3.2-.45.4 0 .05-.05.05-.1.05h-1.8c-.05 0-.1-.05-.1-.1l.3-4.498c0-.05.05-.1.1-.1h5.15c.05 0 .1.05.1.1v1.55c0 .05-.05.1-.1.1h-3.5l-.1 1.449h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.55-.25.2-.1.5-.1.8-.1.45 0 .85.1 1.25.3.4.2.7.5.95.85.25.4.35.85.35 1.45s-.15 1.1-.4 1.549c-.25.45-.65.75-1.15 1-.5.25-1.05.35-1.7.35-.5 0-.9-.05-1.3-.2-.4-.1-.7-.3-.95-.5s-.45-.5-.6-.75c-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.8v.05z"
15
- }), /* @__PURE__ */ React.createElement(Svg.Path, {
16
- fill,
17
- d: "M23 11.304c-.35-5.499-4.85-9.997-10.4-10.297-2-.1-3.9.35-5.55 1.15L6 .506c-.1-.15-.35-.15-.45.05L3.1 6.005c-.05.15.05.35.25.35l5.95.05c.2 0 .3-.2.2-.4l-1.05-1.7c1.4-.65 3-.949 4.7-.749 3.85.5 6.9 3.649 7.3 7.498C21 16.152 17 20.5 12 20.5c-4.6 0-8.35-3.7-8.5-8.248 0-.15-.1-.25-.25-.25h-2c-.15 0-.25.1-.25.25C1.15 18.201 6 23 12 23c6.3 0 11.35-5.298 11-11.696z"
18
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlayRewind15Sec = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M7.95 15.852c-.05 0-.1-.05-.1-.1v-5.748h-.1c-.15.1-1.15.8-1.6 1.1-.05.05-.15 0-.15-.1v-1.7c0-.05 0-.05.05-.1.35-.25 1.45-1 1.8-1.2H10c.05 0 .1.05.1.1v7.649c0 .05-.05.1-.1.1H7.95ZM13.2 13.603c.05 0 .1.05.1.05.1.25.25.35.3.4l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.15-.1.3-.2.4-.4.1-.15.15-.35.15-.55 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.4-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.1.05-.3.2-.45.4 0 .05-.05.05-.1.05h-1.8c-.05 0-.1-.05-.1-.1l.3-4.498c0-.05.05-.1.1-.1h5.15c.05 0 .1.05.1.1v1.55c0 .05-.05.1-.1.1h-3.5l-.1 1.449h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.55-.25.2-.1.5-.1.8-.1.45 0 .85.1 1.25.3.4.2.7.5.95.85.25.4.35.85.35 1.45s-.15 1.1-.4 1.549c-.25.45-.65.75-1.15 1-.5.25-1.05.35-1.7.35-.5 0-.9-.05-1.3-.2-.4-.1-.7-.3-.95-.5s-.45-.5-.6-.75c-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.8v.05Z"
27
+ }), /* @__PURE__ */ React.createElement(Svg.Path, {
28
+ fill,
29
+ d: "M23 11.304c-.35-5.499-4.85-9.997-10.4-10.297-2-.1-3.9.35-5.55 1.15L6 .506c-.1-.15-.35-.15-.45.05L3.1 6.005c-.05.15.05.35.25.35l5.95.05c.2 0 .3-.2.2-.4l-1.05-1.7c1.4-.65 3-.949 4.7-.749 3.85.5 6.9 3.649 7.3 7.498C21 16.152 17 20.5 12 20.5c-4.6 0-8.35-3.7-8.5-8.248 0-.15-.1-.25-.25-.25h-2c-.15 0-.25.1-.25.25C1.15 18.201 6 23 12 23c6.3 0 11.35-5.298 11-11.696Z"
30
+ }));
31
+ };
19
32
  PlayRewind15Sec.forwardStyle = true;
20
33
  export {
21
34
  PlayRewind15Sec
@@ -1,21 +1,34 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlayRewind5Sec.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlayRewind5Sec = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M22.983 11.304c-.35-5.499-4.846-9.997-10.392-10.297-1.998-.1-3.897.35-5.546 1.15L5.996.506c-.1-.15-.35-.15-.45.05L3.098 6.005c-.1.15.05.35.25.35l5.946.05c.2 0 .3-.2.2-.4l-1.05-1.7a8.667 8.667 0 014.696-.749c3.848.5 6.895 3.649 7.295 7.498.55 5.098-3.447 9.447-8.444 9.447-4.596 0-8.343-3.7-8.493-8.248 0-.15-.1-.25-.25-.25H1.25c-.15 0-.25.1-.25.25C1.15 18.201 5.996 23 11.991 23c6.296 0 11.342-5.298 10.992-11.696z"
15
- }), /* @__PURE__ */ React.createElement(Svg.Path, {
16
- fill,
17
- d: "M10.842 13.602c0 .1.05.2.1.25.05.1.15.15.25.2l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.149-.1.299-.2.399-.4.1-.15.15-.35.15-.55 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.399-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.099.05-.199.15-.299.2-.1.1-.15.15-.15.2H9.094c-.05 0-.1-.05-.1-.1l.3-4.499c0-.05.05-.1.1-.1h5.146c.05 0 .1.05.1.1v1.55c0 .05-.05.1-.1.1h-3.498l-.1 1.45h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.55-.25.2-.1.5-.1.799-.1.45 0 .85.1 1.249.3.4.2.7.5.95.85.249.399.349.849.349 1.449 0 .6-.15 1.1-.4 1.55-.25.45-.65.749-1.149.999-.5.25-1.049.35-1.699.35-.5 0-.899-.05-1.299-.2-.4-.1-.699-.3-.949-.5s-.45-.5-.6-.75c-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.85v.1z"
18
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlayRewind5Sec = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M22.983 11.304c-.35-5.499-4.846-9.997-10.392-10.297-1.998-.1-3.897.35-5.546 1.15L5.996.506c-.1-.15-.35-.15-.45.05L3.098 6.005c-.1.15.05.35.25.35l5.946.05c.2 0 .3-.2.2-.4l-1.05-1.7a8.667 8.667 0 0 1 4.696-.749c3.848.5 6.895 3.649 7.295 7.498.55 5.098-3.447 9.447-8.444 9.447-4.596 0-8.343-3.7-8.493-8.248 0-.15-.1-.25-.25-.25H1.25c-.15 0-.25.1-.25.25C1.15 18.201 5.996 23 11.991 23c6.296 0 11.342-5.298 10.992-11.696Z"
27
+ }), /* @__PURE__ */ React.createElement(Svg.Path, {
28
+ fill,
29
+ d: "M10.842 13.602c0 .1.05.2.1.25.05.1.15.15.25.2l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.149-.1.299-.2.399-.4.1-.15.15-.35.15-.55 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.399-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.099.05-.199.15-.299.2-.1.1-.15.15-.15.2H9.094c-.05 0-.1-.05-.1-.1l.3-4.499c0-.05.05-.1.1-.1h5.146c.05 0 .1.05.1.1v1.55c0 .05-.05.1-.1.1h-3.498l-.1 1.45h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.55-.25.2-.1.5-.1.799-.1.45 0 .85.1 1.249.3.4.2.7.5.95.85.249.399.349.849.349 1.449 0 .6-.15 1.1-.4 1.55-.25.45-.65.749-1.149.999-.5.25-1.049.35-1.699.35-.5 0-.899-.05-1.299-.2-.4-.1-.699-.3-.949-.5s-.45-.5-.6-.75c-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.85v.1Z"
30
+ }));
31
+ };
19
32
  PlayRewind5Sec.forwardStyle = true;
20
33
  export {
21
34
  PlayRewind5Sec
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlaySpeedX025.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlaySpeedX025 = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M7.65 16.85c0 .75-.05 1.4-.3 1.95s-.55.95-.95 1.25c-.4.3-.9.45-1.5.45-.45 0-.85-.1-1.2-.25s-.65-.4-.9-.75c-.25-.3-.45-.7-.6-1.15-.15-.45-.2-.95-.2-1.5v-.4c0-.75.1-1.4.35-1.95.25-.55.55-.95.95-1.25.4-.3.9-.45 1.5-.45s1.1.15 1.5.45c.45.3.75.7 1 1.25s.35 1.2.35 1.95v.4zm-1.95-.4c0-.4-.05-.75-.1-1.05-.05-.3-.15-.5-.3-.65-.15-.15-.3-.25-.45-.25-.2 0-.35.1-.45.25-.15.15-.2.35-.3.65-.05.3-.1.65-.1 1.05v.4c0 .4.05.75.1 1.05.05.3.15.5.3.65.15.15.3.25.45.25.15 0 .35-.1.45-.25.1-.15.2-.4.3-.65.05-.3.1-.65.1-1.05v-.4zM8.95 20.35c.58 0 1.05-.515 1.05-1.15 0-.635-.47-1.15-1.05-1.15-.58 0-1.05.515-1.05 1.15 0 .636.47 1.15 1.05 1.15zM10.7 15.25c-.05 0-.1-.05-.1-.1 0-.3.05-.65.15-.9.1-.3.25-.55.45-.8s.45-.45.8-.6c.3-.15.7-.2 1.15-.2.5 0 1 .1 1.35.3.4.2.7.45.9.8.2.35.3.7.3 1.1 0 .4-.05.75-.2 1-.15.3-.3.55-.5.75-.2.2-.35.45-.55.65l-1.15 1.3v.1h2.4c.05 0 .1.05.1.1v1.5c0 .05-.05.1-.1.1l-4.95-.05c-.05 0-.1-.05-.1-.1v-1.25L13 16.4c.1-.15.25-.25.35-.4l.3-.45c.1-.15.1-.3.1-.5 0-.15-.05-.25-.1-.35-.05-.1-.15-.2-.25-.3-.1-.05-.25-.1-.35-.1-.15 0-.25.05-.35.1-.1.05-.2.15-.25.3-.05.1-.05.3-.1.45 0 .05-.05.1-.1.1H10.7zM18.3 18.35c.05 0 .05.05.1.05.05.25.2.35.25.4.1.05.15.1.25.15.1.05.2.05.35.05.2 0 .35-.05.5-.15.15-.1.25-.2.3-.35.1-.15.1-.35.1-.55 0-.2-.05-.35-.1-.5-.1-.15-.2-.25-.3-.35-.15-.1-.3-.15-.45-.15-.15 0-.3.05-.4.1-.1.05-.25.2-.4.35 0 .05-.05.05-.05.05H16.9c-.05 0-.1-.05-.1-.1l.25-4.25c0-.05.05-.1.1-.1h4.35c.05 0 .1.05.1.1v1.45c0 .05-.05.1-.1.1h-3l-.1 1.4h.1c.05-.1.1-.15.25-.25.1-.1.25-.2.45-.25.2-.05.4-.1.65-.1.4 0 .75.1 1.05.3.3.2.6.45.8.85.2.35.3.8.3 1.35s-.1 1.05-.35 1.45c-.25.4-.55.7-.95.95-.4.2-.9.35-1.4.35-.4 0-.75-.05-1.1-.2-.3-.1-.6-.3-.8-.5-.25-.2-.4-.45-.5-.75-.1-.25-.15-.5-.2-.8 0-.05.05-.1.1-.1h1.5zM13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9z"
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlaySpeedX025 = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M7.65 16.85c0 .75-.05 1.4-.3 1.95s-.55.95-.95 1.25c-.4.3-.9.45-1.5.45-.45 0-.85-.1-1.2-.25s-.65-.4-.9-.75c-.25-.3-.45-.7-.6-1.15-.15-.45-.2-.95-.2-1.5v-.4c0-.75.1-1.4.35-1.95.25-.55.55-.95.95-1.25.4-.3.9-.45 1.5-.45s1.1.15 1.5.45c.45.3.75.7 1 1.25s.35 1.2.35 1.95v.4Zm-1.95-.4c0-.4-.05-.75-.1-1.05-.05-.3-.15-.5-.3-.65-.15-.15-.3-.25-.45-.25-.2 0-.35.1-.45.25-.15.15-.2.35-.3.65-.05.3-.1.65-.1 1.05v.4c0 .4.05.75.1 1.05.05.3.15.5.3.65.15.15.3.25.45.25.15 0 .35-.1.45-.25.1-.15.2-.4.3-.65.05-.3.1-.65.1-1.05v-.4ZM8.95 20.35c.58 0 1.05-.515 1.05-1.15 0-.635-.47-1.15-1.05-1.15-.58 0-1.05.515-1.05 1.15 0 .636.47 1.15 1.05 1.15ZM10.7 15.25c-.05 0-.1-.05-.1-.1 0-.3.05-.65.15-.9.1-.3.25-.55.45-.8s.45-.45.8-.6c.3-.15.7-.2 1.15-.2.5 0 1 .1 1.35.3.4.2.7.45.9.8.2.35.3.7.3 1.1 0 .4-.05.75-.2 1-.15.3-.3.55-.5.75-.2.2-.35.45-.55.65l-1.15 1.3v.1h2.4c.05 0 .1.05.1.1v1.5c0 .05-.05.1-.1.1l-4.95-.05c-.05 0-.1-.05-.1-.1v-1.25L13 16.4c.1-.15.25-.25.35-.4l.3-.45c.1-.15.1-.3.1-.5 0-.15-.05-.25-.1-.35-.05-.1-.15-.2-.25-.3-.1-.05-.25-.1-.35-.1-.15 0-.25.05-.35.1-.1.05-.2.15-.25.3-.05.1-.05.3-.1.45 0 .05-.05.1-.1.1H10.7ZM18.3 18.35c.05 0 .05.05.1.05.05.25.2.35.25.4.1.05.15.1.25.15.1.05.2.05.35.05.2 0 .35-.05.5-.15.15-.1.25-.2.3-.35.1-.15.1-.35.1-.55 0-.2-.05-.35-.1-.5-.1-.15-.2-.25-.3-.35-.15-.1-.3-.15-.45-.15-.15 0-.3.05-.4.1-.1.05-.25.2-.4.35 0 .05-.05.05-.05.05H16.9c-.05 0-.1-.05-.1-.1l.25-4.25c0-.05.05-.1.1-.1h4.35c.05 0 .1.05.1.1v1.45c0 .05-.05.1-.1.1h-3l-.1 1.4h.1c.05-.1.1-.15.25-.25.1-.1.25-.2.45-.25.2-.05.4-.1.65-.1.4 0 .75.1 1.05.3.3.2.6.45.8.85.2.35.3.8.3 1.35s-.1 1.05-.35 1.45c-.25.4-.55.7-.95.95-.4.2-.9.35-1.4.35-.4 0-.75-.05-1.1-.2-.3-.1-.6-.3-.8-.5-.25-.2-.4-.45-.5-.75-.1-.25-.15-.5-.2-.8 0-.05.05-.1.1-.1h1.5ZM13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9Z"
27
+ }));
28
+ };
16
29
  PlaySpeedX025.forwardStyle = true;
17
30
  export {
18
31
  PlaySpeedX025
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlaySpeedX05.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlaySpeedX05 = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M9.95 16.45c0 .8-.1 1.55-.35 2.15-.25.6-.65 1.05-1.15 1.4-.5.35-1.1.5-1.8.5-.5 0-1-.1-1.4-.3-.4-.2-.8-.45-1.1-.8-.3-.35-.55-.8-.7-1.3a5.71 5.71 0 01-.25-1.65V16c0-.85.15-1.55.4-2.15.25-.6.65-1.05 1.15-1.4.5-.3 1.1-.5 1.8-.5s1.3.15 1.8.5.9.8 1.2 1.4c.3.6.4 1.3.4 2.1v.5zM7.65 16c0-.45-.05-.85-.1-1.15-.1-.3-.2-.55-.35-.75a.803.803 0 00-.55-.25c-.2 0-.4.1-.55.25-.15.15-.25.4-.35.75-.1.3-.1.7-.1 1.15v.45c0 .45.05.85.1 1.15.1.3.2.55.35.75.15.15.35.25.55.25.2 0 .4-.1.55-.25.15-.15.25-.4.35-.75.1-.3.1-.7.1-1.2V16zM13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9zM12 20.35a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5zM16.45 18c.05 0 .1.05.1.05.1.25.25.4.3.45l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.15-.1.3-.25.4-.4.1-.15.15-.35.15-.6 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.4-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.1.05-.3.2-.45.4 0 .05-.05.05-.1.05H14.7c-.05 0-.1-.05-.1-.1l.3-4.6c0-.05.05-.1.1-.1h5.15c.05 0 .1.05.1.1v1.6c0 .05-.05.1-.1.1h-3.5l-.1 1.5h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.5-.3.2-.1.5-.1.8-.1.45 0 .85.1 1.25.3.4.2.7.5.95.9s.35.9.35 1.5-.15 1.15-.4 1.6c-.25.45-.65.8-1.15 1-.5.25-1.05.35-1.65.35-.5 0-.9-.05-1.3-.2-.4-.15-.7-.3-.95-.55-.25-.25-.45-.5-.6-.8-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.85V18z"
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlaySpeedX05 = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M9.95 16.45c0 .8-.1 1.55-.35 2.15-.25.6-.65 1.05-1.15 1.4-.5.35-1.1.5-1.8.5-.5 0-1-.1-1.4-.3-.4-.2-.8-.45-1.1-.8-.3-.35-.55-.8-.7-1.3a5.71 5.71 0 0 1-.25-1.65V16c0-.85.15-1.55.4-2.15.25-.6.65-1.05 1.15-1.4.5-.3 1.1-.5 1.8-.5s1.3.15 1.8.5.9.8 1.2 1.4c.3.6.4 1.3.4 2.1v.5ZM7.65 16c0-.45-.05-.85-.1-1.15-.1-.3-.2-.55-.35-.75a.803.803 0 0 0-.55-.25c-.2 0-.4.1-.55.25-.15.15-.25.4-.35.75-.1.3-.1.7-.1 1.15v.45c0 .45.05.85.1 1.15.1.3.2.55.35.75.15.15.35.25.55.25.2 0 .4-.1.55-.25.15-.15.25-.4.35-.75.1-.3.1-.7.1-1.2V16ZM13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9ZM12 20.35a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM16.45 18c.05 0 .1.05.1.05.1.25.25.4.3.45l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.15-.1.3-.25.4-.4.1-.15.15-.35.15-.6 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.4-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.1.05-.3.2-.45.4 0 .05-.05.05-.1.05H14.7c-.05 0-.1-.05-.1-.1l.3-4.6c0-.05.05-.1.1-.1h5.15c.05 0 .1.05.1.1v1.6c0 .05-.05.1-.1.1h-3.5l-.1 1.5h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.5-.3.2-.1.5-.1.8-.1.45 0 .85.1 1.25.3.4.2.7.5.95.9s.35.9.35 1.5-.15 1.15-.4 1.6c-.25.45-.65.8-1.15 1-.5.25-1.05.35-1.65.35-.5 0-.9-.05-1.3-.2-.4-.15-.7-.3-.95-.55-.25-.25-.45-.5-.6-.8-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.85V18Z"
27
+ }));
28
+ };
16
29
  PlaySpeedX05.forwardStyle = true;
17
30
  export {
18
31
  PlaySpeedX05
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlaySpeedX1.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlaySpeedX1 = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9zM13.75 16c0-.8.2-1.5.45-2.1.25-.6.65-1.05 1.2-1.4.5-.35 1.1-.5 1.8-.5s1.3.15 1.8.5c.5.3.9.8 1.15 1.4.25.6.4 1.3.4 2.15v.45c0 .6-.1 1.15-.25 1.65s-.4.9-.7 1.3c-.3.35-.65.65-1.1.8-.4.2-.9.3-1.4.3-.7 0-1.3-.15-1.8-.5s-.9-.8-1.15-1.4c-.25-.6-.4-1.3-.4-2.15V16zm2.45.45c0 .45.05.85.1 1.2.1.3.2.55.35.75.15.2.35.25.55.25.2 0 .4-.1.55-.25.15-.15.25-.4.35-.75.1-.3.1-.7.1-1.15V16c0-.45-.05-.85-.1-1.15-.1-.3-.2-.55-.35-.75a.803.803 0 00-.55-.25c-.2 0-.4.1-.55.25-.15.15-.25.4-.35.75-.1.3-.1.7-.1 1.15v.45zM6.5 20.3c-.05 0-.1-.05-.1-.1V14h-.1c-.2.1-1.25.85-1.7 1.2-.05.05-.15 0-.15-.1v-1.85c0-.05 0-.05.05-.1.35-.25 1.5-1.05 1.9-1.3.05-.05.1-.05.1-.05h2.25c.05 0 .1.05.1.1v8.3c0 .05-.05.1-.1.1H6.5zM11.55 20.35a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z"
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlaySpeedX1 = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "m13.75 6.25 1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9ZM13.75 16c0-.8.2-1.5.45-2.1.25-.6.65-1.05 1.2-1.4.5-.35 1.1-.5 1.8-.5s1.3.15 1.8.5c.5.3.9.8 1.15 1.4.25.6.4 1.3.4 2.15v.45c0 .6-.1 1.15-.25 1.65s-.4.9-.7 1.3c-.3.35-.65.65-1.1.8-.4.2-.9.3-1.4.3-.7 0-1.3-.15-1.8-.5s-.9-.8-1.15-1.4c-.25-.6-.4-1.3-.4-2.15V16Zm2.45.45c0 .45.05.85.1 1.2.1.3.2.55.35.75.15.2.35.25.55.25.2 0 .4-.1.55-.25.15-.15.25-.4.35-.75.1-.3.1-.7.1-1.15V16c0-.45-.05-.85-.1-1.15-.1-.3-.2-.55-.35-.75a.803.803 0 0 0-.55-.25c-.2 0-.4.1-.55.25-.15.15-.25.4-.35.75-.1.3-.1.7-.1 1.15v.45ZM6.5 20.3c-.05 0-.1-.05-.1-.1V14h-.1c-.2.1-1.25.85-1.7 1.2-.05.05-.15 0-.15-.1v-1.85c0-.05 0-.05.05-.1.35-.25 1.5-1.05 1.9-1.3.05-.05.1-.05.1-.05h2.25c.05 0 .1.05.1.1v8.3c0 .05-.05.1-.1.1H6.5ZM11.55 20.35a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z"
27
+ }));
28
+ };
16
29
  PlaySpeedX1.forwardStyle = true;
17
30
  export {
18
31
  PlaySpeedX1
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlaySpeedX15.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlaySpeedX15 = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9zM15.532 18c.05 0 .1.05.1.05.1.25.25.4.3.45l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.15-.1.3-.25.4-.4.1-.15.15-.35.15-.6 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.4-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.1.05-.3.2-.45.4 0 .05-.05.05-.1.05h-1.85c-.05 0-.1-.05-.1-.1l.3-4.6c0-.05.05-.1.1-.1h5.15c.05 0 .1.05.1.1v1.6c0 .05-.05.1-.1.1h-3.5l-.1 1.5h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.5-.3.2-.1.5-.1.8-.1.45 0 .85.1 1.25.3.4.2.7.5.95.9s.35.9.35 1.5-.15 1.15-.4 1.6c-.25.45-.65.8-1.15 1-.5.25-1.05.35-1.65.35-.5 0-.9-.05-1.3-.2-.4-.15-.7-.3-.95-.55-.25-.25-.45-.5-.6-.8-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.85V18zM6.032 20.3c-.05 0-.1-.05-.1-.1V14h-.1c-.2.1-1.25.85-1.7 1.2-.05.05-.15 0-.15-.1v-1.85c0-.05 0-.05.05-.1.35-.25 1.5-1.05 1.9-1.3.05-.05.1-.05.1-.05h2.25c.05 0 .1.05.1.1v8.3c0 .05-.05.1-.1.1h-2.25zM11.082 20.35a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z"
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlaySpeedX15 = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "m13.75 6.25 1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9ZM15.532 18c.05 0 .1.05.1.05.1.25.25.4.3.45l.3.15c.1.05.25.05.4.05.2 0 .4-.05.55-.15.15-.1.3-.25.4-.4.1-.15.15-.35.15-.6 0-.2-.05-.4-.15-.55-.1-.15-.2-.3-.4-.4-.15-.1-.35-.15-.55-.15-.2 0-.35.05-.45.1-.1.05-.3.2-.45.4 0 .05-.05.05-.1.05h-1.85c-.05 0-.1-.05-.1-.1l.3-4.6c0-.05.05-.1.1-.1h5.15c.05 0 .1.05.1.1v1.6c0 .05-.05.1-.1.1h-3.5l-.1 1.5h.1c.05-.1.15-.2.25-.3.15-.1.3-.2.5-.3.2-.1.5-.1.8-.1.45 0 .85.1 1.25.3.4.2.7.5.95.9s.35.9.35 1.5-.15 1.15-.4 1.6c-.25.45-.65.8-1.15 1-.5.25-1.05.35-1.65.35-.5 0-.9-.05-1.3-.2-.4-.15-.7-.3-.95-.55-.25-.25-.45-.5-.6-.8-.15-.25-.2-.55-.2-.85 0-.05.05-.1.1-.1h1.85V18ZM6.032 20.3c-.05 0-.1-.05-.1-.1V14h-.1c-.2.1-1.25.85-1.7 1.2-.05.05-.15 0-.15-.1v-1.85c0-.05 0-.05.05-.1.35-.25 1.5-1.05 1.9-1.3.05-.05.1-.05.1-.05h2.25c.05 0 .1.05.1.1v8.3c0 .05-.05.1-.1.1h-2.25ZM11.082 20.35a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z"
27
+ }));
28
+ };
16
29
  PlaySpeedX15.forwardStyle = true;
17
30
  export {
18
31
  PlaySpeedX15
@@ -1,18 +1,31 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlaySpeedX2.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlaySpeedX2 = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M13.75 6.25l1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9zM3.414 14.7c-.05 0-.1-.05-.1-.1 0-.35.05-.7.2-1 .1-.3.3-.6.55-.9.25-.25.55-.5.95-.65.4-.15.85-.25 1.4-.25.6 0 1.15.1 1.65.35.45.2.8.5 1.05.85s.4.75.35 1.2c0 .45-.1.8-.25 1.1-.15.3-.35.6-.6.85s-.45.45-.65.7l-1.4 1.45v.1h2.9c.05 0 .1.05.1.1v1.7c0 .05-.05.1-.1.1l-5.95-.05c-.05 0-.1-.05-.1-.1V18.8c0-.05 0-.05.05-.05l2.85-2.85c.15-.15.3-.3.4-.45.15-.15.25-.3.35-.5.1-.2.15-.35.15-.55 0-.15-.05-.3-.1-.4-.05-.1-.15-.25-.3-.3-.15-.1-.25-.1-.45-.1-.15 0-.3.05-.45.1l-.3.3c-.05.1-.1.3-.1.5 0 .05-.05.1-.1.1-.4.1-1.55.1-2 .1zM12.114 20.35a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5zM14.064 16c0-.8.2-1.5.45-2.1.3-.6.65-1.05 1.2-1.4.5-.35 1.1-.5 1.8-.5s1.3.15 1.8.5c.5.3.9.8 1.15 1.4.25.6.4 1.3.4 2.15v.45c0 .6-.1 1.15-.25 1.65s-.4.9-.7 1.3c-.3.35-.65.65-1.1.8-.4.2-.9.3-1.4.3-.7 0-1.3-.15-1.8-.5s-.9-.8-1.15-1.4c-.25-.6-.4-1.3-.4-2.15V16zm2.4.45c0 .45.05.85.1 1.2.1.3.2.55.35.75.15.15.35.25.55.25.2 0 .4-.1.55-.25.15-.15.25-.4.35-.75.1-.3.1-.7.1-1.15V16c0-.45-.05-.85-.1-1.15-.1-.3-.2-.55-.35-.75a.803.803 0 00-.55-.25c-.2 0-.4.1-.55.25-.15.15-.25.4-.35.75-.1.3-.1.7-.1 1.15v.45z"
15
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlaySpeedX2 = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "m13.75 6.25 1.9-1.9c.1-.1.1-.25 0-.35l-1.4-1.4c-.1-.1-.25-.1-.35 0L12 4.5l-1.9-1.9c-.1-.1-.25-.1-.35 0L8.35 4c-.1.1-.1.25 0 .35l1.9 1.9-1.9 1.9c-.1.1-.1.25 0 .35l1.4 1.4c.1.1.25.1.35 0L12 8l1.9 1.9c.1.1.25.1.35 0l1.4-1.4c.1-.1.1-.25 0-.35l-1.9-1.9ZM3.414 14.7c-.05 0-.1-.05-.1-.1 0-.35.05-.7.2-1 .1-.3.3-.6.55-.9.25-.25.55-.5.95-.65.4-.15.85-.25 1.4-.25.6 0 1.15.1 1.65.35.45.2.8.5 1.05.85s.4.75.35 1.2c0 .45-.1.8-.25 1.1-.15.3-.35.6-.6.85s-.45.45-.65.7l-1.4 1.45v.1h2.9c.05 0 .1.05.1.1v1.7c0 .05-.05.1-.1.1l-5.95-.05c-.05 0-.1-.05-.1-.1V18.8c0-.05 0-.05.05-.05l2.85-2.85c.15-.15.3-.3.4-.45.15-.15.25-.3.35-.5.1-.2.15-.35.15-.55 0-.15-.05-.3-.1-.4-.05-.1-.15-.25-.3-.3-.15-.1-.25-.1-.45-.1-.15 0-.3.05-.45.1l-.3.3c-.05.1-.1.3-.1.5 0 .05-.05.1-.1.1-.4.1-1.55.1-2 .1ZM12.114 20.35a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM14.064 16c0-.8.2-1.5.45-2.1.3-.6.65-1.05 1.2-1.4.5-.35 1.1-.5 1.8-.5s1.3.15 1.8.5c.5.3.9.8 1.15 1.4.25.6.4 1.3.4 2.15v.45c0 .6-.1 1.15-.25 1.65s-.4.9-.7 1.3c-.3.35-.65.65-1.1.8-.4.2-.9.3-1.4.3-.7 0-1.3-.15-1.8-.5s-.9-.8-1.15-1.4c-.25-.6-.4-1.3-.4-2.15V16Zm2.4.45c0 .45.05.85.1 1.2.1.3.2.55.35.75.15.15.35.25.55.25.2 0 .4-.1.55-.25.15-.15.25-.4.35-.75.1-.3.1-.7.1-1.15V16c0-.45-.05-.85-.1-1.15-.1-.3-.2-.55-.35-.75a.803.803 0 0 0-.55-.25c-.2 0-.4.1-.55.25-.15.15-.25.4-.35.75-.1.3-.1.7-.1 1.15v.45Z"
27
+ }));
28
+ };
16
29
  PlaySpeedX2.forwardStyle = true;
17
30
  export {
18
31
  PlaySpeedX2
@@ -1,21 +1,34 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PlaystoreCircle.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PlaystoreCircle = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M12 3.5c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5S7.3 3.5 12 3.5zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1z"
15
- }), /* @__PURE__ */ React.createElement(Svg.Path, {
16
- fill,
17
- d: "M17.85 11.5l-1.75-1-1.5 1.5 1.5 1.5 1.75-1c.4-.2.4-.75 0-1zM8.6 7v10l4.95-5L8.6 7zM9.3 17.45c.05 0 .1-.05.15-.05l5.95-3.45-1.35-1.35-4.75 4.85zM15.4 10.1L9.45 6.65c-.05-.05-.1-.05-.2-.05l4.8 4.9 1.35-1.4z"
18
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PlaystoreCircle = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M12 3.5c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5S7.3 3.5 12 3.5ZM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1Z"
27
+ }), /* @__PURE__ */ React.createElement(Svg.Path, {
28
+ fill,
29
+ d: "m17.85 11.5-1.75-1-1.5 1.5 1.5 1.5 1.75-1c.4-.2.4-.75 0-1ZM8.6 7v10l4.95-5L8.6 7ZM9.3 17.45c.05 0 .1-.05.15-.05l5.95-3.45-1.35-1.35-4.75 4.85ZM15.4 10.1 9.45 6.65c-.05-.05-.1-.05-.2-.05l4.8 4.9 1.35-1.4Z"
30
+ }));
31
+ };
19
32
  PlaystoreCircle.forwardStyle = true;
20
33
  export {
21
34
  PlaystoreCircle
@@ -1,21 +1,34 @@
1
- // tools/builders/framer-esm/build/react-shim.js
2
- import * as React from "react";
1
+ import {
2
+ React,
3
+ __objRest,
4
+ __spreadValues,
5
+ init_react_shim
6
+ } from "../../../chunk-VIIHQGZ3.js";
3
7
 
4
8
  // libs/shared/ui-system/src/lib/Icon/regular/PointCircle.tsx
5
- import {Svg} from "../../../private/Svg/index.js";
6
- var PointCircle = ({size = 24, fill = "primary.500", ...props}) => /* @__PURE__ */ React.createElement(Svg, {
7
- xmlns: "http://www.w3.org/2000/svg",
8
- fill,
9
- viewBox: "0 0 24 24",
10
- size,
11
- ...props
12
- }, /* @__PURE__ */ React.createElement(Svg.Path, {
13
- fill,
14
- d: "M12 3.5c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5S7.3 3.5 12 3.5zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1z"
15
- }), /* @__PURE__ */ React.createElement(Svg.Path, {
16
- fill,
17
- d: "M14.75 8.25c.45.3.8.65 1 1.1.2.45.35.95.35 1.5s-.1 1.05-.35 1.5c-.2.45-.55.8-1 1.1-.45.25-1.05.4-1.7.4h-1.3v2.1c0 .15-.1.25-.25.25H9.6c-.15 0-.25-.1-.25-.25V8.1c0-.15.1-.25.25-.25h3.5c.65 0 1.2.15 1.65.4zm-1.45 1.7c-.2-.2-.5-.3-.9-.3h-.7v2.45h.7c.25 0 .45-.05.65-.15.2-.1.35-.25.45-.4.1-.2.15-.4.15-.65 0-.45-.1-.75-.35-.95z"
18
- }));
9
+ init_react_shim();
10
+ import { Svg } from "../../Svg/index.js";
11
+ var PointCircle = (_a) => {
12
+ var _b = _a, {
13
+ size = 24,
14
+ fill = "primary.500"
15
+ } = _b, props = __objRest(_b, [
16
+ "size",
17
+ "fill"
18
+ ]);
19
+ return /* @__PURE__ */ React.createElement(Svg, __spreadValues({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ fill,
22
+ size,
23
+ viewBox: "0 0 24 24"
24
+ }, props), /* @__PURE__ */ React.createElement(Svg.Path, {
25
+ fill,
26
+ d: "M12 3.5c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5S7.3 3.5 12 3.5ZM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1Z"
27
+ }), /* @__PURE__ */ React.createElement(Svg.Path, {
28
+ fill,
29
+ d: "M14.75 8.25c.45.3.8.65 1 1.1.2.45.35.95.35 1.5s-.1 1.05-.35 1.5c-.2.45-.55.8-1 1.1-.45.25-1.05.4-1.7.4h-1.3v2.1c0 .15-.1.25-.25.25H9.6c-.15 0-.25-.1-.25-.25V8.1c0-.15.1-.25.25-.25h3.5c.65 0 1.2.15 1.65.4Zm-1.45 1.7c-.2-.2-.5-.3-.9-.3h-.7v2.45h.7c.25 0 .45-.05.65-.15.2-.1.35-.25.45-.4.1-.2.15-.4.15-.65 0-.45-.1-.75-.35-.95Z"
30
+ }));
31
+ };
19
32
  PointCircle.forwardStyle = true;
20
33
  export {
21
34
  PointCircle