@noxlovette/material 0.1.0

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 (537) hide show
  1. package/dist/actions/clickOutside.d.ts +3 -0
  2. package/dist/actions/clickOutside.js +13 -0
  3. package/dist/actions/floating.d.ts +20 -0
  4. package/dist/actions/floating.js +87 -0
  5. package/dist/actions/index.d.ts +4 -0
  6. package/dist/actions/index.js +4 -0
  7. package/dist/actions/keyboard.d.ts +3 -0
  8. package/dist/actions/keyboard.js +14 -0
  9. package/dist/actions/positionFloating.d.ts +10 -0
  10. package/dist/actions/positionFloating.js +59 -0
  11. package/dist/animation/containerTransform.d.ts +13 -0
  12. package/dist/animation/containerTransform.js +138 -0
  13. package/dist/animation/easing.d.ts +6 -0
  14. package/dist/animation/easing.js +78 -0
  15. package/dist/animation/enterExit.d.ts +3 -0
  16. package/dist/animation/enterExit.js +23 -0
  17. package/dist/animation/index.d.ts +5 -0
  18. package/dist/animation/index.js +5 -0
  19. package/dist/animation/outroClass.d.ts +3 -0
  20. package/dist/animation/outroClass.js +20 -0
  21. package/dist/animation/shapes.d.ts +35 -0
  22. package/dist/animation/shapes.js +37 -0
  23. package/dist/animation/shapesAnimatable.d.ts +35 -0
  24. package/dist/animation/shapesAnimatable.js +41 -0
  25. package/dist/animation/shapesAnimatableSmall.d.ts +29 -0
  26. package/dist/animation/shapesAnimatableSmall.js +33 -0
  27. package/dist/animation/sharedAxisTransition.d.ts +38 -0
  28. package/dist/animation/sharedAxisTransition.js +23 -0
  29. package/dist/animation/transition.d.ts +4 -0
  30. package/dist/animation/transition.js +4 -0
  31. package/dist/animation/transitionTypes.d.ts +8 -0
  32. package/dist/animation/transitionTypes.js +1 -0
  33. package/dist/components/badge/Badge.svelte +26 -0
  34. package/dist/components/badge/Badge.svelte.d.ts +12 -0
  35. package/dist/components/badge/index.d.ts +3 -0
  36. package/dist/components/badge/index.js +6 -0
  37. package/dist/components/badge/theme.d.ts +16 -0
  38. package/dist/components/badge/theme.js +10 -0
  39. package/dist/components/badge/types.d.ts +18 -0
  40. package/dist/components/badge/types.js +1 -0
  41. package/dist/components/buttons/Button.svelte +53 -0
  42. package/dist/components/buttons/Button.svelte.d.ts +16 -0
  43. package/dist/components/buttons/ButtonIcon.svelte +79 -0
  44. package/dist/components/buttons/ButtonIcon.svelte.d.ts +14 -0
  45. package/dist/components/buttons/FAB.svelte +81 -0
  46. package/dist/components/buttons/FAB.svelte.d.ts +14 -0
  47. package/dist/components/buttons/FABMenu.svelte +86 -0
  48. package/dist/components/buttons/FABMenu.svelte.d.ts +8 -0
  49. package/dist/components/buttons/FABMenuItem.svelte +38 -0
  50. package/dist/components/buttons/FABMenuItem.svelte.d.ts +5 -0
  51. package/dist/components/buttons/Toggle.svelte +62 -0
  52. package/dist/components/buttons/Toggle.svelte.d.ts +11 -0
  53. package/dist/components/buttons/connected/ConnectedButtons.svelte +14 -0
  54. package/dist/components/buttons/connected/ConnectedButtons.svelte.d.ts +8 -0
  55. package/dist/components/buttons/connected/index.d.ts +2 -0
  56. package/dist/components/buttons/connected/index.js +5 -0
  57. package/dist/components/buttons/connected/types.d.ts +14 -0
  58. package/dist/components/buttons/connected/types.js +1 -0
  59. package/dist/components/buttons/index.d.ts +9 -0
  60. package/dist/components/buttons/index.js +13 -0
  61. package/dist/components/buttons/theme.d.ts +539 -0
  62. package/dist/components/buttons/theme.js +495 -0
  63. package/dist/components/buttons/types.d.ts +201 -0
  64. package/dist/components/buttons/types.js +1 -0
  65. package/dist/components/cards/Card.svelte +39 -0
  66. package/dist/components/cards/Card.svelte.d.ts +13 -0
  67. package/dist/components/cards/index.d.ts +3 -0
  68. package/dist/components/cards/index.js +6 -0
  69. package/dist/components/cards/theme.d.ts +37 -0
  70. package/dist/components/cards/theme.js +34 -0
  71. package/dist/components/cards/types.d.ts +31 -0
  72. package/dist/components/cards/types.js +1 -0
  73. package/dist/components/containers/app/App.svelte +32 -0
  74. package/dist/components/containers/app/App.svelte.d.ts +8 -0
  75. package/dist/components/containers/app/index.d.ts +3 -0
  76. package/dist/components/containers/app/index.js +6 -0
  77. package/dist/components/containers/app/theme.d.ts +3 -0
  78. package/dist/components/containers/app/theme.js +4 -0
  79. package/dist/components/containers/app/types.d.ts +25 -0
  80. package/dist/components/containers/app/types.js +1 -0
  81. package/dist/components/containers/bottom-sheet/BottomSheet.svelte +125 -0
  82. package/dist/components/containers/bottom-sheet/BottomSheet.svelte.d.ts +12 -0
  83. package/dist/components/containers/bottom-sheet/index.d.ts +2 -0
  84. package/dist/components/containers/bottom-sheet/index.js +5 -0
  85. package/dist/components/containers/bottom-sheet/types.d.ts +16 -0
  86. package/dist/components/containers/bottom-sheet/types.js +1 -0
  87. package/dist/components/containers/context-menu/ContextMenu.svelte +152 -0
  88. package/dist/components/containers/context-menu/ContextMenu.svelte.d.ts +23 -0
  89. package/dist/components/containers/context-menu/index.d.ts +3 -0
  90. package/dist/components/containers/context-menu/index.js +6 -0
  91. package/dist/components/containers/context-menu/theme.d.ts +51 -0
  92. package/dist/components/containers/context-menu/theme.js +21 -0
  93. package/dist/components/containers/context-menu/types.d.ts +45 -0
  94. package/dist/components/containers/context-menu/types.js +1 -0
  95. package/dist/components/containers/dialogue/Dialogue.svelte +134 -0
  96. package/dist/components/containers/dialogue/Dialogue.svelte.d.ts +14 -0
  97. package/dist/components/containers/dialogue/index.d.ts +3 -0
  98. package/dist/components/containers/dialogue/index.js +6 -0
  99. package/dist/components/containers/dialogue/theme.d.ts +51 -0
  100. package/dist/components/containers/dialogue/theme.js +10 -0
  101. package/dist/components/containers/dialogue/types.d.ts +46 -0
  102. package/dist/components/containers/dialogue/types.js +1 -0
  103. package/dist/components/containers/divider/Divider.svelte +100 -0
  104. package/dist/components/containers/divider/Divider.svelte.d.ts +13 -0
  105. package/dist/components/containers/divider/index.d.ts +3 -0
  106. package/dist/components/containers/divider/index.js +6 -0
  107. package/dist/components/containers/divider/theme.d.ts +33 -0
  108. package/dist/components/containers/divider/theme.js +15 -0
  109. package/dist/components/containers/divider/types.d.ts +27 -0
  110. package/dist/components/containers/divider/types.js +1 -0
  111. package/dist/components/containers/index.d.ts +15 -0
  112. package/dist/components/containers/index.js +17 -0
  113. package/dist/components/containers/link-preview/LinkPreview.svelte +64 -0
  114. package/dist/components/containers/link-preview/LinkPreview.svelte.d.ts +10 -0
  115. package/dist/components/containers/link-preview/index.d.ts +3 -0
  116. package/dist/components/containers/link-preview/index.js +6 -0
  117. package/dist/components/containers/link-preview/theme.d.ts +33 -0
  118. package/dist/components/containers/link-preview/theme.js +7 -0
  119. package/dist/components/containers/link-preview/types.d.ts +22 -0
  120. package/dist/components/containers/link-preview/types.js +1 -0
  121. package/dist/components/containers/list/ListItem.svelte +79 -0
  122. package/dist/components/containers/list/ListItem.svelte.d.ts +4 -0
  123. package/dist/components/containers/list/index.d.ts +3 -0
  124. package/dist/components/containers/list/index.js +6 -0
  125. package/dist/components/containers/list/theme.d.ts +67 -0
  126. package/dist/components/containers/list/theme.js +27 -0
  127. package/dist/components/containers/list/types.d.ts +48 -0
  128. package/dist/components/containers/list/types.js +1 -0
  129. package/dist/components/containers/menu/Menu.svelte +70 -0
  130. package/dist/components/containers/menu/Menu.svelte.d.ts +20 -0
  131. package/dist/components/containers/menu/index.d.ts +2 -0
  132. package/dist/components/containers/menu/index.js +5 -0
  133. package/dist/components/containers/menu/types.d.ts +40 -0
  134. package/dist/components/containers/menu/types.js +1 -0
  135. package/dist/components/containers/menu-item/MenuItem.svelte +75 -0
  136. package/dist/components/containers/menu-item/MenuItem.svelte.d.ts +20 -0
  137. package/dist/components/containers/menu-item/index.d.ts +2 -0
  138. package/dist/components/containers/menu-item/index.js +5 -0
  139. package/dist/components/containers/menu-item/types.d.ts +36 -0
  140. package/dist/components/containers/menu-item/types.js +1 -0
  141. package/dist/components/containers/merger/InputMerger.svelte +29 -0
  142. package/dist/components/containers/merger/InputMerger.svelte.d.ts +14 -0
  143. package/dist/components/containers/merger/index.d.ts +1 -0
  144. package/dist/components/containers/merger/index.js +3 -0
  145. package/dist/components/containers/panes/SinglePane.svelte +29 -0
  146. package/dist/components/containers/panes/SinglePane.svelte.d.ts +5 -0
  147. package/dist/components/containers/panes/SplitPane.svelte +132 -0
  148. package/dist/components/containers/panes/SplitPane.svelte.d.ts +5 -0
  149. package/dist/components/containers/panes/SupportingPane.svelte +81 -0
  150. package/dist/components/containers/panes/SupportingPane.svelte.d.ts +9 -0
  151. package/dist/components/containers/panes/index.d.ts +5 -0
  152. package/dist/components/containers/panes/index.js +8 -0
  153. package/dist/components/containers/panes/theme.d.ts +331 -0
  154. package/dist/components/containers/panes/theme.js +152 -0
  155. package/dist/components/containers/panes/types.d.ts +81 -0
  156. package/dist/components/containers/panes/types.js +1 -0
  157. package/dist/components/containers/popover/Popover.svelte +82 -0
  158. package/dist/components/containers/popover/Popover.svelte.d.ts +10 -0
  159. package/dist/components/containers/popover/index.d.ts +3 -0
  160. package/dist/components/containers/popover/index.js +6 -0
  161. package/dist/components/containers/popover/theme.d.ts +51 -0
  162. package/dist/components/containers/popover/theme.js +10 -0
  163. package/dist/components/containers/popover/types.d.ts +22 -0
  164. package/dist/components/containers/popover/types.js +1 -0
  165. package/dist/components/containers/scroll-area/ScrollArea.svelte +41 -0
  166. package/dist/components/containers/scroll-area/ScrollArea.svelte.d.ts +5 -0
  167. package/dist/components/containers/scroll-area/index.d.ts +3 -0
  168. package/dist/components/containers/scroll-area/index.js +6 -0
  169. package/dist/components/containers/scroll-area/theme.d.ts +55 -0
  170. package/dist/components/containers/scroll-area/theme.js +26 -0
  171. package/dist/components/containers/scroll-area/types.d.ts +26 -0
  172. package/dist/components/containers/scroll-area/types.js +1 -0
  173. package/dist/components/containers/side-sheet/SideSheet.svelte +21 -0
  174. package/dist/components/containers/side-sheet/SideSheet.svelte.d.ts +9 -0
  175. package/dist/components/containers/side-sheet/index.d.ts +2 -0
  176. package/dist/components/containers/side-sheet/index.js +5 -0
  177. package/dist/components/containers/side-sheet/types.d.ts +18 -0
  178. package/dist/components/containers/side-sheet/types.js +1 -0
  179. package/dist/components/containers/stack/HStack.svelte +23 -0
  180. package/dist/components/containers/stack/HStack.svelte.d.ts +5 -0
  181. package/dist/components/containers/stack/VStack.svelte +23 -0
  182. package/dist/components/containers/stack/VStack.svelte.d.ts +5 -0
  183. package/dist/components/containers/stack/index.d.ts +4 -0
  184. package/dist/components/containers/stack/index.js +7 -0
  185. package/dist/components/containers/stack/theme.d.ts +60 -0
  186. package/dist/components/containers/stack/theme.js +24 -0
  187. package/dist/components/containers/stack/types.d.ts +12 -0
  188. package/dist/components/containers/stack/types.js +1 -0
  189. package/dist/components/date/DateField.svelte +155 -0
  190. package/dist/components/date/DateField.svelte.d.ts +12 -0
  191. package/dist/components/date/DateRangeField.svelte +211 -0
  192. package/dist/components/date/DateRangeField.svelte.d.ts +13 -0
  193. package/dist/components/date/index.d.ts +4 -0
  194. package/dist/components/date/index.js +7 -0
  195. package/dist/components/date/theme.d.ts +158 -0
  196. package/dist/components/date/theme.js +149 -0
  197. package/dist/components/date/types.d.ts +64 -0
  198. package/dist/components/date/types.js +1 -0
  199. package/dist/components/forms/checkbox/Checkbox.svelte +66 -0
  200. package/dist/components/forms/checkbox/Checkbox.svelte.d.ts +10 -0
  201. package/dist/components/forms/checkbox/index.d.ts +3 -0
  202. package/dist/components/forms/checkbox/index.js +6 -0
  203. package/dist/components/forms/checkbox/theme.d.ts +141 -0
  204. package/dist/components/forms/checkbox/theme.js +69 -0
  205. package/dist/components/forms/checkbox/types.d.ts +39 -0
  206. package/dist/components/forms/checkbox/types.js +1 -0
  207. package/dist/components/forms/command/Command.svelte +14 -0
  208. package/dist/components/forms/command/Command.svelte.d.ts +5 -0
  209. package/dist/components/forms/command/CommandEmpty.svelte +14 -0
  210. package/dist/components/forms/command/CommandEmpty.svelte.d.ts +4 -0
  211. package/dist/components/forms/command/CommandGroup.svelte +17 -0
  212. package/dist/components/forms/command/CommandGroup.svelte.d.ts +4 -0
  213. package/dist/components/forms/command/CommandInput.svelte +18 -0
  214. package/dist/components/forms/command/CommandInput.svelte.d.ts +4 -0
  215. package/dist/components/forms/command/CommandItem.svelte +14 -0
  216. package/dist/components/forms/command/CommandItem.svelte.d.ts +4 -0
  217. package/dist/components/forms/command/CommandList.svelte +14 -0
  218. package/dist/components/forms/command/CommandList.svelte.d.ts +4 -0
  219. package/dist/components/forms/command/CommandSeparator.svelte +12 -0
  220. package/dist/components/forms/command/CommandSeparator.svelte.d.ts +4 -0
  221. package/dist/components/forms/command/index.d.ts +9 -0
  222. package/dist/components/forms/command/index.js +12 -0
  223. package/dist/components/forms/command/theme.d.ts +81 -0
  224. package/dist/components/forms/command/theme.js +15 -0
  225. package/dist/components/forms/command/types.d.ts +31 -0
  226. package/dist/components/forms/command/types.js +1 -0
  227. package/dist/components/forms/index.d.ts +12 -0
  228. package/dist/components/forms/index.js +14 -0
  229. package/dist/components/forms/multipart/Multipart.svelte +532 -0
  230. package/dist/components/forms/multipart/Multipart.svelte.d.ts +51 -0
  231. package/dist/components/forms/multipart/index.d.ts +1 -0
  232. package/dist/components/forms/multipart/index.js +3 -0
  233. package/dist/components/forms/pin/PinInput.svelte +51 -0
  234. package/dist/components/forms/pin/PinInput.svelte.d.ts +10 -0
  235. package/dist/components/forms/pin/index.d.ts +3 -0
  236. package/dist/components/forms/pin/index.js +6 -0
  237. package/dist/components/forms/pin/theme.d.ts +60 -0
  238. package/dist/components/forms/pin/theme.js +33 -0
  239. package/dist/components/forms/pin/types.d.ts +29 -0
  240. package/dist/components/forms/pin/types.js +1 -0
  241. package/dist/components/forms/radio-group/RadioGroup.svelte +61 -0
  242. package/dist/components/forms/radio-group/RadioGroup.svelte.d.ts +10 -0
  243. package/dist/components/forms/radio-group/index.d.ts +3 -0
  244. package/dist/components/forms/radio-group/index.js +6 -0
  245. package/dist/components/forms/radio-group/theme.d.ts +132 -0
  246. package/dist/components/forms/radio-group/theme.js +48 -0
  247. package/dist/components/forms/radio-group/types.d.ts +24 -0
  248. package/dist/components/forms/radio-group/types.js +1 -0
  249. package/dist/components/forms/search/Search.svelte +52 -0
  250. package/dist/components/forms/search/Search.svelte.d.ts +11 -0
  251. package/dist/components/forms/search/index.d.ts +3 -0
  252. package/dist/components/forms/search/index.js +6 -0
  253. package/dist/components/forms/search/theme.d.ts +33 -0
  254. package/dist/components/forms/search/theme.js +15 -0
  255. package/dist/components/forms/search/types.d.ts +34 -0
  256. package/dist/components/forms/search/types.js +1 -0
  257. package/dist/components/forms/select/Select.svelte +141 -0
  258. package/dist/components/forms/select/Select.svelte.d.ts +13 -0
  259. package/dist/components/forms/select/SelectGroup.svelte +19 -0
  260. package/dist/components/forms/select/SelectGroup.svelte.d.ts +8 -0
  261. package/dist/components/forms/select/SelectItem.svelte +35 -0
  262. package/dist/components/forms/select/SelectItem.svelte.d.ts +14 -0
  263. package/dist/components/forms/select/SelectLabel.svelte +19 -0
  264. package/dist/components/forms/select/SelectLabel.svelte.d.ts +8 -0
  265. package/dist/components/forms/select/SelectSeparator.svelte +13 -0
  266. package/dist/components/forms/select/SelectSeparator.svelte.d.ts +6 -0
  267. package/dist/components/forms/select/index.d.ts +7 -0
  268. package/dist/components/forms/select/index.js +10 -0
  269. package/dist/components/forms/select/theme.d.ts +84 -0
  270. package/dist/components/forms/select/theme.js +87 -0
  271. package/dist/components/forms/select/types.d.ts +63 -0
  272. package/dist/components/forms/select/types.js +1 -0
  273. package/dist/components/forms/slider/Slider.svelte +201 -0
  274. package/dist/components/forms/slider/Slider.svelte.d.ts +12 -0
  275. package/dist/components/forms/slider/index.d.ts +3 -0
  276. package/dist/components/forms/slider/index.js +6 -0
  277. package/dist/components/forms/slider/theme.d.ts +78 -0
  278. package/dist/components/forms/slider/theme.js +33 -0
  279. package/dist/components/forms/slider/types.d.ts +56 -0
  280. package/dist/components/forms/slider/types.js +1 -0
  281. package/dist/components/forms/switch/Switch.svelte +74 -0
  282. package/dist/components/forms/switch/Switch.svelte.d.ts +12 -0
  283. package/dist/components/forms/switch/index.d.ts +3 -0
  284. package/dist/components/forms/switch/index.js +6 -0
  285. package/dist/components/forms/switch/theme.d.ts +51 -0
  286. package/dist/components/forms/switch/theme.js +71 -0
  287. package/dist/components/forms/switch/types.d.ts +25 -0
  288. package/dist/components/forms/switch/types.js +1 -0
  289. package/dist/components/forms/textfield/Textfield.svelte +82 -0
  290. package/dist/components/forms/textfield/Textfield.svelte.d.ts +11 -0
  291. package/dist/components/forms/textfield/index.d.ts +3 -0
  292. package/dist/components/forms/textfield/index.js +6 -0
  293. package/dist/components/forms/textfield/theme.d.ts +75 -0
  294. package/dist/components/forms/textfield/theme.js +74 -0
  295. package/dist/components/forms/textfield/types.d.ts +60 -0
  296. package/dist/components/forms/textfield/types.js +1 -0
  297. package/dist/components/forms/toggle-group/ToggleGroup.svelte +38 -0
  298. package/dist/components/forms/toggle-group/ToggleGroup.svelte.d.ts +11 -0
  299. package/dist/components/forms/toggle-group/ToggleGroupItem.svelte +36 -0
  300. package/dist/components/forms/toggle-group/ToggleGroupItem.svelte.d.ts +8 -0
  301. package/dist/components/forms/toggle-group/index.d.ts +4 -0
  302. package/dist/components/forms/toggle-group/index.js +7 -0
  303. package/dist/components/forms/toggle-group/theme.d.ts +74 -0
  304. package/dist/components/forms/toggle-group/theme.js +20 -0
  305. package/dist/components/forms/toggle-group/types.d.ts +25 -0
  306. package/dist/components/forms/toggle-group/types.js +1 -0
  307. package/dist/components/forms/tooltip/Tooltip.svelte +104 -0
  308. package/dist/components/forms/tooltip/Tooltip.svelte.d.ts +11 -0
  309. package/dist/components/forms/tooltip/index.d.ts +3 -0
  310. package/dist/components/forms/tooltip/index.js +6 -0
  311. package/dist/components/forms/tooltip/theme.d.ts +105 -0
  312. package/dist/components/forms/tooltip/theme.js +52 -0
  313. package/dist/components/forms/tooltip/types.d.ts +29 -0
  314. package/dist/components/forms/tooltip/types.js +1 -0
  315. package/dist/components/index.d.ts +15 -0
  316. package/dist/components/index.js +17 -0
  317. package/dist/components/misc/Avatar.svelte +70 -0
  318. package/dist/components/misc/Avatar.svelte.d.ts +9 -0
  319. package/dist/components/misc/ThemeSettings.svelte +88 -0
  320. package/dist/components/misc/ThemeSettings.svelte.d.ts +18 -0
  321. package/dist/components/misc/ThemeSwitcher.svelte +21 -0
  322. package/dist/components/misc/ThemeSwitcher.svelte.d.ts +3 -0
  323. package/dist/components/misc/index.d.ts +5 -0
  324. package/dist/components/misc/index.js +8 -0
  325. package/dist/components/misc/theme.d.ts +52 -0
  326. package/dist/components/misc/theme.js +25 -0
  327. package/dist/components/misc/types.d.ts +18 -0
  328. package/dist/components/misc/types.js +1 -0
  329. package/dist/components/nav/appbar/AppBar.svelte +60 -0
  330. package/dist/components/nav/appbar/AppBar.svelte.d.ts +12 -0
  331. package/dist/components/nav/appbar/index.d.ts +3 -0
  332. package/dist/components/nav/appbar/index.js +6 -0
  333. package/dist/components/nav/appbar/theme.d.ts +99 -0
  334. package/dist/components/nav/appbar/theme.js +33 -0
  335. package/dist/components/nav/appbar/types.d.ts +20 -0
  336. package/dist/components/nav/appbar/types.js +1 -0
  337. package/dist/components/nav/index.d.ts +5 -0
  338. package/dist/components/nav/index.js +8 -0
  339. package/dist/components/nav/navbar/Navbar.svelte +33 -0
  340. package/dist/components/nav/navbar/Navbar.svelte.d.ts +18 -0
  341. package/dist/components/nav/navbar/NavbarItem.svelte +66 -0
  342. package/dist/components/nav/navbar/NavbarItem.svelte.d.ts +9 -0
  343. package/dist/components/nav/navbar/index.d.ts +4 -0
  344. package/dist/components/nav/navbar/index.js +7 -0
  345. package/dist/components/nav/navbar/theme.d.ts +95 -0
  346. package/dist/components/nav/navbar/theme.js +31 -0
  347. package/dist/components/nav/navbar/types.d.ts +29 -0
  348. package/dist/components/nav/navbar/types.js +1 -0
  349. package/dist/components/nav/rail/Rail.svelte +75 -0
  350. package/dist/components/nav/rail/Rail.svelte.d.ts +11 -0
  351. package/dist/components/nav/rail/RailItem.svelte +104 -0
  352. package/dist/components/nav/rail/RailItem.svelte.d.ts +9 -0
  353. package/dist/components/nav/rail/index.d.ts +4 -0
  354. package/dist/components/nav/rail/index.js +7 -0
  355. package/dist/components/nav/rail/theme.d.ts +218 -0
  356. package/dist/components/nav/rail/theme.js +107 -0
  357. package/dist/components/nav/rail/types.d.ts +44 -0
  358. package/dist/components/nav/rail/types.js +1 -0
  359. package/dist/components/nav/tabs/Tab.svelte +49 -0
  360. package/dist/components/nav/tabs/Tab.svelte.d.ts +9 -0
  361. package/dist/components/nav/tabs/TabContent.svelte +11 -0
  362. package/dist/components/nav/tabs/TabContent.svelte.d.ts +8 -0
  363. package/dist/components/nav/tabs/TabHolder.svelte +44 -0
  364. package/dist/components/nav/tabs/TabHolder.svelte.d.ts +16 -0
  365. package/dist/components/nav/tabs/index.d.ts +5 -0
  366. package/dist/components/nav/tabs/index.js +8 -0
  367. package/dist/components/nav/tabs/theme.d.ts +92 -0
  368. package/dist/components/nav/tabs/theme.js +37 -0
  369. package/dist/components/nav/tabs/types.d.ts +39 -0
  370. package/dist/components/nav/tabs/types.js +1 -0
  371. package/dist/components/nav/types.d.ts +6 -0
  372. package/dist/components/nav/types.js +1 -0
  373. package/dist/components/pill/Pill.svelte +17 -0
  374. package/dist/components/pill/Pill.svelte.d.ts +5 -0
  375. package/dist/components/pill/index.d.ts +3 -0
  376. package/dist/components/pill/index.js +6 -0
  377. package/dist/components/pill/theme.d.ts +27 -0
  378. package/dist/components/pill/theme.js +16 -0
  379. package/dist/components/pill/types.d.ts +6 -0
  380. package/dist/components/pill/types.js +1 -0
  381. package/dist/components/progress/CircularProgress.svelte +58 -0
  382. package/dist/components/progress/CircularProgress.svelte.d.ts +16 -0
  383. package/dist/components/progress/LinearProgress.svelte +45 -0
  384. package/dist/components/progress/LinearProgress.svelte.d.ts +15 -0
  385. package/dist/components/progress/WavyLinearProgress.svelte +58 -0
  386. package/dist/components/progress/WavyLinearProgress.svelte.d.ts +19 -0
  387. package/dist/components/progress/_wavy.d.ts +2 -0
  388. package/dist/components/progress/_wavy.js +32 -0
  389. package/dist/components/progress/index.d.ts +4 -0
  390. package/dist/components/progress/index.js +7 -0
  391. package/dist/components/snackbar/Snackbar.svelte +102 -0
  392. package/dist/components/snackbar/Snackbar.svelte.d.ts +9 -0
  393. package/dist/components/snackbar/index.d.ts +3 -0
  394. package/dist/components/snackbar/index.js +6 -0
  395. package/dist/components/snackbar/theme.d.ts +36 -0
  396. package/dist/components/snackbar/theme.js +16 -0
  397. package/dist/components/snackbar/types.d.ts +33 -0
  398. package/dist/components/snackbar/types.js +1 -0
  399. package/dist/components/table/Table.svelte +26 -0
  400. package/dist/components/table/Table.svelte.d.ts +8 -0
  401. package/dist/components/table/TableBody.svelte +17 -0
  402. package/dist/components/table/TableBody.svelte.d.ts +5 -0
  403. package/dist/components/table/TableCell.svelte +24 -0
  404. package/dist/components/table/TableCell.svelte.d.ts +8 -0
  405. package/dist/components/table/TableFoot.svelte +17 -0
  406. package/dist/components/table/TableFoot.svelte.d.ts +5 -0
  407. package/dist/components/table/TableHead.svelte +18 -0
  408. package/dist/components/table/TableHead.svelte.d.ts +8 -0
  409. package/dist/components/table/TableHeader.svelte +43 -0
  410. package/dist/components/table/TableHeader.svelte.d.ts +8 -0
  411. package/dist/components/table/TableRow.svelte +24 -0
  412. package/dist/components/table/TableRow.svelte.d.ts +8 -0
  413. package/dist/components/table/index.d.ts +9 -0
  414. package/dist/components/table/index.js +12 -0
  415. package/dist/components/table/theme.d.ts +165 -0
  416. package/dist/components/table/theme.js +50 -0
  417. package/dist/components/table/types.d.ts +44 -0
  418. package/dist/components/table/types.js +1 -0
  419. package/dist/components/time/TimeField.svelte +111 -0
  420. package/dist/components/time/TimeField.svelte.d.ts +28 -0
  421. package/dist/components/time/TimepickerInput.svelte +75 -0
  422. package/dist/components/time/TimepickerInput.svelte.d.ts +10 -0
  423. package/dist/components/time/index.d.ts +4 -0
  424. package/dist/components/time/index.js +7 -0
  425. package/dist/components/time/theme.d.ts +69 -0
  426. package/dist/components/time/theme.js +13 -0
  427. package/dist/components/time/types.d.ts +34 -0
  428. package/dist/components/time/types.js +1 -0
  429. package/dist/components/toolbar/Toolbar.svelte +26 -0
  430. package/dist/components/toolbar/Toolbar.svelte.d.ts +10 -0
  431. package/dist/components/toolbar/ToolbarButton.svelte +25 -0
  432. package/dist/components/toolbar/ToolbarButton.svelte.d.ts +5 -0
  433. package/dist/components/toolbar/ToolbarDivider.svelte +6 -0
  434. package/dist/components/toolbar/ToolbarDivider.svelte.d.ts +18 -0
  435. package/dist/components/toolbar/ToolbarGroup.svelte +18 -0
  436. package/dist/components/toolbar/ToolbarGroup.svelte.d.ts +5 -0
  437. package/dist/components/toolbar/ToolbarGroupItem.svelte +27 -0
  438. package/dist/components/toolbar/ToolbarGroupItem.svelte.d.ts +8 -0
  439. package/dist/components/toolbar/index.d.ts +7 -0
  440. package/dist/components/toolbar/index.js +10 -0
  441. package/dist/components/toolbar/theme.d.ts +106 -0
  442. package/dist/components/toolbar/theme.js +27 -0
  443. package/dist/components/toolbar/types.d.ts +20 -0
  444. package/dist/components/toolbar/types.js +1 -0
  445. package/dist/components/typography/body/Body.svelte +33 -0
  446. package/dist/components/typography/body/Body.svelte.d.ts +10 -0
  447. package/dist/components/typography/body/index.d.ts +3 -0
  448. package/dist/components/typography/body/index.js +6 -0
  449. package/dist/components/typography/body/theme.d.ts +30 -0
  450. package/dist/components/typography/body/theme.js +14 -0
  451. package/dist/components/typography/body/types.d.ts +21 -0
  452. package/dist/components/typography/body/types.js +1 -0
  453. package/dist/components/typography/display/Display.svelte +27 -0
  454. package/dist/components/typography/display/Display.svelte.d.ts +10 -0
  455. package/dist/components/typography/display/index.d.ts +3 -0
  456. package/dist/components/typography/display/index.js +6 -0
  457. package/dist/components/typography/display/theme.d.ts +30 -0
  458. package/dist/components/typography/display/theme.js +14 -0
  459. package/dist/components/typography/display/types.d.ts +21 -0
  460. package/dist/components/typography/display/types.js +1 -0
  461. package/dist/components/typography/headline/Headline.svelte +27 -0
  462. package/dist/components/typography/headline/Headline.svelte.d.ts +10 -0
  463. package/dist/components/typography/headline/index.d.ts +3 -0
  464. package/dist/components/typography/headline/index.js +6 -0
  465. package/dist/components/typography/headline/theme.d.ts +30 -0
  466. package/dist/components/typography/headline/theme.js +14 -0
  467. package/dist/components/typography/headline/types.d.ts +21 -0
  468. package/dist/components/typography/headline/types.js +1 -0
  469. package/dist/components/typography/index.d.ts +6 -0
  470. package/dist/components/typography/index.js +8 -0
  471. package/dist/components/typography/kbd/Kbd.svelte +18 -0
  472. package/dist/components/typography/kbd/Kbd.svelte.d.ts +5 -0
  473. package/dist/components/typography/kbd/index.d.ts +3 -0
  474. package/dist/components/typography/kbd/index.js +6 -0
  475. package/dist/components/typography/kbd/theme.d.ts +18 -0
  476. package/dist/components/typography/kbd/theme.js +10 -0
  477. package/dist/components/typography/kbd/types.d.ts +17 -0
  478. package/dist/components/typography/kbd/types.js +1 -0
  479. package/dist/components/typography/label/Label.svelte +25 -0
  480. package/dist/components/typography/label/Label.svelte.d.ts +10 -0
  481. package/dist/components/typography/label/index.d.ts +3 -0
  482. package/dist/components/typography/label/index.js +6 -0
  483. package/dist/components/typography/label/theme.d.ts +28 -0
  484. package/dist/components/typography/label/theme.js +14 -0
  485. package/dist/components/typography/label/types.d.ts +23 -0
  486. package/dist/components/typography/label/types.js +1 -0
  487. package/dist/components/typography/title/Title.svelte +27 -0
  488. package/dist/components/typography/title/Title.svelte.d.ts +10 -0
  489. package/dist/components/typography/title/index.d.ts +3 -0
  490. package/dist/components/typography/title/index.js +6 -0
  491. package/dist/components/typography/title/theme.d.ts +30 -0
  492. package/dist/components/typography/title/theme.js +14 -0
  493. package/dist/components/typography/title/types.d.ts +21 -0
  494. package/dist/components/typography/title/types.js +1 -0
  495. package/dist/index.css +6 -0
  496. package/dist/index.d.ts +4 -0
  497. package/dist/index.js +4 -0
  498. package/dist/styles/component.css +154 -0
  499. package/dist/styles/elevation.css +45 -0
  500. package/dist/styles/motion.css +51 -0
  501. package/dist/styles/prose.css +48 -0
  502. package/dist/styles/rounding.css +11 -0
  503. package/dist/styles/theme/dark-hc.css +53 -0
  504. package/dist/styles/theme/dark-mc.css +53 -0
  505. package/dist/styles/theme/dark.css +51 -0
  506. package/dist/styles/theme/light-hc.css +53 -0
  507. package/dist/styles/theme/light-mc.css +53 -0
  508. package/dist/styles/theme/light.css +51 -0
  509. package/dist/styles/typescale.css +63 -0
  510. package/dist/utils/Layer.svelte +217 -0
  511. package/dist/utils/Layer.svelte.d.ts +3 -0
  512. package/dist/utils/Theme.svelte +90 -0
  513. package/dist/utils/icon/Icon.svelte +24 -0
  514. package/dist/utils/icon/Icon.svelte.d.ts +4 -0
  515. package/dist/utils/icon/LoadingIndicator.svelte +39 -0
  516. package/dist/utils/icon/LoadingIndicator.svelte.d.ts +4 -0
  517. package/dist/utils/icon/MaterialSymbolsProvider.svelte +38 -0
  518. package/dist/utils/icon/MaterialSymbolsProvider.svelte.d.ts +8 -0
  519. package/dist/utils/icon/base-icons.d.ts +1 -0
  520. package/dist/utils/icon/base-icons.js +29 -0
  521. package/dist/utils/icon/index.d.ts +6 -0
  522. package/dist/utils/icon/index.js +6 -0
  523. package/dist/utils/icon/theme.d.ts +30 -0
  524. package/dist/utils/icon/theme.js +14 -0
  525. package/dist/utils/icon/types.d.ts +23 -0
  526. package/dist/utils/icon/types.js +1 -0
  527. package/dist/utils/index.d.ts +7 -0
  528. package/dist/utils/index.js +6 -0
  529. package/dist/utils/theme.svelte.d.ts +24 -0
  530. package/dist/utils/theme.svelte.js +156 -0
  531. package/dist/utils/tutorial.d.ts +9 -0
  532. package/dist/utils/tutorial.js +46 -0
  533. package/dist/utils/types.d.ts +18 -0
  534. package/dist/utils/types.js +5 -0
  535. package/dist/utils/ui.d.ts +6 -0
  536. package/dist/utils/ui.js +56 -0
  537. package/package.json +85 -0
@@ -0,0 +1,29 @@
1
+ export declare const pathAnimatableSmallCircle = "m40.0 24.3 -0.0 0.5 -0.2 1.5 -0.0 0.4 -0.2 1.0 -0.3 0.8 -0.2 0.9 -0.4 0.9 -0.2 0.5 -0.3 0.7 -0.5 0.7 -0.7 1.2 -0.2 0.2 -0.5 0.6 -0.6 0.7 -0.7 0.7 -0.5 0.5 -0.5 0.4 -0.8 0.6 -0.8 0.5 -0.8 0.5 -0.3 0.2 -1.0 0.4 -0.7 0.3 -0.8 0.2 -1.1 0.4 -0.5 0.1 -0.9 0.1 -0.7 0.1 -0.8 0.1 -1.3 -0.0 -0.4 -0.0 -0.9 -0.1 -0.7 -0.1 -1.2 -0.2 -0.7 -0.2 -0.8 -0.3 -0.8 -0.3 -0.6 -0.2 -0.8 -0.4 -0.6 -0.3 -0.8 -0.5 -0.7 -0.6 -0.7 -0.5 -0.5 -0.4 -0.8 -0.8 -0.6 -0.6 -0.5 -0.6 -0.4 -0.5 -0.7 -1.2 -0.3 -0.5 -0.5 -1.0 -0.1 -0.2 -0.6 -1.5 -0.0 -0.1 -0.3 -0.9 -0.2 -0.7 -0.2 -1.3 -0.0 -0.4 -0.1 -0.8 0.0 -0.8 0.0 -1.0 0.2 -1.3 0.0 -0.2 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.3 -1.0 0.5 -0.9 0.5 -0.9 0.1 -0.2 0.7 -1.2 0.2 -0.2 0.5 -0.7 0.5 -0.6 0.6 -0.6 0.6 -0.6 0.8 -0.6 0.5 -0.5 0.7 -0.4 0.9 -0.6 0.9 -0.4 0.5 -0.2 0.7 -0.4 0.8 -0.2 1.0 -0.3 0.6 -0.2 0.8 -0.1 1.2 -0.1 0.6 -0.1 1.2 0.0 0.4 0.0 0.8 0.1 1.3 0.2 0.4 0.1 1.0 0.2 0.7 0.2 0.6 0.3 1.0 0.4 1.3 0.6 0.0 0.1 0.8 0.4 0.9 0.6 0.6 0.6 0.5 0.4 0.8 0.8 0.3 0.3 0.6 0.7 0.4 0.6 0.5 0.7 0.6 0.9 0.4 0.8 0.2 0.5 0.4 0.9 0.4 1.4 0.1 0.1 0.2 0.8 0.1 1.0 0.1 0.7 0.1 1.3 z";
2
+ export declare const pathAnimatableSmallSquare = "m40.0 24.8 -0.0 0.9 -0.0 0.8 -0.0 0.9 -0.0 0.8 -0.0 1.0 -0.1 0.9 -0.0 1.0 -0.2 0.9 -0.2 1.0 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -1.0 0.2 -1.0 0.2 -0.9 0.0 -0.9 0.1 -1.0 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -0.9 0.0 -1.6 0.0 -0.9 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -1.0 -0.0 -0.9 -0.1 -1.0 -0.0 -0.9 -0.2 -1.0 -0.2 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.8 -0.6 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.6 -0.8 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.2 -1.0 -0.0 -0.9 -0.1 -0.9 0.0 -1.0 0.0 -0.8 0.0 -0.9 0.0 -0.8 -0.0 -0.9 -0.0 -1.6 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.0 0.1 -0.9 0.0 -1.0 0.2 -0.9 0.2 -1.0 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.8 0.0 0.0 0.8 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 1.0 -0.2 1.0 -0.2 0.9 -0.0 0.9 -0.1 1.0 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.9 -0.0 1.6 -0.0 0.9 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.0 0.0 0.9 0.1 1.0 0.0 0.9 0.2 1.0 0.2 0.9 0.3 0.8 0.4 0.8 0.5 0.8 0.6 0.8 0.6 -0.0 0.0 0.6 0.8 0.6 0.8 0.5 0.8 0.4 0.8 0.3 0.9 0.2 1.0 0.2 1.0 0.0 0.9 0.1 0.9 -0.0 1.0 -0.0 0.8 -0.0 0.9 -0.0 0.8 0.0 0.9 z";
3
+ export declare const pathAnimatableSmallSlanted = "m39.1 24.1 -0.0 0.8 -0.2 1.2 -0.0 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 1.2 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.2 1.0 -0.4 0.9 -0.6 0.8 -0.6 0.6 -0.1 0.1 -0.7 0.6 -0.9 0.4 -0.9 0.3 -1.0 0.1 -1.0 0.1 -1.0 -0.0 -0.9 -0.0 -1.0 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 -0.0 -1.1 -0.0 -1.0 -0.0 -1.1 -0.1 -1.1 -0.2 -0.9 -0.4 -0.9 -0.6 -0.8 -0.7 0.0 0.0 -0.6 -0.8 -0.5 -0.9 -0.3 -1.0 -0.1 -1.1 0.0 -1.1 0.1 -1.0 0.1 -1.1 0.1 -0.9 0.1 -1.2 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.0 -0.8 0.2 -1.2 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -1.2 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -1.0 0.4 -0.9 0.6 -0.8 0.6 -0.6 0.1 -0.1 0.7 -0.6 0.9 -0.4 0.9 -0.3 1.0 -0.1 1.0 -0.1 1.0 0.0 0.9 0.0 1.0 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 1.1 0.0 1.0 0.0 1.1 0.1 1.1 0.2 0.9 0.4 0.9 0.6 0.8 0.7 -0.0 -0.0 0.6 0.8 0.5 0.9 0.3 1.0 0.1 1.1 -0.0 1.1 -0.1 1.0 -0.1 1.1 -0.1 1.0 -0.1 1.2 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 z";
4
+ export declare const pathAnimatableSmallArch = "m39.5 24.7 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.1 0.0 0.7 0.0 1.0 0.0 1.0 0.0 1.4 -0.0 1.2 -0.2 1.2 -0.5 1.0 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -1.0 0.5 -1.2 0.2 -1.5 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -1.5 -0.0 -1.2 -0.2 -1.0 -0.5 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.5 -1.0 -0.2 -1.2 -0.0 -1.2 -0.0 -1.4 -0.0 -1.0 -0.0 -1.0 -0.0 -0.7 -0.0 -1.1 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -0.7 0.1 -1.2 -0.0 -0.5 0.1 -0.7 0.1 -0.8 0.4 -1.3 0.1 -0.3 0.2 -0.8 0.6 -1.2 0.1 -0.2 0.4 -0.8 0.4 -0.7 0.6 -0.8 0.4 -0.5 0.8 -0.9 0.3 -0.3 0.5 -0.5 0.7 -0.6 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.4 1.2 -0.4 0.5 -0.2 0.8 -0.2 0.8 -0.2 1.1 -0.2 0.7 -0.1 0.4 0.0 0.8 0.0 1.0 0.0 0.6 0.1 0.9 0.1 0.8 0.1 0.9 0.3 0.6 0.2 1.2 0.4 0.6 0.3 0.5 0.2 0.7 0.4 0.9 0.6 0.5 0.3 0.9 0.7 0.5 0.5 0.4 0.4 0.7 0.8 0.4 0.4 0.7 1.0 0.5 0.7 0.3 0.6 0.5 0.9 0.1 0.3 0.3 0.8 0.4 1.3 0.1 0.3 0.2 1.0 0.1 0.6 0.2 1.3 -0.0 0.5 z";
5
+ export declare const pathAnimatableSmallFan = "m37.4 24.7 0.3 0.7 0.2 0.8 0.3 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.2 1.0 0.1 1.0 0.0 1.1 0.0 1.0 -0.0 1.1 -0.3 1.1 -0.4 0.9 -0.6 0.8 -0.1 0.1 -0.8 0.6 -0.9 0.4 -1.1 0.3 -1.5 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.7 0.0 -0.6 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -1.0 -0.0 -1.1 -0.0 -1.2 -0.1 -1.0 -0.2 -0.9 -0.4 -0.8 -0.6 -0.1 -0.0 -0.6 -0.9 -0.4 -0.9 -0.2 -1.1 -0.1 -1.1 0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.0 -1.2 -0.0 -0.6 -0.0 -0.7 -0.0 -1.2 -0.0 -0.6 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -0.6 -0.0 -1.2 -0.0 -0.7 -0.0 -0.6 -0.0 -1.2 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -1.2 -0.0 -1.2 0.0 -1.2 0.3 -1.1 0.4 -0.9 0.6 -0.9 0.1 0.0 0.8 -0.6 0.9 -0.4 1.1 -0.3 1.1 0.0 1.1 0.0 1.0 0.1 1.0 0.0 1.0 0.2 0.9 0.1 0.9 0.2 0.8 0.2 0.8 0.3 0.8 0.2 0.7 0.3 0.7 0.2 0.7 0.3 0.6 0.3 0.7 0.4 0.6 0.3 0.5 0.3 0.6 0.3 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.4 0.4 0.8 0.8 0.4 0.4 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.3 0.6 0.3 0.5 0.4 0.7 0.3 0.5 0.3 0.7 0.3 0.7 z";
6
+ export declare const pathAnimatableSmallArrow = "m36.9 24.5 0.6 0.9 0.4 0.8 0.5 0.8 0.4 0.9 0.5 1.0 0.3 1.1 0.3 1.1 0.1 1.0 -0.1 1.0 -0.3 1.0 -0.4 0.9 -0.5 0.9 -0.3 0.3 -0.4 0.5 -0.8 0.6 -0.8 0.5 -1.0 0.4 -1.0 0.2 -1.0 0.1 -1.1 -0.1 -1.0 -0.2 -1.1 -0.2 -1.0 -0.2 -0.8 -0.3 -0.9 -0.2 -0.7 -0.2 -0.8 -0.1 -0.7 -0.1 -0.7 -0.1 -1.2 -0.0 -0.7 0.1 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.9 0.3 -0.9 0.2 -1.0 0.2 -1.1 0.2 -1.1 0.1 -1.1 -0.1 -1.0 -0.1 -1.0 -0.4 -0.9 -0.5 -0.7 -0.7 -0.0 -0.0 -0.6 -0.8 -0.5 -0.9 -0.4 -0.9 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.1 0.4 -1.0 0.4 -1.0 0.5 -1.0 0.5 -0.8 0.7 -1.1 0.4 -0.7 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.4 0.2 -0.3 0.4 -0.7 0.3 -0.4 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.3 0.2 -0.4 0.4 -0.7 0.5 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.5 0.4 -0.6 0.5 -0.6 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.0 0.1 -0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.7 0.3 0.7 0.5 0.5 0.5 0.6 0.5 0.5 0.6 0.4 0.5 0.4 0.6 0.4 0.6 0.4 0.5 0.3 0.6 0.3 0.5 0.5 0.7 0.2 0.3 0.4 0.6 0.2 0.4 0.4 0.6 0.4 0.6 0.2 0.4 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.4 0.7 z";
7
+ export declare const pathAnimatableSmallSemicircle = "m39.1 24.7 0.3 0.9 0.2 0.8 0.2 0.9 0.1 1.0 0.1 0.9 -0.0 0.9 -0.0 1.0 -0.3 0.9 -0.1 0.2 -0.4 0.6 -0.7 0.7 -1.0 0.4 -1.6 0.1 -0.9 0.0 -1.7 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.2 -0.1 -0.6 0.1 -0.9 0.0 -0.8 0.0 -0.2 -0.1 -0.7 0.1 -0.8 0.0 -0.1 -0.0 -0.8 0.0 -0.3 0.0 -0.5 0.0 -0.8 0.0 -0.3 0.0 -0.6 0.0 -0.8 0.0 -0.2 0.1 -0.7 -0.1 -0.8 0.0 -0.9 0.0 -0.1 0.2 -0.7 -0.2 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.7 0.0 -0.9 0.0 -1.6 -0.1 -1.0 -0.4 -0.7 -0.7 -0.4 -0.6 -0.1 -0.2 -0.3 -0.9 -0.0 -1.0 0.0 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.3 -0.8 0.4 -0.7 0.4 -0.7 0.4 -0.7 0.4 -0.6 0.5 -0.6 0.4 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.5 -0.3 0.6 -0.3 0.5 -0.3 0.5 -0.2 0.6 -0.2 0.5 -0.2 0.5 -0.2 0.5 -0.1 0.6 -0.2 0.5 -0.1 0.5 -0.1 0.5 -0.1 0.6 -0.0 0.5 -0.1 0.5 0.0 1.0 0.0 0.5 0.0 0.5 0.1 0.6 0.0 0.5 0.1 0.5 0.1 0.5 0.1 0.6 0.2 0.5 0.1 0.5 0.2 0.5 0.2 0.6 0.2 0.5 0.2 0.5 0.3 0.6 0.3 0.5 0.3 0.5 0.3 0.6 0.4 0.5 0.4 0.5 0.4 0.5 0.5 0.5 0.5 0.5 0.5 0.4 0.5 0.5 0.6 0.4 0.6 0.4 0.7 0.4 0.7 0.4 0.7 0.3 0.8 z";
8
+ export declare const pathAnimatableSmallOval = "m37.7 24.0 -0.3 0.7 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.6 -0.3 0.5 -0.4 0.6 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.4 -0.5 0.4 -0.8 0.8 -0.4 0.5 -0.4 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.6 0.4 -0.5 0.3 -0.6 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.7 0.3 -0.7 0.2 -0.7 0.3 -0.9 0.3 -0.8 0.2 -0.8 0.1 -0.9 0.1 -1.0 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.6 -0.7 -0.6 -0.0 0.0 -0.6 -0.7 -0.6 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 -0.1 -0.9 0.0 -0.9 0.1 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.2 -0.7 0.3 -0.7 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.6 0.3 -0.5 0.4 -0.6 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.4 0.5 -0.4 0.8 -0.8 0.4 -0.5 0.4 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.6 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.3 0.9 -0.3 0.8 -0.2 0.8 -0.1 0.9 -0.1 1.0 -0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.6 0.7 0.6 -0.0 0.0 0.6 0.7 0.6 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 0.1 0.9 -0.0 0.9 -0.1 1.0 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.9 -0.3 0.7 z";
9
+ export declare const pathAnimatableSmallPill = "m39.6 24.0 -0.1 0.8 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.3 0.8 -0.4 0.7 -0.4 0.7 -0.5 0.6 -0.4 0.6 -0.6 0.6 -0.6 0.6 -0.4 0.4 -0.6 0.6 -0.4 0.5 -0.9 0.8 -0.5 0.5 -0.6 0.6 -0.4 0.4 -0.7 0.7 -0.5 0.5 -0.6 0.4 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.7 0.3 -0.8 0.3 -0.8 0.3 -0.8 0.2 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.9 0.0 -0.8 -0.0 -0.9 -0.1 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.3 -0.8 -0.4 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -0.7 -0.5 -0.6 -0.6 -0.1 -0.1 -0.5 -0.6 -0.6 -0.7 -0.5 -0.7 -0.5 -0.8 -0.4 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.1 -0.9 0.0 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.3 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.3 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.5 0.6 -0.6 0.6 -0.7 0.4 -0.4 0.6 -0.6 0.5 -0.4 0.8 -0.9 0.5 -0.5 0.6 -0.6 0.4 -0.4 0.7 -0.7 0.5 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.8 -0.3 0.8 -0.3 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.9 -0.0 0.8 0.0 0.9 0.1 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.4 0.8 0.3 0.8 0.4 0.7 0.5 0.7 0.5 0.7 0.5 0.6 0.7 0.1 -0.0 0.5 0.6 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.7 0.3 0.8 0.4 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.0 0.8 -0.0 0.8 -0.1 0.9 z";
10
+ export declare const pathAnimatableSmallTriangle = "m34.8 24.3 0.3 0.5 0.5 0.9 0.3 0.5 0.5 1.0 0.6 0.9 0.6 1.1 0.6 1.1 0.7 1.3 0.7 1.4 0.2 1.2 -0.2 1.1 -0.4 1.0 -0.4 0.6 -0.3 0.2 -0.8 0.6 -1.0 0.4 -1.2 0.1 -1.2 0.1 -1.0 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.0 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.1 -1.2 -0.1 -1.0 -0.4 -0.8 -0.6 -0.3 -0.2 -0.4 -0.6 -0.4 -1.0 -0.2 -1.1 0.2 -1.2 0.7 -1.4 0.7 -1.3 0.6 -1.1 0.6 -1.1 0.6 -0.9 0.5 -1.0 0.3 -0.5 0.5 -0.9 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.0 -0.0 0.3 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.3 -0.4 0.6 -1.0 0.3 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.7 0.5 -0.8 0.6 -0.6 0.6 -0.6 0.7 -0.3 0.7 -0.2 0.8 -0.1 0.0 0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.6 0.6 0.6 0.6 0.5 0.8 0.4 0.7 0.4 0.6 0.3 0.6 0.4 0.6 0.5 1.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 -0.0 0.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 z";
11
+ export declare const pathAnimatableSmallDiamond = "m37.4 24.0 -0.1 0.7 -0.1 0.7 -0.3 0.7 -0.3 0.6 -0.5 0.6 -0.4 0.5 -0.6 0.8 -0.3 0.5 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.6 0.8 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.6 0.7 -0.5 0.7 -0.5 0.6 -0.5 0.7 -0.6 0.7 -0.6 0.7 -0.8 0.5 -0.7 0.4 -0.8 0.2 -0.9 0.1 -0.0 -0.0 -0.9 -0.1 -0.8 -0.2 -0.7 -0.4 -0.8 -0.5 -0.6 -0.7 -0.6 -0.7 -0.5 -0.7 -0.5 -0.6 -0.5 -0.7 -0.4 -0.5 -0.6 -0.7 -0.3 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.3 -0.5 -0.4 -0.4 -0.6 -0.8 -0.3 -0.5 -0.4 -0.5 -0.4 -0.4 -0.3 -0.5 -0.6 -0.7 -0.4 -0.6 -0.5 -0.6 -0.3 -0.6 -0.3 -0.7 -0.1 -0.7 -0.1 -0.7 -0.0 -0.0 0.1 -0.7 0.1 -0.7 0.3 -0.7 0.3 -0.6 0.5 -0.6 0.4 -0.5 0.6 -0.8 0.3 -0.5 0.4 -0.5 0.4 -0.4 0.3 -0.5 0.6 -0.8 0.4 -0.4 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.6 -0.7 0.5 -0.7 0.5 -0.6 0.5 -0.7 0.6 -0.7 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.8 -0.2 0.9 -0.1 0.0 0.0 0.9 0.1 0.8 0.2 0.7 0.4 0.8 0.5 0.6 0.7 0.6 0.7 0.5 0.7 0.5 0.6 0.5 0.7 0.4 0.5 0.6 0.7 0.3 0.5 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.4 0.6 0.8 0.3 0.5 0.4 0.4 0.4 0.5 0.3 0.5 0.6 0.7 0.4 0.6 0.5 0.6 0.3 0.6 0.3 0.7 0.1 0.7 0.1 0.7 z";
12
+ export declare const pathAnimatableSmallClamshell = "m42.6 24.0 -0.1 1.0 -0.2 0.9 -0.5 0.9 -0.5 0.9 -0.4 0.9 -0.5 0.8 -0.5 0.8 -0.5 0.8 -0.4 0.7 -0.8 1.5 -0.5 0.8 -0.5 0.6 -0.2 0.4 -0.4 0.3 -0.8 0.6 -0.8 0.4 -0.8 0.2 -1.0 0.2 -1.0 -0.0 -0.9 -0.0 -1.1 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.1 -0.0 -0.9 -0.0 -1.0 -0.0 -0.9 -0.2 -0.9 -0.2 -0.8 -0.4 -0.7 -0.6 -0.7 -0.6 -0.0 -0.0 -0.5 -0.8 -0.5 -0.7 -0.8 -1.5 -0.4 -0.7 -0.5 -0.8 -0.5 -0.8 -0.5 -0.8 -0.4 -0.9 -0.5 -0.9 -0.5 -0.9 -0.2 -0.9 -0.1 -1.0 -0.0 -0.0 0.1 -1.0 0.2 -0.9 0.5 -0.9 0.5 -0.9 0.4 -0.9 0.5 -0.8 0.5 -0.8 0.5 -0.8 0.4 -0.7 0.8 -1.5 0.5 -0.7 0.5 -0.8 0.0 -0.0 0.6 -0.6 0.8 -0.6 0.8 -0.4 0.8 -0.2 1.0 -0.2 1.0 0.0 0.9 0.0 1.1 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 1.1 0.0 0.9 0.0 1.0 0.0 0.9 0.2 0.9 0.2 0.8 0.4 0.7 0.6 0.7 0.6 0.0 0.0 0.5 0.8 0.5 0.7 0.8 1.5 0.4 0.7 0.5 0.8 0.5 0.8 0.5 0.8 0.4 0.9 0.5 0.9 0.5 0.9 0.2 0.9 0.1 1.0 z";
13
+ export declare const pathAnimatableSmallPentagon = "m38.9 24.2 -0.2 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.3 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.4 1.0 -0.4 0.8 -0.4 0.8 -0.6 0.6 -0.7 0.5 0.0 0.1 -0.7 0.4 -0.8 0.3 -0.8 0.3 -0.9 0.1 -1.1 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -1.1 -0.0 -0.9 -0.1 -0.8 -0.3 -0.8 -0.3 -0.7 -0.5 -0.1 0.0 -0.6 -0.5 -0.6 -0.7 -0.4 -0.7 -0.4 -0.8 -0.4 -1.0 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -1.1 -0.2 -0.9 -0.0 -0.8 0.0 -0.9 0.2 -0.8 0.1 -0.1 0.3 -0.7 0.4 -0.8 0.6 -0.6 0.6 -0.6 0.9 -0.7 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.9 -0.7 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.8 -0.0 0.1 -0.0 0.9 0.0 0.8 0.2 0.8 0.3 0.8 0.4 0.9 0.7 0.6 0.5 0.7 0.4 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.4 0.6 0.5 0.9 0.7 0.6 0.6 0.6 0.7 0.4 0.7 0.3 0.7 0.0 0.1 0.2 0.8 0.1 0.9 -0.0 0.9 -0.2 0.8 -0.3 1.1 z";
14
+ export declare const pathAnimatableSmallGem = "m38.0 24.6 0.1 0.8 0.2 0.8 0.1 0.8 0.1 0.9 0.1 0.8 -0.0 0.9 -0.1 0.8 -0.3 0.8 -0.3 0.8 -0.3 0.5 -0.2 0.3 -0.5 0.6 -0.6 0.6 -0.7 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.4 -0.8 0.3 -0.6 0.3 -0.8 0.3 -1.1 0.5 -0.8 0.4 -0.7 0.3 -0.7 0.3 -0.7 0.3 -0.8 0.2 -0.8 0.2 -0.8 0.1 -0.0 -0.0 -0.8 -0.1 -0.8 -0.1 -0.7 -0.3 -0.8 -0.3 -0.7 -0.3 -0.7 -0.3 -0.8 -0.4 -1.1 -0.5 -0.8 -0.3 -0.6 -0.3 -0.8 -0.3 -0.7 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -0.4 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.1 -0.3 -0.3 -0.5 -0.3 -0.8 -0.3 -0.8 -0.1 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.9 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.1 -0.7 0.1 -0.8 0.1 -0.6 0.2 -1.4 0.1 -0.6 0.1 -0.8 0.1 -0.7 0.2 -0.7 0.3 -0.7 0.1 -0.1 0.3 -0.6 0.5 -0.6 0.5 -0.6 0.6 -0.4 0.5 -0.5 0.7 -0.5 0.6 -0.3 0.5 -0.4 1.0 -0.8 0.6 -0.4 0.6 -0.4 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.4 0.7 -0.2 0.8 -0.2 0.8 -0.0 0.0 -0.0 0.8 0.0 0.8 0.2 0.7 0.2 0.7 0.4 0.7 0.4 0.6 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.4 0.6 0.4 1.0 0.8 0.5 0.4 0.6 0.3 0.7 0.5 0.5 0.5 0.6 0.4 0.5 0.6 0.4 0.6 0.4 0.6 0.1 0.1 0.3 0.7 0.2 0.7 0.1 0.7 0.1 0.8 0.1 0.6 0.2 1.4 0.1 0.6 0.1 0.8 z";
15
+ export declare const pathAnimatableSmallVerySunny = "m40.0 24.0 -0.1 0.8 -0.4 0.8 -0.8 0.7 -1.0 0.6 -0.9 0.6 -0.7 0.5 -0.6 1.1 -0.1 0.7 0.1 0.8 0.2 1.0 0.3 1.1 0.1 1.1 -0.3 0.8 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.8 0.3 -1.1 -0.1 -1.1 -0.3 -1.0 -0.2 -0.8 -0.1 -0.7 0.1 -1.1 0.6 -0.5 0.7 -0.6 0.9 -0.5 0.9 -0.8 0.9 -0.7 0.4 -0.9 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.4 -0.7 -0.8 -0.6 -1.0 -0.6 -0.9 -0.5 -0.7 -1.1 -0.6 -0.7 -0.1 -0.8 0.1 -1.0 0.2 -1.1 0.3 -1.1 0.1 -0.8 -0.3 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.3 -0.8 0.1 -1.1 0.3 -1.1 0.2 -1.0 0.1 -0.8 -0.1 -0.7 -0.6 -1.1 -0.7 -0.5 -0.9 -0.6 -1.0 -0.6 -0.8 -0.7 -0.4 -0.8 -0.1 -0.7 -0.0 -0.1 0.1 -0.8 0.4 -0.8 0.8 -0.7 1.0 -0.6 0.9 -0.6 0.7 -0.5 0.6 -1.1 0.1 -0.7 -0.1 -0.8 -0.2 -1.0 -0.3 -1.1 -0.1 -1.1 0.3 -0.8 0.4 -0.7 0.1 -0.0 0.7 -0.5 0.8 -0.3 1.1 0.1 1.1 0.3 1.0 0.2 0.8 0.1 0.7 -0.1 1.1 -0.6 0.5 -0.7 0.6 -0.9 0.6 -1.0 0.7 -0.8 0.8 -0.4 0.7 -0.1 0.1 -0.0 0.8 0.1 0.8 0.4 0.7 0.8 0.6 1.0 0.6 0.9 0.5 0.7 1.1 0.6 0.7 0.1 0.8 -0.1 1.0 -0.2 1.1 -0.3 1.1 -0.1 0.8 0.3 0.7 0.5 0.0 0.0 0.5 0.7 0.3 0.8 -0.1 1.1 -0.3 1.1 -0.2 1.0 -0.1 0.8 0.1 0.7 0.6 1.1 0.7 0.5 0.9 0.6 0.9 0.5 0.9 0.8 0.4 0.7 0.1 0.9 z";
16
+ export declare const pathAnimatableSmallSunny = "m40.0 24.0 -0.1 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.6 -0.6 0.7 -0.5 0.6 -0.7 1.2 -0.1 0.7 -0.1 0.8 -0.0 0.9 -0.1 0.9 -0.1 0.9 -0.2 0.9 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.9 0.2 -0.9 0.1 -0.9 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -1.2 0.7 -0.6 0.5 -0.7 0.6 -0.6 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.5 -0.8 -0.6 -0.6 -0.6 -0.7 -0.6 -0.6 -0.5 -1.2 -0.7 -0.7 -0.1 -0.8 -0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.2 -0.7 -0.5 -0.0 0.0 -0.5 -0.7 -0.2 -0.9 -0.1 -0.9 -0.1 -0.9 -0.0 -0.8 -0.1 -0.8 -0.1 -0.8 -0.7 -1.2 -0.5 -0.6 -0.6 -0.7 -0.6 -0.6 -0.6 -0.8 -0.5 -0.8 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.7 -1.2 0.1 -0.7 0.1 -0.8 0.0 -0.9 0.1 -0.9 0.1 -0.9 0.2 -0.9 0.5 -0.7 -0.0 -0.0 0.7 -0.5 0.9 -0.2 0.9 -0.1 0.9 -0.1 0.8 -0.0 0.8 -0.1 0.8 -0.1 1.2 -0.7 0.6 -0.5 0.7 -0.6 0.6 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.1 0.0 -0.0 0.8 0.1 0.8 0.5 0.8 0.6 0.6 0.6 0.7 0.6 0.6 0.5 1.2 0.7 0.7 0.1 0.8 0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.2 0.7 0.5 0.0 -0.0 0.5 0.7 0.2 0.9 0.1 0.9 0.1 0.9 0.0 0.8 0.1 0.8 0.1 0.8 0.7 1.2 0.5 0.6 0.6 0.7 0.6 0.6 0.6 0.8 0.5 0.8 0.1 0.8 z";
17
+ export declare const pathAnimatableSmallFourSidedCookie = "m36.9 24.6 0.1 0.7 0.2 0.8 0.2 0.7 0.4 0.9 0.4 0.9 0.2 0.9 0.1 1.0 0.1 0.9 -0.1 0.9 -0.3 0.9 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.9 0.3 -0.9 0.1 -0.9 -0.1 -1.0 -0.1 -0.9 -0.2 -0.9 -0.4 -0.9 -0.4 -0.7 -0.2 -0.8 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.8 0.2 -0.7 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -1.0 0.1 -0.9 0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.6 -0.6 -0.1 -0.1 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -0.7 0.2 -0.8 0.1 -0.7 -0.0 -1.2 -0.1 -0.7 -0.2 -0.8 -0.2 -0.7 -0.4 -0.9 -0.4 -0.9 -0.2 -0.9 -0.1 -1.0 -0.1 -0.9 0.1 -0.9 0.3 -0.9 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.1 -0.1 0.6 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.3 0.9 -0.1 0.9 0.1 1.0 0.1 0.9 0.2 0.9 0.4 0.9 0.4 0.7 0.2 0.8 0.2 0.7 0.1 1.2 -0.0 0.7 -0.1 0.8 -0.2 0.7 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 1.0 -0.1 0.9 -0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.5 0.6 0.6 0.1 0.1 0.6 0.6 0.5 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 0.7 -0.2 0.8 -0.1 0.7 z";
18
+ export declare const pathAnimatableSmallSixSidedCookie = "m38.3 24.7 0.2 0.8 0.1 0.8 0.2 0.8 -0.0 0.8 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.7 -0.4 0.8 -0.0 0.0 -0.5 0.7 -0.5 0.7 -0.6 0.5 -0.6 0.6 -0.7 0.4 -0.7 0.4 -0.8 0.3 -0.8 0.2 -0.7 0.3 -1.3 0.7 -0.6 0.5 -0.6 0.6 -0.6 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.2 -0.9 0.2 -0.8 -0.0 -0.0 -0.0 -0.8 -0.0 -0.9 -0.2 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.5 -1.3 -0.7 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.7 -0.0 -0.0 -0.4 -0.8 -0.3 -0.7 -0.2 -0.8 -0.1 -0.8 -0.1 -0.9 0.0 -0.8 0.2 -0.8 0.1 -0.8 0.2 -0.8 -0.0 -1.4 -0.2 -0.8 -0.1 -0.8 -0.2 -0.8 0.0 -0.8 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.0 -0.1 0.4 -0.6 0.6 -0.7 0.6 -0.5 0.6 -0.6 0.7 -0.4 0.7 -0.4 0.8 -0.3 0.8 -0.3 0.7 -0.2 1.3 -0.8 0.6 -0.4 0.6 -0.6 0.6 -0.5 0.7 -0.4 0.8 -0.4 0.7 -0.3 0.8 -0.2 0.9 -0.2 0.8 0.0 0.0 0.0 0.8 0.0 0.9 0.2 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.5 1.3 0.7 0.7 0.3 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.7 0.4 0.7 0.0 0.0 0.4 0.8 0.3 0.7 0.2 0.8 0.1 0.8 0.1 0.9 -0.0 0.8 -0.2 0.8 -0.1 0.8 -0.2 0.8 z";
19
+ export declare const pathAnimatableSmallSevenSidedCookie = "m39.7 24.8 0.2 0.9 0.1 0.8 -0.0 0.9 -0.2 0.8 -0.0 0.2 -0.3 0.7 -0.3 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.5 -1.1 1.2 -0.4 0.7 -0.3 0.8 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.7 0.6 -0.7 0.5 -0.7 0.3 -0.1 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.0 -0.9 -0.0 -0.8 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.2 -0.9 0.0 -0.9 -0.1 -0.8 -0.1 -0.9 -0.3 -0.1 -0.1 -0.7 -0.3 -0.7 -0.6 -0.7 -0.5 -0.5 -0.7 -0.5 -0.8 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -1.0 -1.1 -0.7 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.5 -0.8 -0.3 -0.7 -0.3 -0.6 -0.0 -0.3 -0.2 -0.8 -0.0 -0.9 0.1 -0.8 0.2 -0.9 0.2 -0.8 0.5 -0.8 0.3 -0.8 0.3 -0.7 0.3 -1.4 -0.0 -0.9 -0.0 -0.8 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.3 -0.8 0.4 -0.6 0.1 -0.2 0.5 -0.5 0.6 -0.6 0.7 -0.5 0.8 -0.4 0.7 -0.3 0.9 -0.2 0.8 -0.2 0.8 -0.2 1.3 -0.6 0.6 -0.4 0.7 -0.6 0.6 -0.5 0.7 -0.5 0.7 -0.3 0.8 -0.3 0.9 -0.1 0.8 -0.1 0.0 -0.0 0.9 0.1 0.7 0.1 0.9 0.3 0.7 0.3 0.7 0.5 0.7 0.5 0.6 0.6 0.6 0.4 1.3 0.6 0.8 0.2 0.8 0.2 0.8 0.2 0.8 0.3 0.8 0.4 0.7 0.5 0.6 0.5 0.5 0.7 0.0 0.0 0.5 0.8 0.3 0.7 0.3 0.8 0.1 0.9 0.0 0.8 0.0 0.8 0.0 0.9 0.3 1.4 0.3 0.7 0.3 0.8 0.5 0.8 z";
20
+ export declare const pathAnimatableSmallNineSidedCookie = "m39.9 24.0 -0.3 0.8 -0.4 0.8 -0.3 0.8 -0.2 1.5 0.1 0.9 0.1 0.9 -0.1 0.9 -0.2 0.8 -0.3 0.8 -0.2 0.4 -0.3 0.4 -0.5 0.7 -0.7 0.5 -0.8 0.4 -0.8 0.4 -0.8 0.4 -1.2 1.0 -0.5 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.8 0.4 -0.4 0.2 -0.5 0.1 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.1 -0.8 0.2 -0.9 0.3 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.5 -0.1 -0.4 -0.2 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.5 -0.8 -0.5 -0.7 -1.2 -1.0 -0.7 -0.4 -0.9 -0.4 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.3 -0.4 -0.2 -0.4 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.9 0.1 -0.9 -0.2 -1.5 -0.3 -0.8 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.7 -0.0 -0.2 0.2 -0.8 0.4 -0.8 0.5 -0.7 0.6 -0.6 0.7 -0.7 0.5 -0.6 0.6 -1.3 0.3 -0.9 0.2 -0.8 0.3 -0.8 0.5 -0.7 0.5 -0.6 0.2 -0.2 0.5 -0.4 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.9 -0.0 0.8 -0.1 1.4 -0.5 0.7 -0.4 0.7 -0.5 0.7 -0.5 0.8 -0.3 0.8 -0.2 0.9 -0.1 0.0 -0.0 0.8 0.1 0.9 0.2 0.8 0.3 0.7 0.5 0.7 0.5 0.7 0.4 1.4 0.5 0.8 0.1 0.9 0.0 0.9 0.2 0.8 0.3 0.7 0.4 0.5 0.4 0.2 0.1 0.5 0.7 0.5 0.7 0.3 0.8 0.2 0.8 0.3 0.9 0.6 1.3 0.5 0.6 0.7 0.7 0.6 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.0 0.2 0.1 0.7 -0.1 0.9 z";
21
+ export declare const pathAnimatableSmallTwelveSidedCookie = "m40.0 24.0 -0.1 0.8 -0.3 0.9 -0.6 0.7 -0.5 0.7 -0.4 1.4 0.1 0.9 0.1 0.9 -0.1 0.9 -0.3 0.8 -0.1 0.0 -0.5 0.7 -0.6 0.5 -0.9 0.3 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.4 0.8 -0.5 0.7 -0.7 0.6 -0.0 -0.0 -0.8 0.3 -0.9 0.1 -0.9 -0.1 -0.8 -0.1 -1.5 0.4 -0.7 0.5 -0.8 0.6 -0.7 0.3 -0.9 0.1 -0.0 0.0 -0.9 -0.1 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -1.4 -0.4 -0.9 0.1 -0.9 0.1 -0.9 -0.1 -0.8 -0.3 -0.0 -0.1 -0.7 -0.5 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -1.1 -1.1 -0.8 -0.4 -0.8 -0.3 -0.7 -0.5 -0.5 -0.7 -0.1 -0.0 -0.3 -0.8 -0.1 -0.9 0.2 -0.9 0.1 -0.9 -0.4 -1.4 -0.6 -0.7 -0.5 -0.7 -0.4 -0.9 -0.1 -0.7 0.0 -0.1 0.1 -0.8 0.4 -0.9 0.5 -0.7 0.6 -0.7 0.4 -1.4 -0.1 -0.9 -0.2 -0.9 0.1 -0.9 0.3 -0.8 0.0 -0.0 0.6 -0.7 0.7 -0.5 0.8 -0.3 0.8 -0.4 1.1 -1.1 0.4 -0.8 0.3 -0.8 0.5 -0.7 0.7 -0.5 0.0 -0.1 0.8 -0.3 0.9 -0.1 0.9 0.1 0.9 0.1 1.4 -0.3 0.7 -0.6 0.7 -0.5 0.9 -0.4 0.7 -0.1 0.1 0.0 0.8 0.1 0.9 0.4 0.7 0.5 0.7 0.6 1.4 0.3 0.9 -0.1 0.9 -0.1 0.9 0.1 0.8 0.3 0.0 0.0 0.7 0.6 0.5 0.7 0.4 0.8 0.3 0.8 1.1 1.1 0.8 0.4 0.8 0.3 0.8 0.5 0.4 0.7 0.1 -0.0 0.3 0.8 0.1 0.9 -0.1 0.9 -0.1 0.9 0.4 1.4 0.5 0.7 0.6 0.7 0.3 0.9 0.1 0.7 z";
22
+ export declare const pathAnimatableSmallGhostish = "m39.0 24.6 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.6 0.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 -0.0 1.1 -0.2 1.0 -0.3 1.0 -0.6 0.8 -0.5 0.7 -0.1 0.1 -0.8 0.6 -0.9 0.5 -0.9 0.4 -1.0 0.2 -1.1 -0.0 -1.1 -0.2 -1.1 -0.4 -1.1 -0.5 -1.0 -0.5 -0.9 -0.5 -0.8 -0.3 -0.7 -0.2 -0.6 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.6 0.2 -0.7 0.2 -0.8 0.3 -0.9 0.4 -1.0 0.6 -1.1 0.5 -1.1 0.4 -1.1 0.2 -1.1 -0.0 -1.0 -0.2 -0.9 -0.4 -0.9 -0.5 -0.8 -0.6 -0.1 -0.1 -0.5 -0.7 -0.6 -0.8 -0.3 -1.0 -0.2 -1.0 0.0 -1.1 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -0.6 0.0 -1.0 0.0 -0.7 0.0 -1.0 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.8 0.2 -0.7 0.3 -0.7 0.4 -0.8 0.3 -0.6 0.1 -0.1 0.4 -0.7 0.4 -0.7 0.5 -0.6 0.5 -0.6 0.6 -0.5 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.3 0.8 -0.2 0.7 -0.2 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.7 -0.1 1.6 0.0 0.7 0.1 0.8 0.1 0.8 0.1 0.8 0.2 0.7 0.2 0.8 0.2 0.7 0.3 0.7 0.4 0.7 0.3 0.7 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.6 0.6 0.5 0.5 0.6 0.5 0.6 0.4 0.7 0.4 0.7 0.1 0.1 0.3 0.6 0.4 0.8 0.3 0.7 0.2 0.7 0.2 0.8 0.2 0.8 0.1 0.8 0.1 0.8 -0.0 0.7 z";
23
+ export declare const pathAnimatableSmallFourLeafClover = "m37.2 24.7 0.5 0.7 0.4 0.8 0.3 0.8 0.2 0.9 0.1 0.9 0.1 0.8 -0.0 0.9 -0.2 1.0 -0.1 0.8 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.7 0.5 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.8 0.2 -1.0 0.1 -0.8 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -0.8 -0.4 -0.8 -0.5 -1.3 0.0 -0.7 0.5 -0.8 0.4 -0.8 0.3 -0.9 0.3 -0.9 0.1 -0.8 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.3 -0.8 -0.5 -0.7 -0.5 -0.7 -0.6 0.0 -0.1 -0.6 -0.6 -0.5 -0.8 -0.5 -0.7 -0.3 -0.8 -0.3 -0.9 -0.2 -0.9 -0.2 -0.8 0.0 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.4 -0.8 0.5 -0.7 -0.0 -1.4 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.9 -0.1 -0.8 -0.1 -0.9 0.0 -0.9 0.2 -1.0 0.1 -0.8 0.3 -0.8 0.4 -0.9 0.5 -0.8 0.5 -0.7 0.6 -0.7 0.1 0.0 0.6 -0.6 0.8 -0.5 0.7 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.2 0.8 -0.1 1.0 0.0 0.8 0.1 0.9 0.1 0.9 0.3 0.8 0.3 0.8 0.4 0.7 0.5 1.3 -0.0 0.8 -0.5 0.8 -0.4 0.8 -0.3 0.9 -0.3 0.9 -0.1 0.9 -0.1 0.9 0.0 0.9 0.1 0.8 0.3 0.9 0.3 0.8 0.3 0.7 0.5 0.8 0.5 0.6 0.6 0.1 0.0 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.8 0.2 0.9 0.3 0.9 0.1 0.8 -0.0 1.0 -0.1 0.8 -0.1 0.9 -0.2 0.9 -0.3 0.8 -0.4 0.8 -0.5 0.7 z";
24
+ export declare const pathAnimatableSmallEightLeafClover = "m39.3 24.8 0.4 0.8 0.2 0.9 0.2 0.9 -0.0 0.9 -0.1 0.9 -0.2 0.9 -0.2 0.4 -0.1 0.4 -0.5 0.8 -0.6 0.7 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.5 0.9 -0.5 0.7 -0.7 0.6 -0.6 0.6 -0.8 0.4 -0.2 0.1 -0.7 0.2 -0.8 0.2 -0.9 0.1 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -1.6 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.2 -0.9 -0.0 -0.9 -0.1 -0.8 -0.2 -0.4 -0.2 -0.5 -0.2 -0.7 -0.4 -0.7 -0.6 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.4 -0.8 -1.1 -1.1 -0.9 -0.3 -0.7 -0.5 -0.8 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.8 -0.1 -0.2 -0.2 -0.6 -0.2 -0.9 -0.1 -0.8 0.0 -1.0 0.2 -0.8 0.2 -0.9 0.4 -0.9 -0.0 -1.5 -0.4 -0.8 -0.2 -0.9 -0.2 -0.8 -0.0 -0.9 0.1 -0.9 0.2 -0.9 0.2 -0.6 0.1 -0.2 0.4 -0.8 0.6 -0.7 0.6 -0.6 0.8 -0.5 0.8 -0.5 0.8 -0.3 1.1 -1.1 0.4 -0.8 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.7 -0.6 0.7 -0.4 0.5 -0.3 0.4 -0.1 0.9 -0.2 0.8 -0.1 0.9 0.0 0.9 0.2 0.9 0.2 0.8 0.3 1.5 0.1 0.9 -0.3 0.9 -0.3 0.9 -0.2 0.9 -0.0 0.9 0.1 0.8 0.1 0.7 0.3 0.2 0.1 0.8 0.4 0.7 0.6 0.6 0.6 0.5 0.7 0.5 0.8 0.3 0.9 1.1 1.1 0.8 0.4 0.8 0.4 0.8 0.5 0.6 0.6 0.6 0.7 0.5 0.8 0.1 0.4 0.2 0.4 0.2 0.9 0.1 0.9 -0.0 0.9 -0.2 0.9 -0.2 0.9 -0.4 0.8 z";
25
+ export declare const pathAnimatableSmallFlower = "m40.0 24.0 -0.2 0.8 -0.6 0.8 -0.8 0.7 -0.9 0.6 -1.1 0.5 -1.0 0.3 -0.9 0.3 0.2 1.5 0.5 0.9 0.4 1.1 0.2 1.1 0.1 1.0 -0.1 1.0 -0.5 0.7 -0.0 0.0 -0.7 0.5 -1.0 0.1 -1.0 -0.1 -1.1 -0.3 -1.1 -0.3 -1.0 -0.5 -0.9 -0.5 -0.8 1.2 -0.3 1.0 -0.5 1.0 -0.6 1.0 -0.7 0.9 -0.8 0.5 -0.8 0.2 0.0 -0.0 -0.8 -0.2 -0.8 -0.5 -0.7 -0.9 -0.6 -1.0 -0.5 -1.0 -0.3 -1.0 -0.8 -1.2 -0.9 0.5 -1.0 0.5 -1.1 0.3 -1.1 0.3 -1.0 0.1 -1.0 -0.1 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.1 -0.9 0.1 -1.1 0.2 -1.1 0.4 -1.1 0.5 -0.9 0.5 -1.0 -1.3 -0.8 -0.9 -0.3 -1.1 -0.5 -0.9 -0.6 -0.9 -0.7 -0.5 -0.8 -0.2 -0.8 0.0 0.0 0.2 -0.8 0.6 -0.8 0.8 -0.7 0.9 -0.6 1.0 -0.4 1.1 -0.4 1.2 -0.8 -0.5 -0.9 -0.5 -1.0 -0.3 -1.1 -0.3 -1.1 -0.1 -1.0 0.1 -1.0 0.5 -0.7 0.0 -0.0 0.7 -0.5 0.9 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.0 0.5 1.4 0.2 0.3 -1.0 0.3 -0.9 0.5 -1.1 0.6 -0.9 0.7 -0.9 0.8 -0.5 0.8 -0.2 0.0 0.0 0.8 0.2 0.8 0.5 0.7 0.9 0.6 0.9 0.5 1.1 0.3 0.9 0.3 1.0 1.5 -0.2 0.9 -0.5 1.1 -0.4 1.1 -0.2 1.1 -0.1 0.9 0.1 0.7 0.5 0.0 0.0 0.5 0.7 0.1 1.0 -0.1 1.0 -0.2 1.1 -0.4 1.1 -0.5 1.0 -0.5 0.8 1.3 0.9 1.0 0.4 1.0 0.4 0.9 0.6 0.9 0.7 0.5 0.8 0.2 0.8 z";
26
+ export declare const pathAnimatableSmallPuffy = "m42.2 24.1 -0.1 0.9 -0.3 0.9 -0.6 0.9 -0.9 0.7 -1.4 0.5 0.1 1.8 0.3 1.0 -0.1 0.9 -0.2 0.9 -0.4 0.7 -0.1 0.2 -0.5 0.6 -0.8 0.7 -0.8 0.4 -1.1 0.2 -1.2 -0.1 -2.2 -0.4 -0.2 0.9 -0.4 0.8 -0.5 0.6 -0.7 0.5 -0.7 0.3 -0.0 0.1 -0.8 0.2 -0.8 0.0 -0.8 -0.1 -0.8 -0.2 -0.8 -0.4 -0.7 -0.7 -1.4 0.1 -0.7 0.6 -0.8 0.4 -0.8 0.3 -0.8 0.0 -0.8 -0.1 -0.7 -0.2 -0.1 -0.0 -0.7 -0.4 -0.6 -0.5 -0.5 -0.6 -0.4 -0.8 -0.9 -1.1 -1.6 0.7 -1.2 0.1 -1.0 -0.3 -0.9 -0.4 -0.7 -0.6 -0.6 -0.7 -0.0 -0.1 -0.4 -0.7 -0.2 -0.9 -0.0 -1.0 0.2 -1.0 0.0 -1.7 -1.3 -0.5 -0.9 -0.8 -0.6 -0.8 -0.3 -1.0 -0.1 -0.7 -0.0 -0.4 0.1 -0.8 0.3 -0.9 0.5 -0.8 0.8 -0.8 1.3 -0.6 0.3 -1.6 -0.3 -1.0 -0.0 -1.0 0.2 -0.9 0.4 -0.8 -0.0 -0.1 0.6 -0.7 0.6 -0.6 0.9 -0.4 1.0 -0.3 1.2 0.1 1.5 0.6 1.0 -0.9 0.4 -0.8 0.6 -0.7 0.6 -0.5 0.6 -0.4 0.2 -0.1 0.7 -0.1 0.7 -0.1 0.9 0.0 0.8 0.2 0.8 0.5 0.7 0.6 1.4 0.1 0.7 -0.7 0.8 -0.4 0.8 -0.2 0.8 -0.1 0.8 0.1 0.8 0.2 0.1 -0.0 0.7 0.4 0.6 0.5 0.5 0.6 0.4 0.8 0.9 1.2 1.6 -0.8 1.2 -0.1 1.0 0.3 0.9 0.4 0.7 0.6 0.6 0.7 0.0 0.1 0.4 0.8 0.2 0.9 0.0 1.0 -0.3 1.0 0.3 1.6 1.2 0.6 0.9 0.7 0.5 0.9 0.3 0.9 0.1 0.8 z";
27
+ export declare const pathAnimatableSmallPuffyDiamond = "m40.0 24.0 -0.1 0.9 -0.2 0.8 -0.4 0.7 -0.5 0.8 -0.8 0.6 -0.8 0.5 -1.2 0.3 -1.7 0.6 0.0 0.7 -0.1 0.7 -0.2 0.7 -0.2 0.6 -0.4 0.5 -0.4 0.5 -0.1 0.1 -0.5 0.4 -0.5 0.4 -0.6 0.3 -0.7 0.1 -0.7 0.1 -0.7 0.0 -0.6 1.6 -0.3 1.2 -0.5 0.9 -0.6 0.7 -0.7 0.6 -0.9 0.4 -0.7 0.2 -0.9 0.1 -0.1 0.0 -0.8 -0.1 -0.8 -0.2 -0.7 -0.3 -0.8 -0.6 -0.6 -0.7 -0.5 -0.8 -0.4 -1.2 -0.5 -1.8 -0.7 0.0 -0.7 -0.1 -0.7 -0.2 -0.6 -0.2 -0.6 -0.4 -0.4 -0.4 -0.1 -0.1 -0.4 -0.5 -0.4 -0.5 -0.2 -0.7 -0.2 -0.6 -0.1 -0.7 0.0 -0.7 -1.7 -0.6 -1.2 -0.3 -0.9 -0.5 -0.7 -0.7 -0.5 -0.6 -0.4 -0.8 -0.2 -0.9 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.2 -0.9 0.4 -0.7 0.5 -0.8 0.7 -0.6 0.9 -0.5 1.2 -0.3 1.7 -0.6 0.0 -0.7 0.1 -0.7 0.2 -0.7 0.3 -0.5 0.3 -0.6 0.4 -0.5 0.1 -0.0 0.5 -0.5 0.6 -0.3 0.6 -0.3 0.6 -0.2 0.7 -0.1 0.7 0.0 0.5 -1.8 0.4 -1.1 0.5 -0.9 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.9 -0.2 0.7 -0.1 0.1 0.0 0.9 0.1 0.8 0.3 0.7 0.3 0.7 0.6 0.7 0.7 0.5 0.9 0.3 1.2 0.6 1.6 0.7 0.0 0.7 0.1 0.6 0.2 0.6 0.3 0.6 0.3 0.5 0.5 0.1 -0.0 0.4 0.5 0.3 0.5 0.3 0.7 0.2 0.6 0.1 0.7 -0.0 0.7 1.7 0.6 1.2 0.3 0.9 0.5 0.7 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.1 0.9 z";
28
+ export declare const pathAnimatableSmallBun = "m34.6 24.5 1.2 0.7 0.9 0.8 0.7 0.9 0.6 0.8 0.5 1.0 0.3 1.0 0.2 1.0 0.1 1.0 -0.1 1.0 -0.2 0.9 -0.3 0.9 -0.4 0.9 -0.5 0.8 -0.6 0.8 -0.5 0.5 -0.2 0.2 -0.8 0.6 -0.8 0.4 -0.9 0.4 -0.9 0.3 -1.0 0.2 -1.2 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -1.2 -0.0 -1.0 -0.2 -0.9 -0.3 -0.9 -0.3 -0.8 -0.5 -0.8 -0.6 -0.3 -0.3 -0.5 -0.4 -0.6 -0.7 -0.5 -0.9 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.0 -1.0 0.0 -1.0 0.2 -1.0 0.4 -1.0 0.4 -1.0 0.6 -0.9 0.8 -0.8 0.9 -0.8 1.1 -0.7 0.0 -1.0 -1.1 -0.7 -0.9 -0.8 -0.8 -0.9 -0.6 -0.8 -0.4 -1.0 -0.4 -1.0 -0.2 -1.0 -0.0 -1.0 0.1 -1.0 0.1 -0.9 0.3 -1.0 0.4 -0.8 0.6 -0.9 0.6 -0.7 0.4 -0.5 0.3 -0.2 0.8 -0.6 0.8 -0.5 0.9 -0.3 0.9 -0.3 1.0 -0.2 1.2 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 0.5 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.5 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 1.2 0.0 1.0 0.2 0.9 0.3 0.9 0.3 0.8 0.5 0.8 0.6 0.3 0.3 0.4 0.4 0.6 0.7 0.6 0.9 0.4 0.8 0.3 1.0 0.2 0.9 0.0 1.0 -0.0 1.0 -0.2 1.0 -0.3 1.0 -0.5 0.9 -0.6 1.0 -0.8 0.8 -0.9 0.8 -1.1 0.6 z";
29
+ export declare const pathAnimatableSmallHeart = "m36.1 24.0 -0.6 0.6 -0.6 0.7 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.5 0.5 -0.2 0.2 -0.4 0.5 -0.2 0.3 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.3 0.4 -0.5 0.5 -0.3 0.4 -0.5 0.5 -0.4 0.6 -0.5 0.5 -0.4 0.6 -0.7 0.7 -0.6 0.7 -0.8 1.0 -0.0 -0.0 -0.8 -1.0 -0.6 -0.7 -0.7 -0.8 -0.4 -0.5 -0.5 -0.5 -0.4 -0.6 -0.5 -0.5 -0.3 -0.4 -0.5 -0.5 -0.3 -0.4 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.2 -0.3 -0.4 -0.4 -0.4 -0.5 -0.2 -0.3 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.5 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.7 -0.8 -0.6 -0.8 -0.7 -0.9 -0.5 -0.9 -0.5 -1.1 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.0 0.3 -0.9 0.5 -0.9 0.5 -0.8 0.1 -0.1 0.6 -0.7 0.8 -0.6 0.8 -0.5 0.9 -0.4 1.0 -0.2 1.0 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.1 0.7 1.1 1.1 0.9 1.1 0.9 0.9 0.6 0.7 0.5 0.6 0.5 0.5 0.8 0.0 0.5 -0.5 0.5 -0.6 0.6 -0.7 0.7 -0.8 1.1 -1.2 1.1 -1.0 1.1 -0.7 1.1 -0.5 1.1 -0.2 1.1 -0.1 1.0 0.1 1.0 0.3 0.9 0.3 0.8 0.5 0.8 0.7 0.6 0.6 0.1 0.1 0.5 0.8 0.4 0.9 0.4 0.9 0.2 1.0 -0.0 1.0 -0.1 1.0 -0.3 1.1 -0.5 0.9 -0.5 1.0 -0.7 0.9 -0.6 0.8 -0.7 0.8 z";
@@ -0,0 +1,33 @@
1
+ // 29 shapes (subset)
2
+ // 0,0,48,48 viewport, 38x38 shapes
3
+ // 120 points
4
+ export const pathAnimatableSmallCircle = 'm40.0 24.3 -0.0 0.5 -0.2 1.5 -0.0 0.4 -0.2 1.0 -0.3 0.8 -0.2 0.9 -0.4 0.9 -0.2 0.5 -0.3 0.7 -0.5 0.7 -0.7 1.2 -0.2 0.2 -0.5 0.6 -0.6 0.7 -0.7 0.7 -0.5 0.5 -0.5 0.4 -0.8 0.6 -0.8 0.5 -0.8 0.5 -0.3 0.2 -1.0 0.4 -0.7 0.3 -0.8 0.2 -1.1 0.4 -0.5 0.1 -0.9 0.1 -0.7 0.1 -0.8 0.1 -1.3 -0.0 -0.4 -0.0 -0.9 -0.1 -0.7 -0.1 -1.2 -0.2 -0.7 -0.2 -0.8 -0.3 -0.8 -0.3 -0.6 -0.2 -0.8 -0.4 -0.6 -0.3 -0.8 -0.5 -0.7 -0.6 -0.7 -0.5 -0.5 -0.4 -0.8 -0.8 -0.6 -0.6 -0.5 -0.6 -0.4 -0.5 -0.7 -1.2 -0.3 -0.5 -0.5 -1.0 -0.1 -0.2 -0.6 -1.5 -0.0 -0.1 -0.3 -0.9 -0.2 -0.7 -0.2 -1.3 -0.0 -0.4 -0.1 -0.8 0.0 -0.8 0.0 -1.0 0.2 -1.3 0.0 -0.2 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.3 -1.0 0.5 -0.9 0.5 -0.9 0.1 -0.2 0.7 -1.2 0.2 -0.2 0.5 -0.7 0.5 -0.6 0.6 -0.6 0.6 -0.6 0.8 -0.6 0.5 -0.5 0.7 -0.4 0.9 -0.6 0.9 -0.4 0.5 -0.2 0.7 -0.4 0.8 -0.2 1.0 -0.3 0.6 -0.2 0.8 -0.1 1.2 -0.1 0.6 -0.1 1.2 0.0 0.4 0.0 0.8 0.1 1.3 0.2 0.4 0.1 1.0 0.2 0.7 0.2 0.6 0.3 1.0 0.4 1.3 0.6 0.0 0.1 0.8 0.4 0.9 0.6 0.6 0.6 0.5 0.4 0.8 0.8 0.3 0.3 0.6 0.7 0.4 0.6 0.5 0.7 0.6 0.9 0.4 0.8 0.2 0.5 0.4 0.9 0.4 1.4 0.1 0.1 0.2 0.8 0.1 1.0 0.1 0.7 0.1 1.3 z';
5
+ export const pathAnimatableSmallSquare = 'm40.0 24.8 -0.0 0.9 -0.0 0.8 -0.0 0.9 -0.0 0.8 -0.0 1.0 -0.1 0.9 -0.0 1.0 -0.2 0.9 -0.2 1.0 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -1.0 0.2 -1.0 0.2 -0.9 0.0 -0.9 0.1 -1.0 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -0.9 0.0 -1.6 0.0 -0.9 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -1.0 -0.0 -0.9 -0.1 -1.0 -0.0 -0.9 -0.2 -1.0 -0.2 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.8 -0.6 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.6 -0.8 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.2 -1.0 -0.0 -0.9 -0.1 -0.9 0.0 -1.0 0.0 -0.8 0.0 -0.9 0.0 -0.8 -0.0 -0.9 -0.0 -1.6 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.0 0.1 -0.9 0.0 -1.0 0.2 -0.9 0.2 -1.0 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.8 0.0 0.0 0.8 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 1.0 -0.2 1.0 -0.2 0.9 -0.0 0.9 -0.1 1.0 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.9 -0.0 1.6 -0.0 0.9 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.0 0.0 0.9 0.1 1.0 0.0 0.9 0.2 1.0 0.2 0.9 0.3 0.8 0.4 0.8 0.5 0.8 0.6 0.8 0.6 -0.0 0.0 0.6 0.8 0.6 0.8 0.5 0.8 0.4 0.8 0.3 0.9 0.2 1.0 0.2 1.0 0.0 0.9 0.1 0.9 -0.0 1.0 -0.0 0.8 -0.0 0.9 -0.0 0.8 0.0 0.9 z';
6
+ export const pathAnimatableSmallSlanted = 'm39.1 24.1 -0.0 0.8 -0.2 1.2 -0.0 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 1.2 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.2 1.0 -0.4 0.9 -0.6 0.8 -0.6 0.6 -0.1 0.1 -0.7 0.6 -0.9 0.4 -0.9 0.3 -1.0 0.1 -1.0 0.1 -1.0 -0.0 -0.9 -0.0 -1.0 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 -0.0 -1.1 -0.0 -1.0 -0.0 -1.1 -0.1 -1.1 -0.2 -0.9 -0.4 -0.9 -0.6 -0.8 -0.7 0.0 0.0 -0.6 -0.8 -0.5 -0.9 -0.3 -1.0 -0.1 -1.1 0.0 -1.1 0.1 -1.0 0.1 -1.1 0.1 -0.9 0.1 -1.2 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.0 -0.8 0.2 -1.2 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -1.2 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -1.0 0.4 -0.9 0.6 -0.8 0.6 -0.6 0.1 -0.1 0.7 -0.6 0.9 -0.4 0.9 -0.3 1.0 -0.1 1.0 -0.1 1.0 0.0 0.9 0.0 1.0 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 1.1 0.0 1.0 0.0 1.1 0.1 1.1 0.2 0.9 0.4 0.9 0.6 0.8 0.7 -0.0 -0.0 0.6 0.8 0.5 0.9 0.3 1.0 0.1 1.1 -0.0 1.1 -0.1 1.0 -0.1 1.1 -0.1 1.0 -0.1 1.2 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 z';
7
+ export const pathAnimatableSmallArch = 'm39.5 24.7 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.1 0.0 0.7 0.0 1.0 0.0 1.0 0.0 1.4 -0.0 1.2 -0.2 1.2 -0.5 1.0 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -1.0 0.5 -1.2 0.2 -1.5 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -1.5 -0.0 -1.2 -0.2 -1.0 -0.5 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.5 -1.0 -0.2 -1.2 -0.0 -1.2 -0.0 -1.4 -0.0 -1.0 -0.0 -1.0 -0.0 -0.7 -0.0 -1.1 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -0.7 0.1 -1.2 -0.0 -0.5 0.1 -0.7 0.1 -0.8 0.4 -1.3 0.1 -0.3 0.2 -0.8 0.6 -1.2 0.1 -0.2 0.4 -0.8 0.4 -0.7 0.6 -0.8 0.4 -0.5 0.8 -0.9 0.3 -0.3 0.5 -0.5 0.7 -0.6 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.4 1.2 -0.4 0.5 -0.2 0.8 -0.2 0.8 -0.2 1.1 -0.2 0.7 -0.1 0.4 0.0 0.8 0.0 1.0 0.0 0.6 0.1 0.9 0.1 0.8 0.1 0.9 0.3 0.6 0.2 1.2 0.4 0.6 0.3 0.5 0.2 0.7 0.4 0.9 0.6 0.5 0.3 0.9 0.7 0.5 0.5 0.4 0.4 0.7 0.8 0.4 0.4 0.7 1.0 0.5 0.7 0.3 0.6 0.5 0.9 0.1 0.3 0.3 0.8 0.4 1.3 0.1 0.3 0.2 1.0 0.1 0.6 0.2 1.3 -0.0 0.5 z';
8
+ export const pathAnimatableSmallFan = 'm37.4 24.7 0.3 0.7 0.2 0.8 0.3 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.2 1.0 0.1 1.0 0.0 1.1 0.0 1.0 -0.0 1.1 -0.3 1.1 -0.4 0.9 -0.6 0.8 -0.1 0.1 -0.8 0.6 -0.9 0.4 -1.1 0.3 -1.5 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.7 0.0 -0.6 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -1.0 -0.0 -1.1 -0.0 -1.2 -0.1 -1.0 -0.2 -0.9 -0.4 -0.8 -0.6 -0.1 -0.0 -0.6 -0.9 -0.4 -0.9 -0.2 -1.1 -0.1 -1.1 0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.0 -1.2 -0.0 -0.6 -0.0 -0.7 -0.0 -1.2 -0.0 -0.6 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -0.6 -0.0 -1.2 -0.0 -0.7 -0.0 -0.6 -0.0 -1.2 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -1.2 -0.0 -1.2 0.0 -1.2 0.3 -1.1 0.4 -0.9 0.6 -0.9 0.1 0.0 0.8 -0.6 0.9 -0.4 1.1 -0.3 1.1 0.0 1.1 0.0 1.0 0.1 1.0 0.0 1.0 0.2 0.9 0.1 0.9 0.2 0.8 0.2 0.8 0.3 0.8 0.2 0.7 0.3 0.7 0.2 0.7 0.3 0.6 0.3 0.7 0.4 0.6 0.3 0.5 0.3 0.6 0.3 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.4 0.4 0.8 0.8 0.4 0.4 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.3 0.6 0.3 0.5 0.4 0.7 0.3 0.5 0.3 0.7 0.3 0.7 z';
9
+ export const pathAnimatableSmallArrow = 'm36.9 24.5 0.6 0.9 0.4 0.8 0.5 0.8 0.4 0.9 0.5 1.0 0.3 1.1 0.3 1.1 0.1 1.0 -0.1 1.0 -0.3 1.0 -0.4 0.9 -0.5 0.9 -0.3 0.3 -0.4 0.5 -0.8 0.6 -0.8 0.5 -1.0 0.4 -1.0 0.2 -1.0 0.1 -1.1 -0.1 -1.0 -0.2 -1.1 -0.2 -1.0 -0.2 -0.8 -0.3 -0.9 -0.2 -0.7 -0.2 -0.8 -0.1 -0.7 -0.1 -0.7 -0.1 -1.2 -0.0 -0.7 0.1 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.9 0.3 -0.9 0.2 -1.0 0.2 -1.1 0.2 -1.1 0.1 -1.1 -0.1 -1.0 -0.1 -1.0 -0.4 -0.9 -0.5 -0.7 -0.7 -0.0 -0.0 -0.6 -0.8 -0.5 -0.9 -0.4 -0.9 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.1 0.4 -1.0 0.4 -1.0 0.5 -1.0 0.5 -0.8 0.7 -1.1 0.4 -0.7 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.4 0.2 -0.3 0.4 -0.7 0.3 -0.4 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.3 0.2 -0.4 0.4 -0.7 0.5 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.5 0.4 -0.6 0.5 -0.6 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.0 0.1 -0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.7 0.3 0.7 0.5 0.5 0.5 0.6 0.5 0.5 0.6 0.4 0.5 0.4 0.6 0.4 0.6 0.4 0.5 0.3 0.6 0.3 0.5 0.5 0.7 0.2 0.3 0.4 0.6 0.2 0.4 0.4 0.6 0.4 0.6 0.2 0.4 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.4 0.7 z';
10
+ export const pathAnimatableSmallSemicircle = 'm39.1 24.7 0.3 0.9 0.2 0.8 0.2 0.9 0.1 1.0 0.1 0.9 -0.0 0.9 -0.0 1.0 -0.3 0.9 -0.1 0.2 -0.4 0.6 -0.7 0.7 -1.0 0.4 -1.6 0.1 -0.9 0.0 -1.7 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.2 -0.1 -0.6 0.1 -0.9 0.0 -0.8 0.0 -0.2 -0.1 -0.7 0.1 -0.8 0.0 -0.1 -0.0 -0.8 0.0 -0.3 0.0 -0.5 0.0 -0.8 0.0 -0.3 0.0 -0.6 0.0 -0.8 0.0 -0.2 0.1 -0.7 -0.1 -0.8 0.0 -0.9 0.0 -0.1 0.2 -0.7 -0.2 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.7 0.0 -0.9 0.0 -1.6 -0.1 -1.0 -0.4 -0.7 -0.7 -0.4 -0.6 -0.1 -0.2 -0.3 -0.9 -0.0 -1.0 0.0 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.3 -0.8 0.4 -0.7 0.4 -0.7 0.4 -0.7 0.4 -0.6 0.5 -0.6 0.4 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.5 -0.3 0.6 -0.3 0.5 -0.3 0.5 -0.2 0.6 -0.2 0.5 -0.2 0.5 -0.2 0.5 -0.1 0.6 -0.2 0.5 -0.1 0.5 -0.1 0.5 -0.1 0.6 -0.0 0.5 -0.1 0.5 0.0 1.0 0.0 0.5 0.0 0.5 0.1 0.6 0.0 0.5 0.1 0.5 0.1 0.5 0.1 0.6 0.2 0.5 0.1 0.5 0.2 0.5 0.2 0.6 0.2 0.5 0.2 0.5 0.3 0.6 0.3 0.5 0.3 0.5 0.3 0.6 0.4 0.5 0.4 0.5 0.4 0.5 0.5 0.5 0.5 0.5 0.5 0.4 0.5 0.5 0.6 0.4 0.6 0.4 0.7 0.4 0.7 0.4 0.7 0.3 0.8 z';
11
+ export const pathAnimatableSmallOval = 'm37.7 24.0 -0.3 0.7 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.6 -0.3 0.5 -0.4 0.6 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.4 -0.5 0.4 -0.8 0.8 -0.4 0.5 -0.4 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.6 0.4 -0.5 0.3 -0.6 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.7 0.3 -0.7 0.2 -0.7 0.3 -0.9 0.3 -0.8 0.2 -0.8 0.1 -0.9 0.1 -1.0 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.6 -0.7 -0.6 -0.0 0.0 -0.6 -0.7 -0.6 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 -0.1 -0.9 0.0 -0.9 0.1 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.2 -0.7 0.3 -0.7 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.6 0.3 -0.5 0.4 -0.6 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.4 0.5 -0.4 0.8 -0.8 0.4 -0.5 0.4 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.6 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.3 0.9 -0.3 0.8 -0.2 0.8 -0.1 0.9 -0.1 1.0 -0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.6 0.7 0.6 -0.0 0.0 0.6 0.7 0.6 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 0.1 0.9 -0.0 0.9 -0.1 1.0 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.9 -0.3 0.7 z';
12
+ export const pathAnimatableSmallPill = 'm39.6 24.0 -0.1 0.8 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.3 0.8 -0.4 0.7 -0.4 0.7 -0.5 0.6 -0.4 0.6 -0.6 0.6 -0.6 0.6 -0.4 0.4 -0.6 0.6 -0.4 0.5 -0.9 0.8 -0.5 0.5 -0.6 0.6 -0.4 0.4 -0.7 0.7 -0.5 0.5 -0.6 0.4 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.7 0.3 -0.8 0.3 -0.8 0.3 -0.8 0.2 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.9 0.0 -0.8 -0.0 -0.9 -0.1 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.3 -0.8 -0.4 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -0.7 -0.5 -0.6 -0.6 -0.1 -0.1 -0.5 -0.6 -0.6 -0.7 -0.5 -0.7 -0.5 -0.8 -0.4 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.1 -0.9 0.0 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.3 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.3 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.5 0.6 -0.6 0.6 -0.7 0.4 -0.4 0.6 -0.6 0.5 -0.4 0.8 -0.9 0.5 -0.5 0.6 -0.6 0.4 -0.4 0.7 -0.7 0.5 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.8 -0.3 0.8 -0.3 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.9 -0.0 0.8 0.0 0.9 0.1 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.4 0.8 0.3 0.8 0.4 0.7 0.5 0.7 0.5 0.7 0.5 0.6 0.7 0.1 -0.0 0.5 0.6 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.7 0.3 0.8 0.4 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.0 0.8 -0.0 0.8 -0.1 0.9 z';
13
+ export const pathAnimatableSmallTriangle = 'm34.8 24.3 0.3 0.5 0.5 0.9 0.3 0.5 0.5 1.0 0.6 0.9 0.6 1.1 0.6 1.1 0.7 1.3 0.7 1.4 0.2 1.2 -0.2 1.1 -0.4 1.0 -0.4 0.6 -0.3 0.2 -0.8 0.6 -1.0 0.4 -1.2 0.1 -1.2 0.1 -1.0 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.0 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.1 -1.2 -0.1 -1.0 -0.4 -0.8 -0.6 -0.3 -0.2 -0.4 -0.6 -0.4 -1.0 -0.2 -1.1 0.2 -1.2 0.7 -1.4 0.7 -1.3 0.6 -1.1 0.6 -1.1 0.6 -0.9 0.5 -1.0 0.3 -0.5 0.5 -0.9 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.0 -0.0 0.3 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.3 -0.4 0.6 -1.0 0.3 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.7 0.5 -0.8 0.6 -0.6 0.6 -0.6 0.7 -0.3 0.7 -0.2 0.8 -0.1 0.0 0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.6 0.6 0.6 0.6 0.5 0.8 0.4 0.7 0.4 0.6 0.3 0.6 0.4 0.6 0.5 1.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 -0.0 0.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 z';
14
+ export const pathAnimatableSmallDiamond = 'm37.4 24.0 -0.1 0.7 -0.1 0.7 -0.3 0.7 -0.3 0.6 -0.5 0.6 -0.4 0.5 -0.6 0.8 -0.3 0.5 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.6 0.8 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.6 0.7 -0.5 0.7 -0.5 0.6 -0.5 0.7 -0.6 0.7 -0.6 0.7 -0.8 0.5 -0.7 0.4 -0.8 0.2 -0.9 0.1 -0.0 -0.0 -0.9 -0.1 -0.8 -0.2 -0.7 -0.4 -0.8 -0.5 -0.6 -0.7 -0.6 -0.7 -0.5 -0.7 -0.5 -0.6 -0.5 -0.7 -0.4 -0.5 -0.6 -0.7 -0.3 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.3 -0.5 -0.4 -0.4 -0.6 -0.8 -0.3 -0.5 -0.4 -0.5 -0.4 -0.4 -0.3 -0.5 -0.6 -0.7 -0.4 -0.6 -0.5 -0.6 -0.3 -0.6 -0.3 -0.7 -0.1 -0.7 -0.1 -0.7 -0.0 -0.0 0.1 -0.7 0.1 -0.7 0.3 -0.7 0.3 -0.6 0.5 -0.6 0.4 -0.5 0.6 -0.8 0.3 -0.5 0.4 -0.5 0.4 -0.4 0.3 -0.5 0.6 -0.8 0.4 -0.4 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.6 -0.7 0.5 -0.7 0.5 -0.6 0.5 -0.7 0.6 -0.7 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.8 -0.2 0.9 -0.1 0.0 0.0 0.9 0.1 0.8 0.2 0.7 0.4 0.8 0.5 0.6 0.7 0.6 0.7 0.5 0.7 0.5 0.6 0.5 0.7 0.4 0.5 0.6 0.7 0.3 0.5 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.4 0.6 0.8 0.3 0.5 0.4 0.4 0.4 0.5 0.3 0.5 0.6 0.7 0.4 0.6 0.5 0.6 0.3 0.6 0.3 0.7 0.1 0.7 0.1 0.7 z';
15
+ export const pathAnimatableSmallClamshell = 'm42.6 24.0 -0.1 1.0 -0.2 0.9 -0.5 0.9 -0.5 0.9 -0.4 0.9 -0.5 0.8 -0.5 0.8 -0.5 0.8 -0.4 0.7 -0.8 1.5 -0.5 0.8 -0.5 0.6 -0.2 0.4 -0.4 0.3 -0.8 0.6 -0.8 0.4 -0.8 0.2 -1.0 0.2 -1.0 -0.0 -0.9 -0.0 -1.1 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.1 -0.0 -0.9 -0.0 -1.0 -0.0 -0.9 -0.2 -0.9 -0.2 -0.8 -0.4 -0.7 -0.6 -0.7 -0.6 -0.0 -0.0 -0.5 -0.8 -0.5 -0.7 -0.8 -1.5 -0.4 -0.7 -0.5 -0.8 -0.5 -0.8 -0.5 -0.8 -0.4 -0.9 -0.5 -0.9 -0.5 -0.9 -0.2 -0.9 -0.1 -1.0 -0.0 -0.0 0.1 -1.0 0.2 -0.9 0.5 -0.9 0.5 -0.9 0.4 -0.9 0.5 -0.8 0.5 -0.8 0.5 -0.8 0.4 -0.7 0.8 -1.5 0.5 -0.7 0.5 -0.8 0.0 -0.0 0.6 -0.6 0.8 -0.6 0.8 -0.4 0.8 -0.2 1.0 -0.2 1.0 0.0 0.9 0.0 1.1 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 1.1 0.0 0.9 0.0 1.0 0.0 0.9 0.2 0.9 0.2 0.8 0.4 0.7 0.6 0.7 0.6 0.0 0.0 0.5 0.8 0.5 0.7 0.8 1.5 0.4 0.7 0.5 0.8 0.5 0.8 0.5 0.8 0.4 0.9 0.5 0.9 0.5 0.9 0.2 0.9 0.1 1.0 z';
16
+ export const pathAnimatableSmallPentagon = 'm38.9 24.2 -0.2 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.3 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.4 1.0 -0.4 0.8 -0.4 0.8 -0.6 0.6 -0.7 0.5 0.0 0.1 -0.7 0.4 -0.8 0.3 -0.8 0.3 -0.9 0.1 -1.1 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -1.1 -0.0 -0.9 -0.1 -0.8 -0.3 -0.8 -0.3 -0.7 -0.5 -0.1 0.0 -0.6 -0.5 -0.6 -0.7 -0.4 -0.7 -0.4 -0.8 -0.4 -1.0 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -1.1 -0.2 -0.9 -0.0 -0.8 0.0 -0.9 0.2 -0.8 0.1 -0.1 0.3 -0.7 0.4 -0.8 0.6 -0.6 0.6 -0.6 0.9 -0.7 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.9 -0.7 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.8 -0.0 0.1 -0.0 0.9 0.0 0.8 0.2 0.8 0.3 0.8 0.4 0.9 0.7 0.6 0.5 0.7 0.4 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.4 0.6 0.5 0.9 0.7 0.6 0.6 0.6 0.7 0.4 0.7 0.3 0.7 0.0 0.1 0.2 0.8 0.1 0.9 -0.0 0.9 -0.2 0.8 -0.3 1.1 z';
17
+ export const pathAnimatableSmallGem = 'm38.0 24.6 0.1 0.8 0.2 0.8 0.1 0.8 0.1 0.9 0.1 0.8 -0.0 0.9 -0.1 0.8 -0.3 0.8 -0.3 0.8 -0.3 0.5 -0.2 0.3 -0.5 0.6 -0.6 0.6 -0.7 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.4 -0.8 0.3 -0.6 0.3 -0.8 0.3 -1.1 0.5 -0.8 0.4 -0.7 0.3 -0.7 0.3 -0.7 0.3 -0.8 0.2 -0.8 0.2 -0.8 0.1 -0.0 -0.0 -0.8 -0.1 -0.8 -0.1 -0.7 -0.3 -0.8 -0.3 -0.7 -0.3 -0.7 -0.3 -0.8 -0.4 -1.1 -0.5 -0.8 -0.3 -0.6 -0.3 -0.8 -0.3 -0.7 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -0.4 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.1 -0.3 -0.3 -0.5 -0.3 -0.8 -0.3 -0.8 -0.1 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.9 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.1 -0.7 0.1 -0.8 0.1 -0.6 0.2 -1.4 0.1 -0.6 0.1 -0.8 0.1 -0.7 0.2 -0.7 0.3 -0.7 0.1 -0.1 0.3 -0.6 0.5 -0.6 0.5 -0.6 0.6 -0.4 0.5 -0.5 0.7 -0.5 0.6 -0.3 0.5 -0.4 1.0 -0.8 0.6 -0.4 0.6 -0.4 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.4 0.7 -0.2 0.8 -0.2 0.8 -0.0 0.0 -0.0 0.8 0.0 0.8 0.2 0.7 0.2 0.7 0.4 0.7 0.4 0.6 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.4 0.6 0.4 1.0 0.8 0.5 0.4 0.6 0.3 0.7 0.5 0.5 0.5 0.6 0.4 0.5 0.6 0.4 0.6 0.4 0.6 0.1 0.1 0.3 0.7 0.2 0.7 0.1 0.7 0.1 0.8 0.1 0.6 0.2 1.4 0.1 0.6 0.1 0.8 z';
18
+ export const pathAnimatableSmallVerySunny = 'm40.0 24.0 -0.1 0.8 -0.4 0.8 -0.8 0.7 -1.0 0.6 -0.9 0.6 -0.7 0.5 -0.6 1.1 -0.1 0.7 0.1 0.8 0.2 1.0 0.3 1.1 0.1 1.1 -0.3 0.8 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.8 0.3 -1.1 -0.1 -1.1 -0.3 -1.0 -0.2 -0.8 -0.1 -0.7 0.1 -1.1 0.6 -0.5 0.7 -0.6 0.9 -0.5 0.9 -0.8 0.9 -0.7 0.4 -0.9 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.4 -0.7 -0.8 -0.6 -1.0 -0.6 -0.9 -0.5 -0.7 -1.1 -0.6 -0.7 -0.1 -0.8 0.1 -1.0 0.2 -1.1 0.3 -1.1 0.1 -0.8 -0.3 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.3 -0.8 0.1 -1.1 0.3 -1.1 0.2 -1.0 0.1 -0.8 -0.1 -0.7 -0.6 -1.1 -0.7 -0.5 -0.9 -0.6 -1.0 -0.6 -0.8 -0.7 -0.4 -0.8 -0.1 -0.7 -0.0 -0.1 0.1 -0.8 0.4 -0.8 0.8 -0.7 1.0 -0.6 0.9 -0.6 0.7 -0.5 0.6 -1.1 0.1 -0.7 -0.1 -0.8 -0.2 -1.0 -0.3 -1.1 -0.1 -1.1 0.3 -0.8 0.4 -0.7 0.1 -0.0 0.7 -0.5 0.8 -0.3 1.1 0.1 1.1 0.3 1.0 0.2 0.8 0.1 0.7 -0.1 1.1 -0.6 0.5 -0.7 0.6 -0.9 0.6 -1.0 0.7 -0.8 0.8 -0.4 0.7 -0.1 0.1 -0.0 0.8 0.1 0.8 0.4 0.7 0.8 0.6 1.0 0.6 0.9 0.5 0.7 1.1 0.6 0.7 0.1 0.8 -0.1 1.0 -0.2 1.1 -0.3 1.1 -0.1 0.8 0.3 0.7 0.5 0.0 0.0 0.5 0.7 0.3 0.8 -0.1 1.1 -0.3 1.1 -0.2 1.0 -0.1 0.8 0.1 0.7 0.6 1.1 0.7 0.5 0.9 0.6 0.9 0.5 0.9 0.8 0.4 0.7 0.1 0.9 z';
19
+ export const pathAnimatableSmallSunny = 'm40.0 24.0 -0.1 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.6 -0.6 0.7 -0.5 0.6 -0.7 1.2 -0.1 0.7 -0.1 0.8 -0.0 0.9 -0.1 0.9 -0.1 0.9 -0.2 0.9 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.9 0.2 -0.9 0.1 -0.9 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -1.2 0.7 -0.6 0.5 -0.7 0.6 -0.6 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.5 -0.8 -0.6 -0.6 -0.6 -0.7 -0.6 -0.6 -0.5 -1.2 -0.7 -0.7 -0.1 -0.8 -0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.2 -0.7 -0.5 -0.0 0.0 -0.5 -0.7 -0.2 -0.9 -0.1 -0.9 -0.1 -0.9 -0.0 -0.8 -0.1 -0.8 -0.1 -0.8 -0.7 -1.2 -0.5 -0.6 -0.6 -0.7 -0.6 -0.6 -0.6 -0.8 -0.5 -0.8 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.7 -1.2 0.1 -0.7 0.1 -0.8 0.0 -0.9 0.1 -0.9 0.1 -0.9 0.2 -0.9 0.5 -0.7 -0.0 -0.0 0.7 -0.5 0.9 -0.2 0.9 -0.1 0.9 -0.1 0.8 -0.0 0.8 -0.1 0.8 -0.1 1.2 -0.7 0.6 -0.5 0.7 -0.6 0.6 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.1 0.0 -0.0 0.8 0.1 0.8 0.5 0.8 0.6 0.6 0.6 0.7 0.6 0.6 0.5 1.2 0.7 0.7 0.1 0.8 0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.2 0.7 0.5 0.0 -0.0 0.5 0.7 0.2 0.9 0.1 0.9 0.1 0.9 0.0 0.8 0.1 0.8 0.1 0.8 0.7 1.2 0.5 0.6 0.6 0.7 0.6 0.6 0.6 0.8 0.5 0.8 0.1 0.8 z';
20
+ export const pathAnimatableSmallFourSidedCookie = 'm36.9 24.6 0.1 0.7 0.2 0.8 0.2 0.7 0.4 0.9 0.4 0.9 0.2 0.9 0.1 1.0 0.1 0.9 -0.1 0.9 -0.3 0.9 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.9 0.3 -0.9 0.1 -0.9 -0.1 -1.0 -0.1 -0.9 -0.2 -0.9 -0.4 -0.9 -0.4 -0.7 -0.2 -0.8 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.8 0.2 -0.7 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -1.0 0.1 -0.9 0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.6 -0.6 -0.1 -0.1 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -0.7 0.2 -0.8 0.1 -0.7 -0.0 -1.2 -0.1 -0.7 -0.2 -0.8 -0.2 -0.7 -0.4 -0.9 -0.4 -0.9 -0.2 -0.9 -0.1 -1.0 -0.1 -0.9 0.1 -0.9 0.3 -0.9 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.1 -0.1 0.6 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.3 0.9 -0.1 0.9 0.1 1.0 0.1 0.9 0.2 0.9 0.4 0.9 0.4 0.7 0.2 0.8 0.2 0.7 0.1 1.2 -0.0 0.7 -0.1 0.8 -0.2 0.7 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 1.0 -0.1 0.9 -0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.5 0.6 0.6 0.1 0.1 0.6 0.6 0.5 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 0.7 -0.2 0.8 -0.1 0.7 z';
21
+ export const pathAnimatableSmallSixSidedCookie = 'm38.3 24.7 0.2 0.8 0.1 0.8 0.2 0.8 -0.0 0.8 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.7 -0.4 0.8 -0.0 0.0 -0.5 0.7 -0.5 0.7 -0.6 0.5 -0.6 0.6 -0.7 0.4 -0.7 0.4 -0.8 0.3 -0.8 0.2 -0.7 0.3 -1.3 0.7 -0.6 0.5 -0.6 0.6 -0.6 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.2 -0.9 0.2 -0.8 -0.0 -0.0 -0.0 -0.8 -0.0 -0.9 -0.2 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.5 -1.3 -0.7 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.7 -0.0 -0.0 -0.4 -0.8 -0.3 -0.7 -0.2 -0.8 -0.1 -0.8 -0.1 -0.9 0.0 -0.8 0.2 -0.8 0.1 -0.8 0.2 -0.8 -0.0 -1.4 -0.2 -0.8 -0.1 -0.8 -0.2 -0.8 0.0 -0.8 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.0 -0.1 0.4 -0.6 0.6 -0.7 0.6 -0.5 0.6 -0.6 0.7 -0.4 0.7 -0.4 0.8 -0.3 0.8 -0.3 0.7 -0.2 1.3 -0.8 0.6 -0.4 0.6 -0.6 0.6 -0.5 0.7 -0.4 0.8 -0.4 0.7 -0.3 0.8 -0.2 0.9 -0.2 0.8 0.0 0.0 0.0 0.8 0.0 0.9 0.2 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.5 1.3 0.7 0.7 0.3 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.7 0.4 0.7 0.0 0.0 0.4 0.8 0.3 0.7 0.2 0.8 0.1 0.8 0.1 0.9 -0.0 0.8 -0.2 0.8 -0.1 0.8 -0.2 0.8 z';
22
+ export const pathAnimatableSmallSevenSidedCookie = 'm39.7 24.8 0.2 0.9 0.1 0.8 -0.0 0.9 -0.2 0.8 -0.0 0.2 -0.3 0.7 -0.3 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.5 -1.1 1.2 -0.4 0.7 -0.3 0.8 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.7 0.6 -0.7 0.5 -0.7 0.3 -0.1 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.0 -0.9 -0.0 -0.8 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.2 -0.9 0.0 -0.9 -0.1 -0.8 -0.1 -0.9 -0.3 -0.1 -0.1 -0.7 -0.3 -0.7 -0.6 -0.7 -0.5 -0.5 -0.7 -0.5 -0.8 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -1.0 -1.1 -0.7 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.5 -0.8 -0.3 -0.7 -0.3 -0.6 -0.0 -0.3 -0.2 -0.8 -0.0 -0.9 0.1 -0.8 0.2 -0.9 0.2 -0.8 0.5 -0.8 0.3 -0.8 0.3 -0.7 0.3 -1.4 -0.0 -0.9 -0.0 -0.8 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.3 -0.8 0.4 -0.6 0.1 -0.2 0.5 -0.5 0.6 -0.6 0.7 -0.5 0.8 -0.4 0.7 -0.3 0.9 -0.2 0.8 -0.2 0.8 -0.2 1.3 -0.6 0.6 -0.4 0.7 -0.6 0.6 -0.5 0.7 -0.5 0.7 -0.3 0.8 -0.3 0.9 -0.1 0.8 -0.1 0.0 -0.0 0.9 0.1 0.7 0.1 0.9 0.3 0.7 0.3 0.7 0.5 0.7 0.5 0.6 0.6 0.6 0.4 1.3 0.6 0.8 0.2 0.8 0.2 0.8 0.2 0.8 0.3 0.8 0.4 0.7 0.5 0.6 0.5 0.5 0.7 0.0 0.0 0.5 0.8 0.3 0.7 0.3 0.8 0.1 0.9 0.0 0.8 0.0 0.8 0.0 0.9 0.3 1.4 0.3 0.7 0.3 0.8 0.5 0.8 z';
23
+ export const pathAnimatableSmallNineSidedCookie = 'm39.9 24.0 -0.3 0.8 -0.4 0.8 -0.3 0.8 -0.2 1.5 0.1 0.9 0.1 0.9 -0.1 0.9 -0.2 0.8 -0.3 0.8 -0.2 0.4 -0.3 0.4 -0.5 0.7 -0.7 0.5 -0.8 0.4 -0.8 0.4 -0.8 0.4 -1.2 1.0 -0.5 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.8 0.4 -0.4 0.2 -0.5 0.1 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.1 -0.8 0.2 -0.9 0.3 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.5 -0.1 -0.4 -0.2 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.5 -0.8 -0.5 -0.7 -1.2 -1.0 -0.7 -0.4 -0.9 -0.4 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.3 -0.4 -0.2 -0.4 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.9 0.1 -0.9 -0.2 -1.5 -0.3 -0.8 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.7 -0.0 -0.2 0.2 -0.8 0.4 -0.8 0.5 -0.7 0.6 -0.6 0.7 -0.7 0.5 -0.6 0.6 -1.3 0.3 -0.9 0.2 -0.8 0.3 -0.8 0.5 -0.7 0.5 -0.6 0.2 -0.2 0.5 -0.4 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.9 -0.0 0.8 -0.1 1.4 -0.5 0.7 -0.4 0.7 -0.5 0.7 -0.5 0.8 -0.3 0.8 -0.2 0.9 -0.1 0.0 -0.0 0.8 0.1 0.9 0.2 0.8 0.3 0.7 0.5 0.7 0.5 0.7 0.4 1.4 0.5 0.8 0.1 0.9 0.0 0.9 0.2 0.8 0.3 0.7 0.4 0.5 0.4 0.2 0.1 0.5 0.7 0.5 0.7 0.3 0.8 0.2 0.8 0.3 0.9 0.6 1.3 0.5 0.6 0.7 0.7 0.6 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.0 0.2 0.1 0.7 -0.1 0.9 z';
24
+ export const pathAnimatableSmallTwelveSidedCookie = 'm40.0 24.0 -0.1 0.8 -0.3 0.9 -0.6 0.7 -0.5 0.7 -0.4 1.4 0.1 0.9 0.1 0.9 -0.1 0.9 -0.3 0.8 -0.1 0.0 -0.5 0.7 -0.6 0.5 -0.9 0.3 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.4 0.8 -0.5 0.7 -0.7 0.6 -0.0 -0.0 -0.8 0.3 -0.9 0.1 -0.9 -0.1 -0.8 -0.1 -1.5 0.4 -0.7 0.5 -0.8 0.6 -0.7 0.3 -0.9 0.1 -0.0 0.0 -0.9 -0.1 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -1.4 -0.4 -0.9 0.1 -0.9 0.1 -0.9 -0.1 -0.8 -0.3 -0.0 -0.1 -0.7 -0.5 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -1.1 -1.1 -0.8 -0.4 -0.8 -0.3 -0.7 -0.5 -0.5 -0.7 -0.1 -0.0 -0.3 -0.8 -0.1 -0.9 0.2 -0.9 0.1 -0.9 -0.4 -1.4 -0.6 -0.7 -0.5 -0.7 -0.4 -0.9 -0.1 -0.7 0.0 -0.1 0.1 -0.8 0.4 -0.9 0.5 -0.7 0.6 -0.7 0.4 -1.4 -0.1 -0.9 -0.2 -0.9 0.1 -0.9 0.3 -0.8 0.0 -0.0 0.6 -0.7 0.7 -0.5 0.8 -0.3 0.8 -0.4 1.1 -1.1 0.4 -0.8 0.3 -0.8 0.5 -0.7 0.7 -0.5 0.0 -0.1 0.8 -0.3 0.9 -0.1 0.9 0.1 0.9 0.1 1.4 -0.3 0.7 -0.6 0.7 -0.5 0.9 -0.4 0.7 -0.1 0.1 0.0 0.8 0.1 0.9 0.4 0.7 0.5 0.7 0.6 1.4 0.3 0.9 -0.1 0.9 -0.1 0.9 0.1 0.8 0.3 0.0 0.0 0.7 0.6 0.5 0.7 0.4 0.8 0.3 0.8 1.1 1.1 0.8 0.4 0.8 0.3 0.8 0.5 0.4 0.7 0.1 -0.0 0.3 0.8 0.1 0.9 -0.1 0.9 -0.1 0.9 0.4 1.4 0.5 0.7 0.6 0.7 0.3 0.9 0.1 0.7 z';
25
+ export const pathAnimatableSmallGhostish = 'm39.0 24.6 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.6 0.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 -0.0 1.1 -0.2 1.0 -0.3 1.0 -0.6 0.8 -0.5 0.7 -0.1 0.1 -0.8 0.6 -0.9 0.5 -0.9 0.4 -1.0 0.2 -1.1 -0.0 -1.1 -0.2 -1.1 -0.4 -1.1 -0.5 -1.0 -0.5 -0.9 -0.5 -0.8 -0.3 -0.7 -0.2 -0.6 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.6 0.2 -0.7 0.2 -0.8 0.3 -0.9 0.4 -1.0 0.6 -1.1 0.5 -1.1 0.4 -1.1 0.2 -1.1 -0.0 -1.0 -0.2 -0.9 -0.4 -0.9 -0.5 -0.8 -0.6 -0.1 -0.1 -0.5 -0.7 -0.6 -0.8 -0.3 -1.0 -0.2 -1.0 0.0 -1.1 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -0.6 0.0 -1.0 0.0 -0.7 0.0 -1.0 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.8 0.2 -0.7 0.3 -0.7 0.4 -0.8 0.3 -0.6 0.1 -0.1 0.4 -0.7 0.4 -0.7 0.5 -0.6 0.5 -0.6 0.6 -0.5 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.3 0.8 -0.2 0.7 -0.2 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.7 -0.1 1.6 0.0 0.7 0.1 0.8 0.1 0.8 0.1 0.8 0.2 0.7 0.2 0.8 0.2 0.7 0.3 0.7 0.4 0.7 0.3 0.7 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.6 0.6 0.5 0.5 0.6 0.5 0.6 0.4 0.7 0.4 0.7 0.1 0.1 0.3 0.6 0.4 0.8 0.3 0.7 0.2 0.7 0.2 0.8 0.2 0.8 0.1 0.8 0.1 0.8 -0.0 0.7 z';
26
+ export const pathAnimatableSmallFourLeafClover = 'm37.2 24.7 0.5 0.7 0.4 0.8 0.3 0.8 0.2 0.9 0.1 0.9 0.1 0.8 -0.0 0.9 -0.2 1.0 -0.1 0.8 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.7 0.5 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.8 0.2 -1.0 0.1 -0.8 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -0.8 -0.4 -0.8 -0.5 -1.3 0.0 -0.7 0.5 -0.8 0.4 -0.8 0.3 -0.9 0.3 -0.9 0.1 -0.8 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.3 -0.8 -0.5 -0.7 -0.5 -0.7 -0.6 0.0 -0.1 -0.6 -0.6 -0.5 -0.8 -0.5 -0.7 -0.3 -0.8 -0.3 -0.9 -0.2 -0.9 -0.2 -0.8 0.0 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.4 -0.8 0.5 -0.7 -0.0 -1.4 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.9 -0.1 -0.8 -0.1 -0.9 0.0 -0.9 0.2 -1.0 0.1 -0.8 0.3 -0.8 0.4 -0.9 0.5 -0.8 0.5 -0.7 0.6 -0.7 0.1 0.0 0.6 -0.6 0.8 -0.5 0.7 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.2 0.8 -0.1 1.0 0.0 0.8 0.1 0.9 0.1 0.9 0.3 0.8 0.3 0.8 0.4 0.7 0.5 1.3 -0.0 0.8 -0.5 0.8 -0.4 0.8 -0.3 0.9 -0.3 0.9 -0.1 0.9 -0.1 0.9 0.0 0.9 0.1 0.8 0.3 0.9 0.3 0.8 0.3 0.7 0.5 0.8 0.5 0.6 0.6 0.1 0.0 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.8 0.2 0.9 0.3 0.9 0.1 0.8 -0.0 1.0 -0.1 0.8 -0.1 0.9 -0.2 0.9 -0.3 0.8 -0.4 0.8 -0.5 0.7 z';
27
+ export const pathAnimatableSmallEightLeafClover = 'm39.3 24.8 0.4 0.8 0.2 0.9 0.2 0.9 -0.0 0.9 -0.1 0.9 -0.2 0.9 -0.2 0.4 -0.1 0.4 -0.5 0.8 -0.6 0.7 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.5 0.9 -0.5 0.7 -0.7 0.6 -0.6 0.6 -0.8 0.4 -0.2 0.1 -0.7 0.2 -0.8 0.2 -0.9 0.1 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -1.6 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.2 -0.9 -0.0 -0.9 -0.1 -0.8 -0.2 -0.4 -0.2 -0.5 -0.2 -0.7 -0.4 -0.7 -0.6 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.4 -0.8 -1.1 -1.1 -0.9 -0.3 -0.7 -0.5 -0.8 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.8 -0.1 -0.2 -0.2 -0.6 -0.2 -0.9 -0.1 -0.8 0.0 -1.0 0.2 -0.8 0.2 -0.9 0.4 -0.9 -0.0 -1.5 -0.4 -0.8 -0.2 -0.9 -0.2 -0.8 -0.0 -0.9 0.1 -0.9 0.2 -0.9 0.2 -0.6 0.1 -0.2 0.4 -0.8 0.6 -0.7 0.6 -0.6 0.8 -0.5 0.8 -0.5 0.8 -0.3 1.1 -1.1 0.4 -0.8 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.7 -0.6 0.7 -0.4 0.5 -0.3 0.4 -0.1 0.9 -0.2 0.8 -0.1 0.9 0.0 0.9 0.2 0.9 0.2 0.8 0.3 1.5 0.1 0.9 -0.3 0.9 -0.3 0.9 -0.2 0.9 -0.0 0.9 0.1 0.8 0.1 0.7 0.3 0.2 0.1 0.8 0.4 0.7 0.6 0.6 0.6 0.5 0.7 0.5 0.8 0.3 0.9 1.1 1.1 0.8 0.4 0.8 0.4 0.8 0.5 0.6 0.6 0.6 0.7 0.5 0.8 0.1 0.4 0.2 0.4 0.2 0.9 0.1 0.9 -0.0 0.9 -0.2 0.9 -0.2 0.9 -0.4 0.8 z';
28
+ export const pathAnimatableSmallFlower = 'm40.0 24.0 -0.2 0.8 -0.6 0.8 -0.8 0.7 -0.9 0.6 -1.1 0.5 -1.0 0.3 -0.9 0.3 0.2 1.5 0.5 0.9 0.4 1.1 0.2 1.1 0.1 1.0 -0.1 1.0 -0.5 0.7 -0.0 0.0 -0.7 0.5 -1.0 0.1 -1.0 -0.1 -1.1 -0.3 -1.1 -0.3 -1.0 -0.5 -0.9 -0.5 -0.8 1.2 -0.3 1.0 -0.5 1.0 -0.6 1.0 -0.7 0.9 -0.8 0.5 -0.8 0.2 0.0 -0.0 -0.8 -0.2 -0.8 -0.5 -0.7 -0.9 -0.6 -1.0 -0.5 -1.0 -0.3 -1.0 -0.8 -1.2 -0.9 0.5 -1.0 0.5 -1.1 0.3 -1.1 0.3 -1.0 0.1 -1.0 -0.1 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.1 -0.9 0.1 -1.1 0.2 -1.1 0.4 -1.1 0.5 -0.9 0.5 -1.0 -1.3 -0.8 -0.9 -0.3 -1.1 -0.5 -0.9 -0.6 -0.9 -0.7 -0.5 -0.8 -0.2 -0.8 0.0 0.0 0.2 -0.8 0.6 -0.8 0.8 -0.7 0.9 -0.6 1.0 -0.4 1.1 -0.4 1.2 -0.8 -0.5 -0.9 -0.5 -1.0 -0.3 -1.1 -0.3 -1.1 -0.1 -1.0 0.1 -1.0 0.5 -0.7 0.0 -0.0 0.7 -0.5 0.9 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.0 0.5 1.4 0.2 0.3 -1.0 0.3 -0.9 0.5 -1.1 0.6 -0.9 0.7 -0.9 0.8 -0.5 0.8 -0.2 0.0 0.0 0.8 0.2 0.8 0.5 0.7 0.9 0.6 0.9 0.5 1.1 0.3 0.9 0.3 1.0 1.5 -0.2 0.9 -0.5 1.1 -0.4 1.1 -0.2 1.1 -0.1 0.9 0.1 0.7 0.5 0.0 0.0 0.5 0.7 0.1 1.0 -0.1 1.0 -0.2 1.1 -0.4 1.1 -0.5 1.0 -0.5 0.8 1.3 0.9 1.0 0.4 1.0 0.4 0.9 0.6 0.9 0.7 0.5 0.8 0.2 0.8 z';
29
+ export const pathAnimatableSmallPuffy = 'm42.2 24.1 -0.1 0.9 -0.3 0.9 -0.6 0.9 -0.9 0.7 -1.4 0.5 0.1 1.8 0.3 1.0 -0.1 0.9 -0.2 0.9 -0.4 0.7 -0.1 0.2 -0.5 0.6 -0.8 0.7 -0.8 0.4 -1.1 0.2 -1.2 -0.1 -2.2 -0.4 -0.2 0.9 -0.4 0.8 -0.5 0.6 -0.7 0.5 -0.7 0.3 -0.0 0.1 -0.8 0.2 -0.8 0.0 -0.8 -0.1 -0.8 -0.2 -0.8 -0.4 -0.7 -0.7 -1.4 0.1 -0.7 0.6 -0.8 0.4 -0.8 0.3 -0.8 0.0 -0.8 -0.1 -0.7 -0.2 -0.1 -0.0 -0.7 -0.4 -0.6 -0.5 -0.5 -0.6 -0.4 -0.8 -0.9 -1.1 -1.6 0.7 -1.2 0.1 -1.0 -0.3 -0.9 -0.4 -0.7 -0.6 -0.6 -0.7 -0.0 -0.1 -0.4 -0.7 -0.2 -0.9 -0.0 -1.0 0.2 -1.0 0.0 -1.7 -1.3 -0.5 -0.9 -0.8 -0.6 -0.8 -0.3 -1.0 -0.1 -0.7 -0.0 -0.4 0.1 -0.8 0.3 -0.9 0.5 -0.8 0.8 -0.8 1.3 -0.6 0.3 -1.6 -0.3 -1.0 -0.0 -1.0 0.2 -0.9 0.4 -0.8 -0.0 -0.1 0.6 -0.7 0.6 -0.6 0.9 -0.4 1.0 -0.3 1.2 0.1 1.5 0.6 1.0 -0.9 0.4 -0.8 0.6 -0.7 0.6 -0.5 0.6 -0.4 0.2 -0.1 0.7 -0.1 0.7 -0.1 0.9 0.0 0.8 0.2 0.8 0.5 0.7 0.6 1.4 0.1 0.7 -0.7 0.8 -0.4 0.8 -0.2 0.8 -0.1 0.8 0.1 0.8 0.2 0.1 -0.0 0.7 0.4 0.6 0.5 0.5 0.6 0.4 0.8 0.9 1.2 1.6 -0.8 1.2 -0.1 1.0 0.3 0.9 0.4 0.7 0.6 0.6 0.7 0.0 0.1 0.4 0.8 0.2 0.9 0.0 1.0 -0.3 1.0 0.3 1.6 1.2 0.6 0.9 0.7 0.5 0.9 0.3 0.9 0.1 0.8 z';
30
+ export const pathAnimatableSmallPuffyDiamond = 'm40.0 24.0 -0.1 0.9 -0.2 0.8 -0.4 0.7 -0.5 0.8 -0.8 0.6 -0.8 0.5 -1.2 0.3 -1.7 0.6 0.0 0.7 -0.1 0.7 -0.2 0.7 -0.2 0.6 -0.4 0.5 -0.4 0.5 -0.1 0.1 -0.5 0.4 -0.5 0.4 -0.6 0.3 -0.7 0.1 -0.7 0.1 -0.7 0.0 -0.6 1.6 -0.3 1.2 -0.5 0.9 -0.6 0.7 -0.7 0.6 -0.9 0.4 -0.7 0.2 -0.9 0.1 -0.1 0.0 -0.8 -0.1 -0.8 -0.2 -0.7 -0.3 -0.8 -0.6 -0.6 -0.7 -0.5 -0.8 -0.4 -1.2 -0.5 -1.8 -0.7 0.0 -0.7 -0.1 -0.7 -0.2 -0.6 -0.2 -0.6 -0.4 -0.4 -0.4 -0.1 -0.1 -0.4 -0.5 -0.4 -0.5 -0.2 -0.7 -0.2 -0.6 -0.1 -0.7 0.0 -0.7 -1.7 -0.6 -1.2 -0.3 -0.9 -0.5 -0.7 -0.7 -0.5 -0.6 -0.4 -0.8 -0.2 -0.9 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.2 -0.9 0.4 -0.7 0.5 -0.8 0.7 -0.6 0.9 -0.5 1.2 -0.3 1.7 -0.6 0.0 -0.7 0.1 -0.7 0.2 -0.7 0.3 -0.5 0.3 -0.6 0.4 -0.5 0.1 -0.0 0.5 -0.5 0.6 -0.3 0.6 -0.3 0.6 -0.2 0.7 -0.1 0.7 0.0 0.5 -1.8 0.4 -1.1 0.5 -0.9 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.9 -0.2 0.7 -0.1 0.1 0.0 0.9 0.1 0.8 0.3 0.7 0.3 0.7 0.6 0.7 0.7 0.5 0.9 0.3 1.2 0.6 1.6 0.7 0.0 0.7 0.1 0.6 0.2 0.6 0.3 0.6 0.3 0.5 0.5 0.1 -0.0 0.4 0.5 0.3 0.5 0.3 0.7 0.2 0.6 0.1 0.7 -0.0 0.7 1.7 0.6 1.2 0.3 0.9 0.5 0.7 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.1 0.9 z';
31
+ export const pathAnimatableSmallBun = 'm34.6 24.5 1.2 0.7 0.9 0.8 0.7 0.9 0.6 0.8 0.5 1.0 0.3 1.0 0.2 1.0 0.1 1.0 -0.1 1.0 -0.2 0.9 -0.3 0.9 -0.4 0.9 -0.5 0.8 -0.6 0.8 -0.5 0.5 -0.2 0.2 -0.8 0.6 -0.8 0.4 -0.9 0.4 -0.9 0.3 -1.0 0.2 -1.2 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -1.2 -0.0 -1.0 -0.2 -0.9 -0.3 -0.9 -0.3 -0.8 -0.5 -0.8 -0.6 -0.3 -0.3 -0.5 -0.4 -0.6 -0.7 -0.5 -0.9 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.0 -1.0 0.0 -1.0 0.2 -1.0 0.4 -1.0 0.4 -1.0 0.6 -0.9 0.8 -0.8 0.9 -0.8 1.1 -0.7 0.0 -1.0 -1.1 -0.7 -0.9 -0.8 -0.8 -0.9 -0.6 -0.8 -0.4 -1.0 -0.4 -1.0 -0.2 -1.0 -0.0 -1.0 0.1 -1.0 0.1 -0.9 0.3 -1.0 0.4 -0.8 0.6 -0.9 0.6 -0.7 0.4 -0.5 0.3 -0.2 0.8 -0.6 0.8 -0.5 0.9 -0.3 0.9 -0.3 1.0 -0.2 1.2 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 0.5 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.5 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 1.2 0.0 1.0 0.2 0.9 0.3 0.9 0.3 0.8 0.5 0.8 0.6 0.3 0.3 0.4 0.4 0.6 0.7 0.6 0.9 0.4 0.8 0.3 1.0 0.2 0.9 0.0 1.0 -0.0 1.0 -0.2 1.0 -0.3 1.0 -0.5 0.9 -0.6 1.0 -0.8 0.8 -0.9 0.8 -1.1 0.6 z';
32
+ export const pathAnimatableSmallHeart = 'm36.1 24.0 -0.6 0.6 -0.6 0.7 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.5 0.5 -0.2 0.2 -0.4 0.5 -0.2 0.3 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.3 0.4 -0.5 0.5 -0.3 0.4 -0.5 0.5 -0.4 0.6 -0.5 0.5 -0.4 0.6 -0.7 0.7 -0.6 0.7 -0.8 1.0 -0.0 -0.0 -0.8 -1.0 -0.6 -0.7 -0.7 -0.8 -0.4 -0.5 -0.5 -0.5 -0.4 -0.6 -0.5 -0.5 -0.3 -0.4 -0.5 -0.5 -0.3 -0.4 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.2 -0.3 -0.4 -0.4 -0.4 -0.5 -0.2 -0.3 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.5 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.7 -0.8 -0.6 -0.8 -0.7 -0.9 -0.5 -0.9 -0.5 -1.1 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.0 0.3 -0.9 0.5 -0.9 0.5 -0.8 0.1 -0.1 0.6 -0.7 0.8 -0.6 0.8 -0.5 0.9 -0.4 1.0 -0.2 1.0 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.1 0.7 1.1 1.1 0.9 1.1 0.9 0.9 0.6 0.7 0.5 0.6 0.5 0.5 0.8 0.0 0.5 -0.5 0.5 -0.6 0.6 -0.7 0.7 -0.8 1.1 -1.2 1.1 -1.0 1.1 -0.7 1.1 -0.5 1.1 -0.2 1.1 -0.1 1.0 0.1 1.0 0.3 0.9 0.3 0.8 0.5 0.8 0.7 0.6 0.6 0.1 0.1 0.5 0.8 0.4 0.9 0.4 0.9 0.2 1.0 -0.0 1.0 -0.1 1.0 -0.3 1.1 -0.5 0.9 -0.5 1.0 -0.7 0.9 -0.6 0.8 -0.7 0.8 z';
33
+ // Stats: ~1079 chars/shape avg (vs ~9000 for 720pt versions)
@@ -0,0 +1,38 @@
1
+ import type { TransitionOptions } from './transitionTypes.js';
2
+ type SharedAxisOptions = {
3
+ direction: 'X' | 'Y';
4
+ /**
5
+ * true if this element is on the top/left of things
6
+ * if it's first, then use transition: and set it to true
7
+ * if it's last, then use transition: and set it to false
8
+ * if it's in between, use separate in: and out: statements:
9
+ * > set it to false when it's interacting with the left side, and true when interacting with its right
10
+ * > in order to implement this, try something like using a prevPage variable:
11
+ * > ```
12
+ * > {:else if page == 1}
13
+ * > <div
14
+ * > in:sharedAxisTransition={{
15
+ * > direction: "X",
16
+ * > rightSeam: prevPage > 1, (if we're transitioning from a page on the right, rightseam is true)
17
+ * > }}
18
+ * > out:sharedAxisTransition={{
19
+ * > direction: "X",
20
+ * > rightSeam: page > 1, (if we're transitioning to a page on the right, rightseam is true)
21
+ * > }}
22
+ * > >
23
+ * > ```
24
+ *
25
+ * i went insane over figuring this out :)
26
+ */
27
+ rightSeam: boolean;
28
+ } | {
29
+ direction: 'Z';
30
+ leaving: boolean;
31
+ };
32
+ export declare const sharedAxisTransition: (node: Element, options: TransitionOptions & SharedAxisOptions) => {
33
+ delay: number | undefined;
34
+ duration: number;
35
+ easing: (t: number) => number;
36
+ css: (t: number, u: number) => string;
37
+ };
38
+ export {};
@@ -0,0 +1,23 @@
1
+ import { easeEmphasized } from './easing.js';
2
+ /* protip: set a background color on the items, and utilize position relative + absolute to let them overlap */
3
+ export const sharedAxisTransition = (node, options) => {
4
+ void node;
5
+ return {
6
+ delay: options.delay,
7
+ duration: options.duration ?? 500,
8
+ easing: options.easing ?? easeEmphasized,
9
+ css: (t, u) => {
10
+ const opacity = (t - 0.35) * (1 / 0.35);
11
+ if (options.direction == 'Z') {
12
+ const factor = options.leaving ? u * 0.1 + 1 : t * 0.2 + 0.8;
13
+ let css = `transform: scale(${factor.toFixed(3)});`;
14
+ if (!options.leaving)
15
+ css += `opacity: ${opacity.toFixed(3)};`;
16
+ return css;
17
+ }
18
+ const factor = u * (options.rightSeam ? -30 : 30);
19
+ return (`transform: translate${options.direction}(${factor.toFixed(3)}px);` +
20
+ `opacity: ${opacity.toFixed(3)}`);
21
+ }
22
+ };
23
+ };
@@ -0,0 +1,4 @@
1
+ export * from './containerTransform.js';
2
+ export * from './enterExit.js';
3
+ export * from './outroClass.js';
4
+ export * from './sharedAxisTransition.js';
@@ -0,0 +1,4 @@
1
+ export * from './containerTransform.js';
2
+ export * from './enterExit.js';
3
+ export * from './outroClass.js';
4
+ export * from './sharedAxisTransition.js';
@@ -0,0 +1,8 @@
1
+ import type { cubicOut } from 'svelte/easing';
2
+ export type TransitionMode = 'fade' | 'scale' | 'slide-up' | 'dialog' | 'dialog-m3';
3
+ export interface TransitionOptions {
4
+ delay?: number;
5
+ duration?: number;
6
+ easing?: typeof cubicOut;
7
+ mode?: TransitionMode;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,26 @@
1
+ <!--
2
+ @component
3
+ Badges communicate a notification count or status for an element.
4
+
5
+ Small badges are used for a general notification.
6
+ Large badges are used for specific counts.
7
+
8
+ @see https://m3.material.io/components/badges/overview
9
+ -->
10
+ <script lang="ts">
11
+ import clsx from 'clsx';
12
+ import { badge } from './theme.js';
13
+ import type { BadgeProps } from './types.js';
14
+
15
+ const { number, size = 'lg', class: className, ...restProps }: BadgeProps = $props();
16
+
17
+ const styling = $derived(badge({ size }));
18
+ </script>
19
+
20
+ {#if number}
21
+ <div class={clsx(styling, className)} {...restProps}>
22
+ {#if size != 'sm'}
23
+ {number > 99 ? '99+' : number}
24
+ {/if}
25
+ </div>
26
+ {/if}
@@ -0,0 +1,12 @@
1
+ import type { BadgeProps } from './types.js';
2
+ /**
3
+ * Badges communicate a notification count or status for an element.
4
+ *
5
+ * Small badges are used for a general notification.
6
+ * Large badges are used for specific counts.
7
+ *
8
+ * @see https://m3.material.io/components/badges/overview
9
+ */
10
+ declare const Badge: import("svelte").Component<BadgeProps, {}, "">;
11
+ type Badge = ReturnType<typeof Badge>;
12
+ export default Badge;
@@ -0,0 +1,3 @@
1
+ export * from './theme.js';
2
+ export * from './types.js';
3
+ export { default as Badge } from './Badge.svelte';
@@ -0,0 +1,6 @@
1
+ // THIS FILE IS AUTO-GENERATED BY scripts/generate-components-index.ts - DO NOT EDIT MANUALLY
2
+ // re-export TS/JS modules from this folder
3
+ export * from './theme.js';
4
+ export * from './types.js';
5
+ // default exports for components in this folder
6
+ export { default as Badge } from './Badge.svelte';
@@ -0,0 +1,16 @@
1
+ export declare const badge: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ sm: string;
4
+ lg: string;
5
+ };
6
+ }, undefined, "bg-md-sys-color-error text-md-sys-color-on-error absolute rounded-full md-sys-typescale-label-small inline-flex items-center justify-center", {
7
+ size: {
8
+ sm: string;
9
+ lg: string;
10
+ };
11
+ }, undefined, import("tailwind-variants").TVReturnType<{
12
+ size: {
13
+ sm: string;
14
+ lg: string;
15
+ };
16
+ }, undefined, "bg-md-sys-color-error text-md-sys-color-on-error absolute rounded-full md-sys-typescale-label-small inline-flex items-center justify-center", unknown, unknown, undefined>>;
@@ -0,0 +1,10 @@
1
+ import { tv } from 'tailwind-variants';
2
+ export const badge = tv({
3
+ base: 'bg-md-sys-color-error text-md-sys-color-on-error absolute rounded-full md-sys-typescale-label-small inline-flex items-center justify-center',
4
+ variants: {
5
+ size: {
6
+ sm: 'size-1.5 top-0 right-3',
7
+ lg: 'h-3 min-w-3 p-1 -top-1 right-1'
8
+ }
9
+ }
10
+ });
@@ -0,0 +1,18 @@
1
+ import type { HTMLAttributes } from 'svelte/elements';
2
+ import type { VariantProps } from 'tailwind-variants';
3
+ import type { badge } from './theme.js';
4
+ export type BadgeVariants = VariantProps<typeof badge>;
5
+ export type BadgeProps = BadgeVariants & HTMLAttributes<HTMLDivElement> & {
6
+ /**
7
+ * The size of the badge.
8
+ * - 'sm': Small badge, no number displayed.
9
+ * - 'lg': Large badge, displays number.
10
+ */
11
+ size?: BadgeVariants['size'];
12
+ /**
13
+ * The number to display in the badge.
14
+ * Values greater than 99 will be displayed as "99+".
15
+ * If size is 'sm', the number is not displayed.
16
+ */
17
+ number?: number;
18
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,53 @@
1
+ <!--
2
+ @component
3
+ Buttons help people take actions, such as sending an email, sharing a document, or liking a comment.
4
+
5
+ - Filled: High emphasis
6
+ - Tonal: Medium-high emphasis
7
+ - Outlined: Medium emphasis
8
+ - Text: Low emphasis
9
+ - Elevated: High emphasis
10
+
11
+ @see https://m3.material.io/components/all-buttons
12
+ -->
13
+ <script lang="ts">
14
+ import type { ButtonMDProps } from './types.js';
15
+ import { Icon, LoadingIndicator, Layer } from '../../utils/index.js';
16
+ import { button } from './theme.js';
17
+ import clsx from 'clsx';
18
+ import { Button, type ButtonRootProps } from 'bits-ui';
19
+
20
+ let {
21
+ children,
22
+ iconProps,
23
+ variant = 'filled',
24
+ color = 'default',
25
+ size = 'md',
26
+ shape = 'round',
27
+ disabled,
28
+ selected,
29
+ formaction,
30
+ loading,
31
+ class: className,
32
+ ...restProps
33
+ }: ButtonMDProps = $props();
34
+
35
+ const { base, icon } = $derived(button({ variant, color, shape, size, selected }));
36
+ const btnCls = $derived(base({ class: clsx(className) }));
37
+ </script>
38
+
39
+ <Button.Root {disabled} {formaction} class={btnCls} {...restProps as ButtonRootProps}>
40
+ {#if iconProps}
41
+ {#if loading}
42
+ <LoadingIndicator container={variant === 'filled'} class={icon()} />
43
+ {:else}
44
+ <Icon class={icon()} {...iconProps} />
45
+ {@render children?.()}
46
+ {/if}
47
+ {:else if loading}
48
+ <LoadingIndicator container={variant === 'filled'} />
49
+ {:else}
50
+ {@render children?.()}
51
+ {/if}
52
+ <Layer />
53
+ </Button.Root>
@@ -0,0 +1,16 @@
1
+ import type { ButtonMDProps } from './types.js';
2
+ import { Button } from 'bits-ui';
3
+ /**
4
+ * Buttons help people take actions, such as sending an email, sharing a document, or liking a comment.
5
+ *
6
+ * - Filled: High emphasis
7
+ * - Tonal: Medium-high emphasis
8
+ * - Outlined: Medium emphasis
9
+ * - Text: Low emphasis
10
+ * - Elevated: High emphasis
11
+ *
12
+ * @see https://m3.material.io/components/all-buttons
13
+ */
14
+ declare const Button: import("svelte").Component<ButtonMDProps, {}, "">;
15
+ type Button = ReturnType<typeof Button>;
16
+ export default Button;
@@ -0,0 +1,79 @@
1
+ <!--
2
+ @component
3
+ Icon buttons help people take minor actions and are often used in app bars.
4
+
5
+ - Standard: Low emphasis
6
+ - Filled: High emphasis
7
+ - Filled Tonal: Medium-high emphasis
8
+ - Outlined: Medium emphasis
9
+
10
+ @see https://m3.material.io/components/icon-buttons/overview
11
+ -->
12
+ <script lang="ts">
13
+ import type { ButtonIconProps } from './types.js';
14
+ import { Icon, LoadingIndicator, Layer } from '../../utils/index.js';
15
+ import { buttonIcon } from './theme.js';
16
+ import clsx from 'clsx';
17
+ import Tooltip from '../forms/tooltip/Tooltip.svelte';
18
+ import { Button, Toggle, type ButtonRootProps } from 'bits-ui';
19
+ import type { ToggleRootProps } from 'bits-ui';
20
+
21
+ let {
22
+ iconProps,
23
+ variant = 'text',
24
+ color = 'default',
25
+ size = 'md',
26
+ shape = 'round',
27
+ variation = 'default',
28
+ triggerClass = '',
29
+ triggerSide = 'top',
30
+ triggerAlign = 'center',
31
+ disabled,
32
+ formaction,
33
+ tooltipContent,
34
+ loading,
35
+ width = 'default',
36
+ pressed = false,
37
+ onPressedChange,
38
+ class: className,
39
+ ...restProps
40
+ }: ButtonIconProps = $props();
41
+
42
+ const selected = $derived(variation === 'toggle' ? pressed : undefined);
43
+
44
+ const { base, icon } = $derived(
45
+ buttonIcon({ variant, color, shape, variation, size, width, selected })
46
+ );
47
+
48
+ const btnCls = $derived(base({ class: clsx(className) }));
49
+ </script>
50
+
51
+ <Tooltip {triggerClass} variant="snack" supportingText={tooltipContent}>
52
+ {#snippet trigger()}
53
+ {#if variation === 'toggle'}
54
+ <Toggle.Root
55
+ bind:pressed
56
+ {onPressedChange}
57
+ {disabled}
58
+ class={btnCls}
59
+ {...restProps as ToggleRootProps}
60
+ >
61
+ {#if loading}
62
+ <LoadingIndicator />
63
+ {:else}
64
+ <Icon class={icon()} {...iconProps} />
65
+ <Layer />
66
+ {/if}
67
+ </Toggle.Root>
68
+ {:else}
69
+ <Button.Root {disabled} {formaction} class={btnCls} {...restProps as ButtonRootProps}>
70
+ {#if loading}
71
+ <LoadingIndicator />
72
+ {:else}
73
+ <Icon class={icon()} {...iconProps} />
74
+ <Layer />
75
+ {/if}
76
+ </Button.Root>
77
+ {/if}
78
+ {/snippet}
79
+ </Tooltip>
@@ -0,0 +1,14 @@
1
+ import type { ButtonIconProps } from './types.js';
2
+ /**
3
+ * Icon buttons help people take minor actions and are often used in app bars.
4
+ *
5
+ * - Standard: Low emphasis
6
+ * - Filled: High emphasis
7
+ * - Filled Tonal: Medium-high emphasis
8
+ * - Outlined: Medium emphasis
9
+ *
10
+ * @see https://m3.material.io/components/icon-buttons/overview
11
+ */
12
+ declare const ButtonIcon: import("svelte").Component<ButtonIconProps, {}, "">;
13
+ type ButtonIcon = ReturnType<typeof ButtonIcon>;
14
+ export default ButtonIcon;
@@ -0,0 +1,81 @@
1
+ <!--
2
+ @component
3
+ Floating action buttons (FABs) help people take primary actions.
4
+
5
+ - Regular: Standard size
6
+ - Small: For secondary actions
7
+ - Large: For prominent actions
8
+ - Extended: Includes a text label
9
+
10
+ @see https://m3.material.io/components/floating-action-button/overview
11
+ -->
12
+ <script lang="ts">
13
+ import clsx from 'clsx';
14
+ import { fab } from './theme.js';
15
+ import type { FABProps } from './types.js';
16
+ import FABMenu from './FABMenu.svelte';
17
+ import ButtonIcon from './ButtonIcon.svelte';
18
+ import { Layer, Icon } from '../../utils/index.js';
19
+ import { clickOutside } from '../../actions/index.js';
20
+ import { Button, type ButtonRootProps } from 'bits-ui';
21
+
22
+ let {
23
+ children,
24
+ disabled,
25
+ formaction,
26
+ size = 'regular',
27
+ config = 'primary',
28
+ iconProps,
29
+ label,
30
+ expanded = false,
31
+ class: className,
32
+ withMenu,
33
+ ...restProps
34
+ }: FABProps = $props();
35
+
36
+ const { base, icon, label: labelClass } = $derived(fab({ size, config, expanded }));
37
+ const btnCls = $derived(base({ class: clsx(className) }));
38
+
39
+ let showMenu = $state(false);
40
+
41
+ function handleClick(e: MouseEvent) {
42
+ if (disabled) {
43
+ e.preventDefault();
44
+ return;
45
+ }
46
+ if (withMenu) {
47
+ e.preventDefault();
48
+ showMenu = true;
49
+ }
50
+ }
51
+ </script>
52
+
53
+ {#if withMenu && showMenu}
54
+ <div class="relative z-50" use:clickOutside={() => (showMenu = false)}>
55
+ <FABMenu>
56
+ {@render children?.()}
57
+ </FABMenu>
58
+ <ButtonIcon
59
+ variant="filled"
60
+ class="shadow-elevation-3"
61
+ iconProps={{ name: 'close' }}
62
+ onclick={() => (showMenu = !showMenu)}
63
+ />
64
+ </div>
65
+ {:else}
66
+ <Button.Root
67
+ {disabled}
68
+ {formaction}
69
+ class={btnCls}
70
+ onclick={handleClick}
71
+ {...restProps as ButtonRootProps}
72
+ >
73
+ <Icon {...iconProps} class={icon()} />
74
+ <Layer />
75
+ {#if expanded}
76
+ <p class={labelClass()}>
77
+ {label}
78
+ </p>
79
+ {/if}
80
+ </Button.Root>
81
+ {/if}