jfs-components 0.0.79 → 0.0.85

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 (138) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/lib/commonjs/components/AppBar/AppBar.js +70 -6
  3. package/lib/commonjs/components/AreaLineChart/AreaLineChart.js +866 -0
  4. package/lib/commonjs/components/AreaLineChart/chartMath.js +252 -0
  5. package/lib/commonjs/components/Attached/Attached.js +76 -7
  6. package/lib/commonjs/components/BubbleChart/BubbleChart.js +191 -0
  7. package/lib/commonjs/components/BubbleChart/bubblePacking.js +378 -0
  8. package/lib/commonjs/components/Checkbox/Checkbox.js +18 -2
  9. package/lib/commonjs/components/ClusterBubble/ClusterBubble.js +272 -0
  10. package/lib/commonjs/components/Drawer/Drawer.js +6 -1
  11. package/lib/commonjs/components/DropdownInput/DropdownInput.js +30 -6
  12. package/lib/commonjs/components/ExpandableCheckbox/ExpandableCheckbox.js +17 -11
  13. package/lib/commonjs/components/FormField/FormField.js +1 -14
  14. package/lib/commonjs/components/FullscreenModal/FullscreenModal.js +5 -1
  15. package/lib/commonjs/components/ListItem/ListItem.js +6 -11
  16. package/lib/commonjs/components/MessageField/MessageField.js +1 -13
  17. package/lib/commonjs/components/MetricLegendItem/MetricLegendItem.js +7 -1
  18. package/lib/commonjs/components/PaymentFeedback/PaymentFeedback.js +12 -9
  19. package/lib/commonjs/components/PlanComparisonCard/PlanComparisonCard.js +69 -160
  20. package/lib/commonjs/components/Spinner/Spinner.js +217 -0
  21. package/lib/commonjs/components/TextInput/TextInput.js +33 -18
  22. package/lib/commonjs/components/index.js +34 -0
  23. package/lib/commonjs/design-tokens/Coin Variables-variables-full.json +1 -1
  24. package/lib/commonjs/icons/components/IconArrowdown.js +19 -0
  25. package/lib/commonjs/icons/components/IconArrowup.js +19 -0
  26. package/lib/commonjs/icons/components/IconChevrondowncircle.js +19 -0
  27. package/lib/commonjs/icons/components/IconChevronleftcircle.js +19 -0
  28. package/lib/commonjs/icons/components/IconChevronrightcircle.js +19 -0
  29. package/lib/commonjs/icons/components/IconChevronupcircle.js +19 -0
  30. package/lib/commonjs/icons/components/IconOsnavback.js +19 -0
  31. package/lib/commonjs/icons/components/IconOsnavcenter.js +19 -0
  32. package/lib/commonjs/icons/components/IconOsnavhome.js +19 -0
  33. package/lib/commonjs/icons/components/IconOsnavtask.js +19 -0
  34. package/lib/commonjs/icons/components/IconSignin.js +19 -0
  35. package/lib/commonjs/icons/components/IconSignout.js +19 -0
  36. package/lib/commonjs/icons/components/index.js +132 -0
  37. package/lib/commonjs/icons/registry.js +2 -2
  38. package/lib/module/components/AppBar/AppBar.js +70 -6
  39. package/lib/module/components/AreaLineChart/AreaLineChart.js +859 -0
  40. package/lib/module/components/AreaLineChart/chartMath.js +242 -0
  41. package/lib/module/components/Attached/Attached.js +76 -7
  42. package/lib/module/components/BubbleChart/BubbleChart.js +185 -0
  43. package/lib/module/components/BubbleChart/bubblePacking.js +370 -0
  44. package/lib/module/components/Checkbox/Checkbox.js +18 -2
  45. package/lib/module/components/ClusterBubble/ClusterBubble.js +267 -0
  46. package/lib/module/components/Drawer/Drawer.js +6 -1
  47. package/lib/module/components/DropdownInput/DropdownInput.js +30 -6
  48. package/lib/module/components/ExpandableCheckbox/ExpandableCheckbox.js +17 -11
  49. package/lib/module/components/FormField/FormField.js +3 -16
  50. package/lib/module/components/FullscreenModal/FullscreenModal.js +5 -1
  51. package/lib/module/components/ListItem/ListItem.js +6 -11
  52. package/lib/module/components/MessageField/MessageField.js +3 -15
  53. package/lib/module/components/MetricLegendItem/MetricLegendItem.js +7 -1
  54. package/lib/module/components/PaymentFeedback/PaymentFeedback.js +13 -9
  55. package/lib/module/components/PlanComparisonCard/PlanComparisonCard.js +72 -160
  56. package/lib/module/components/Spinner/Spinner.js +212 -0
  57. package/lib/module/components/TextInput/TextInput.js +34 -19
  58. package/lib/module/components/index.js +4 -0
  59. package/lib/module/design-tokens/Coin Variables-variables-full.json +1 -1
  60. package/lib/module/icons/components/IconArrowdown.js +12 -0
  61. package/lib/module/icons/components/IconArrowup.js +12 -0
  62. package/lib/module/icons/components/IconChevrondowncircle.js +12 -0
  63. package/lib/module/icons/components/IconChevronleftcircle.js +12 -0
  64. package/lib/module/icons/components/IconChevronrightcircle.js +12 -0
  65. package/lib/module/icons/components/IconChevronupcircle.js +12 -0
  66. package/lib/module/icons/components/IconOsnavback.js +12 -0
  67. package/lib/module/icons/components/IconOsnavcenter.js +12 -0
  68. package/lib/module/icons/components/IconOsnavhome.js +12 -0
  69. package/lib/module/icons/components/IconOsnavtask.js +12 -0
  70. package/lib/module/icons/components/IconSignin.js +12 -0
  71. package/lib/module/icons/components/IconSignout.js +12 -0
  72. package/lib/module/icons/components/index.js +12 -0
  73. package/lib/module/icons/registry.js +2 -2
  74. package/lib/typescript/src/components/AppBar/AppBar.d.ts +12 -1
  75. package/lib/typescript/src/components/AreaLineChart/AreaLineChart.d.ts +212 -0
  76. package/lib/typescript/src/components/AreaLineChart/chartMath.d.ts +90 -0
  77. package/lib/typescript/src/components/Attached/Attached.d.ts +19 -16
  78. package/lib/typescript/src/components/BubbleChart/BubbleChart.d.ts +81 -0
  79. package/lib/typescript/src/components/BubbleChart/bubblePacking.d.ts +83 -0
  80. package/lib/typescript/src/components/ClusterBubble/ClusterBubble.d.ts +76 -0
  81. package/lib/typescript/src/components/DropdownInput/DropdownInput.d.ts +3 -2
  82. package/lib/typescript/src/components/ListItem/ListItem.d.ts +3 -3
  83. package/lib/typescript/src/components/MetricLegendItem/MetricLegendItem.d.ts +7 -1
  84. package/lib/typescript/src/components/PaymentFeedback/PaymentFeedback.d.ts +5 -1
  85. package/lib/typescript/src/components/PlanComparisonCard/PlanComparisonCard.d.ts +10 -8
  86. package/lib/typescript/src/components/Spinner/Spinner.d.ts +45 -0
  87. package/lib/typescript/src/components/index.d.ts +4 -0
  88. package/lib/typescript/src/icons/components/IconArrowdown.d.ts +3 -0
  89. package/lib/typescript/src/icons/components/IconArrowup.d.ts +3 -0
  90. package/lib/typescript/src/icons/components/IconChevrondowncircle.d.ts +3 -0
  91. package/lib/typescript/src/icons/components/IconChevronleftcircle.d.ts +3 -0
  92. package/lib/typescript/src/icons/components/IconChevronrightcircle.d.ts +3 -0
  93. package/lib/typescript/src/icons/components/IconChevronupcircle.d.ts +3 -0
  94. package/lib/typescript/src/icons/components/IconOsnavback.d.ts +3 -0
  95. package/lib/typescript/src/icons/components/IconOsnavcenter.d.ts +3 -0
  96. package/lib/typescript/src/icons/components/IconOsnavhome.d.ts +3 -0
  97. package/lib/typescript/src/icons/components/IconOsnavtask.d.ts +3 -0
  98. package/lib/typescript/src/icons/components/IconSignin.d.ts +3 -0
  99. package/lib/typescript/src/icons/components/IconSignout.d.ts +3 -0
  100. package/lib/typescript/src/icons/components/index.d.ts +12 -0
  101. package/lib/typescript/src/icons/registry.d.ts +1 -1
  102. package/package.json +3 -2
  103. package/src/components/AppBar/AppBar.tsx +92 -12
  104. package/src/components/AreaLineChart/AreaLineChart.tsx +1161 -0
  105. package/src/components/AreaLineChart/chartMath.ts +265 -0
  106. package/src/components/Attached/Attached.tsx +94 -7
  107. package/src/components/BubbleChart/BubbleChart.tsx +319 -0
  108. package/src/components/BubbleChart/bubblePacking.ts +397 -0
  109. package/src/components/Checkbox/Checkbox.tsx +14 -2
  110. package/src/components/ClusterBubble/ClusterBubble.tsx +359 -0
  111. package/src/components/Drawer/Drawer.tsx +4 -0
  112. package/src/components/DropdownInput/DropdownInput.tsx +54 -20
  113. package/src/components/ExpandableCheckbox/ExpandableCheckbox.tsx +13 -9
  114. package/src/components/FormField/FormField.tsx +3 -19
  115. package/src/components/FullscreenModal/FullscreenModal.tsx +3 -0
  116. package/src/components/ListItem/ListItem.tsx +14 -16
  117. package/src/components/MessageField/MessageField.tsx +3 -18
  118. package/src/components/MetricLegendItem/MetricLegendItem.tsx +20 -6
  119. package/src/components/PaymentFeedback/PaymentFeedback.tsx +15 -8
  120. package/src/components/PlanComparisonCard/PlanComparisonCard.tsx +82 -192
  121. package/src/components/Spinner/Spinner.tsx +273 -0
  122. package/src/components/TextInput/TextInput.tsx +37 -19
  123. package/src/components/index.ts +4 -0
  124. package/src/design-tokens/Coin Variables-variables-full.json +1 -1
  125. package/src/icons/components/IconArrowdown.tsx +11 -0
  126. package/src/icons/components/IconArrowup.tsx +11 -0
  127. package/src/icons/components/IconChevrondowncircle.tsx +11 -0
  128. package/src/icons/components/IconChevronleftcircle.tsx +11 -0
  129. package/src/icons/components/IconChevronrightcircle.tsx +11 -0
  130. package/src/icons/components/IconChevronupcircle.tsx +11 -0
  131. package/src/icons/components/IconOsnavback.tsx +11 -0
  132. package/src/icons/components/IconOsnavcenter.tsx +11 -0
  133. package/src/icons/components/IconOsnavhome.tsx +11 -0
  134. package/src/icons/components/IconOsnavtask.tsx +11 -0
  135. package/src/icons/components/IconSignin.tsx +11 -0
  136. package/src/icons/components/IconSignout.tsx +11 -0
  137. package/src/icons/components/index.ts +12 -0
  138. package/src/icons/registry.ts +49 -1
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconArrowdown = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M18.7099 14.29C18.617 14.1963 18.5064 14.1219 18.3845 14.0711C18.2627 14.0203 18.132 13.9942 17.9999 13.9942C17.8679 13.9942 17.7372 14.0203 17.6154 14.0711C17.4935 14.1219 17.3829 14.1963 17.2899 14.29L12.9999 18.59V3C12.9999 2.73478 12.8946 2.48043 12.707 2.29289C12.5195 2.10536 12.2652 2 11.9999 2C11.7347 2 11.4804 2.10536 11.2928 2.29289C11.1053 2.48043 10.9999 2.73478 10.9999 3V18.59L6.70994 14.29C6.52164 14.1017 6.26624 13.9959 5.99994 13.9959C5.73364 13.9959 5.47825 14.1017 5.28994 14.29C5.10164 14.4783 4.99585 14.7337 4.99585 15C4.99585 15.1319 5.02182 15.2624 5.07228 15.3842C5.12274 15.5061 5.1967 15.6168 5.28994 15.71L11.2899 21.71C11.3829 21.8037 11.4935 21.8781 11.6154 21.9289C11.7372 21.9797 11.8679 22.0058 11.9999 22.0058C12.132 22.0058 12.2627 21.9797 12.3845 21.9289C12.5064 21.8781 12.617 21.8037 12.7099 21.71L18.7099 15.71C18.8037 15.617 18.8781 15.5064 18.9288 15.3846C18.9796 15.2627 19.0057 15.132 19.0057 15C19.0057 14.868 18.9796 14.7373 18.9288 14.6154C18.8781 14.4936 18.8037 14.383 18.7099 14.29Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconArrowup = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M18.7099 8.28994L12.7099 2.28994C12.617 2.19621 12.5064 2.12182 12.3845 2.07105C12.2627 2.02028 12.132 1.99414 11.9999 1.99414C11.8679 1.99414 11.7372 2.02028 11.6154 2.07105C11.4935 2.12182 11.3829 2.19621 11.2899 2.28994L5.28994 8.28994C5.10164 8.47824 4.99585 8.73364 4.99585 8.99994C4.99585 9.26624 5.10164 9.52164 5.28994 9.70994C5.47825 9.89824 5.73364 10.004 5.99994 10.004C6.26624 10.004 6.52164 9.89824 6.70994 9.70994L10.9999 5.40994V20.9999C10.9999 21.2652 11.1053 21.5195 11.2928 21.707C11.4804 21.8946 11.7347 21.9999 11.9999 21.9999C12.2652 21.9999 12.5195 21.8946 12.707 21.707C12.8946 21.5195 12.9999 21.2652 12.9999 20.9999V5.40994L17.2899 9.70994C17.3829 9.80367 17.4935 9.87806 17.6154 9.92883C17.7372 9.9796 17.8679 10.0057 17.9999 10.0057C18.132 10.0057 18.2627 9.9796 18.3845 9.92883C18.5064 9.87806 18.617 9.80367 18.7099 9.70994C18.8037 9.61698 18.8781 9.50637 18.9288 9.38452C18.9796 9.26266 19.0057 9.13195 19.0057 8.99994C19.0057 8.86793 18.9796 8.73722 18.9288 8.61536C18.8781 8.4935 18.8037 8.3829 18.7099 8.28994Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconChevrondowncircle = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM16.71 11.21L12.71 15.21C12.617 15.3037 12.5064 15.3781 12.3846 15.4289C12.2627 15.4797 12.132 15.5058 12 15.5058C11.868 15.5058 11.7373 15.4797 11.6154 15.4289C11.4936 15.3781 11.383 15.3037 11.29 15.21L7.29 11.21C7.19677 11.1168 7.12281 11.0061 7.07234 10.8842C7.02188 10.7624 6.99591 10.6319 6.99591 10.5C6.99591 10.3681 7.02188 10.2376 7.07234 10.1158C7.12281 9.99393 7.19677 9.88324 7.29 9.79C7.38324 9.69676 7.49393 9.6228 7.61576 9.57234C7.73758 9.52188 7.86814 9.49591 8 9.49591C8.13186 9.49591 8.26243 9.52188 8.38425 9.57234C8.50608 9.6228 8.61677 9.69676 8.71 9.79L12 13.09L15.29 9.79C15.4783 9.6017 15.7337 9.49591 16 9.49591C16.2663 9.49591 16.5217 9.6017 16.71 9.79C16.8983 9.9783 17.0041 10.2337 17.0041 10.5C17.0041 10.7663 16.8983 11.0217 16.71 11.21Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconChevronleftcircle = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM14.21 15.29C14.3037 15.383 14.3781 15.4936 14.4289 15.6154C14.4797 15.7373 14.5058 15.868 14.5058 16C14.5058 16.132 14.4797 16.2627 14.4289 16.3846C14.3781 16.5064 14.3037 16.617 14.21 16.71C14.117 16.8037 14.0064 16.8781 13.8846 16.9289C13.7627 16.9797 13.632 17.0058 13.5 17.0058C13.368 17.0058 13.2373 16.9797 13.1154 16.9289C12.9936 16.8781 12.883 16.8037 12.79 16.71L8.79 12.71C8.69628 12.617 8.62188 12.5064 8.57111 12.3846C8.52034 12.2627 8.49421 12.132 8.49421 12C8.49421 11.868 8.52034 11.7373 8.57111 11.6154C8.62188 11.4936 8.69628 11.383 8.79 11.29L12.79 7.29C12.8832 7.19676 12.9939 7.1228 13.1158 7.07234C13.2376 7.02188 13.3681 6.99591 13.5 6.99591C13.6319 6.99591 13.7624 7.02188 13.8843 7.07234C14.0061 7.1228 14.1168 7.19676 14.21 7.29C14.3032 7.38324 14.3772 7.49393 14.4277 7.61575C14.4781 7.73757 14.5041 7.86814 14.5041 8C14.5041 8.13186 14.4781 8.26243 14.4277 8.38425C14.3772 8.50607 14.3032 8.61676 14.21 8.71L10.91 12L14.21 15.29Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconChevronrightcircle = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM15.21 12.71L11.21 16.71C11.117 16.8037 11.0064 16.8781 10.8846 16.9289C10.7627 16.9797 10.632 17.0058 10.5 17.0058C10.368 17.0058 10.2373 16.9797 10.1154 16.9289C9.99357 16.8781 9.88297 16.8037 9.79 16.71C9.69628 16.617 9.62188 16.5064 9.57111 16.3846C9.52034 16.2627 9.49421 16.132 9.49421 16C9.49421 15.868 9.52034 15.7373 9.57111 15.6154C9.62188 15.4936 9.69628 15.383 9.79 15.29L13.09 12L9.79 8.71C9.69677 8.61676 9.6228 8.50607 9.57234 8.38425C9.52188 8.26243 9.49591 8.13186 9.49591 8C9.49591 7.86814 9.52188 7.73757 9.57234 7.61575C9.6228 7.49393 9.69677 7.38324 9.79 7.29C9.88324 7.19676 9.99393 7.1228 10.1158 7.07234C10.2376 7.02188 10.3681 6.99591 10.5 6.99591C10.6319 6.99591 10.7624 7.02188 10.8843 7.07234C11.0061 7.1228 11.1168 7.19676 11.21 7.29L15.21 11.29C15.3037 11.383 15.3781 11.4936 15.4289 11.6154C15.4797 11.7373 15.5058 11.868 15.5058 12C15.5058 12.132 15.4797 12.2627 15.4289 12.3846C15.3781 12.5064 15.3037 12.617 15.21 12.71Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconChevronupcircle = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM16.71 14.21C16.617 14.3037 16.5064 14.3781 16.3846 14.4289C16.2627 14.4797 16.132 14.5058 16 14.5058C15.868 14.5058 15.7373 14.4797 15.6154 14.4289C15.4936 14.3781 15.383 14.3037 15.29 14.21L12 10.91L8.71 14.21C8.61677 14.3032 8.50608 14.3772 8.38425 14.4277C8.26243 14.4781 8.13186 14.5041 8 14.5041C7.86814 14.5041 7.73758 14.4781 7.61576 14.4277C7.49393 14.3772 7.38324 14.3032 7.29 14.21C7.19677 14.1168 7.12281 14.0061 7.07234 13.8842C7.02188 13.7624 6.99591 13.6319 6.99591 13.5C6.99591 13.3681 7.02188 13.2376 7.07234 13.1158C7.12281 12.9939 7.19677 12.8832 7.29 12.79L11.29 8.79C11.383 8.69627 11.4936 8.62188 11.6154 8.57111C11.7373 8.52034 11.868 8.4942 12 8.4942C12.132 8.4942 12.2627 8.52034 12.3846 8.57111C12.5064 8.62188 12.617 8.69627 12.71 8.79L16.71 12.79C16.8037 12.883 16.8781 12.9936 16.9289 13.1154C16.9797 13.2373 17.0058 13.368 17.0058 13.5C17.0058 13.632 16.9797 13.7627 16.9289 13.8846C16.8781 14.0064 16.8037 14.117 16.71 14.21Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconOsnavback = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M14.32 3.37L4.35001 10.38C3.23001 11.17 3.23001 12.82 4.35001 13.61L14.32 20.62C15.65 21.56 17.5 20.62 17.5 19.01V4.99C17.5 3.38 15.65 2.44 14.32 3.38V3.37Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconOsnavcenter = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconOsnavhome = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M10.67 2.50982L4.01 8.42982C3.37 8.99982 3 9.81982 3 10.6698V17.9998C3 19.6598 4.34 20.9998 6 20.9998H18C19.66 20.9998 21 19.6598 21 17.9998V10.6698C21 9.80982 20.63 8.99982 19.99 8.42982L13.33 2.50982C12.57 1.83982 11.43 1.83982 10.67 2.50982Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconOsnavtask = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M18 3H6C4.34315 3 3 4.34315 3 6V18C3 19.6569 4.34315 21 6 21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconSignin = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M10.29 14.29C10.1963 14.383 10.1219 14.4936 10.0711 14.6154C10.0203 14.7373 9.9942 14.868 9.9942 15C9.9942 15.132 10.0203 15.2627 10.0711 15.3846C10.1219 15.5064 10.1963 15.617 10.29 15.71C10.383 15.8037 10.4936 15.8781 10.6154 15.9289C10.7373 15.9797 10.868 16.0058 11 16.0058C11.132 16.0058 11.2627 15.9797 11.3846 15.9289C11.5064 15.8781 11.617 15.8037 11.71 15.71L14.71 12.71C14.8037 12.617 14.8781 12.5064 14.9289 12.3846C14.9797 12.2627 15.0058 12.132 15.0058 12C15.0058 11.868 14.9797 11.7373 14.9289 11.6154C14.8781 11.4936 14.8037 11.383 14.71 11.29L11.71 8.29C11.5217 8.1017 11.2663 7.99591 11 7.99591C10.7337 7.99591 10.4783 8.1017 10.29 8.29C10.1017 8.47831 9.99591 8.7337 9.99591 9C9.99591 9.2663 10.1017 9.5217 10.29 9.71L11.59 11H3C2.73478 11 2.48043 11.1054 2.29289 11.2929C2.10536 11.4804 2 11.7348 2 12C2 12.2652 2.10536 12.5196 2.29289 12.7071C2.48043 12.8946 2.73478 13 3 13H11.59L10.29 14.29ZM12 2C10.4221 2.00572 8.8677 2.38253 7.46234 3.09997C6.05699 3.81741 4.8401 4.85538 3.91 6.13C3.83225 6.23627 3.77626 6.35685 3.74523 6.48482C3.7142 6.61279 3.70875 6.74562 3.72919 6.8757C3.74963 7.00578 3.79556 7.13054 3.86434 7.24282C3.93312 7.35511 4.0234 7.4527 4.13 7.53C4.23627 7.60775 4.35685 7.66375 4.48482 7.69478C4.61278 7.7258 4.74562 7.73125 4.8757 7.71081C5.00578 7.69037 5.13054 7.64444 5.24282 7.57566C5.3551 7.50688 5.4527 7.4166 5.53 7.31C6.52119 5.94029 7.92085 4.91982 9.52809 4.39507C11.1353 3.87032 12.8675 3.86827 14.476 4.38921C16.0844 4.91015 17.4865 5.92729 18.4809 7.29465C19.4754 8.66201 20.011 10.3093 20.011 12C20.011 13.6907 19.4754 15.338 18.4809 16.7054C17.4865 18.0727 16.0844 19.0899 14.476 19.6108C12.8675 20.1317 11.1353 20.1297 9.52809 19.6049C7.92085 19.0802 6.52119 18.0597 5.53 16.69C5.37352 16.4752 5.13811 16.3313 4.87556 16.2901C4.61301 16.2488 4.34483 16.3135 4.13 16.47C3.91517 16.6265 3.77131 16.8619 3.73005 17.1244C3.68879 17.387 3.75352 17.6552 3.91 17.87C4.91474 19.2557 6.25836 20.3604 7.81223 21.0782C9.3661 21.796 11.0782 22.1029 12.7847 21.9696C14.4911 21.8363 16.1348 21.2672 17.5584 20.3168C18.9819 19.3664 20.1377 18.0666 20.9151 16.5416C21.6924 15.0167 22.0654 13.3177 21.9982 11.6074C21.931 9.89704 21.4259 8.23258 20.5312 6.77333C19.6366 5.31408 18.3824 4.10889 16.8887 3.27312C15.3949 2.43736 13.7117 1.999 12 2Z"
11
+ })
12
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const IconSignout = props => /*#__PURE__*/_jsx(Svg, {
7
+ viewBox: "0 0 24 24",
8
+ ...props,
9
+ children: /*#__PURE__*/_jsx(Path, {
10
+ d: "M21.9 11.6102C21.8518 11.4883 21.7766 11.3789 21.68 11.2902L18.68 8.29018C18.4987 8.11021 18.2554 8.00644 18 8.00018C17.8694 8.00176 17.7403 8.02894 17.62 8.08018C17.4965 8.13075 17.3843 8.20555 17.29 8.30018C17.1053 8.48644 17.0012 8.73784 17 9.00018C17.0066 9.26436 17.1098 9.51697 17.29 9.71018L18.56 11.0002H10C9.73771 11.0013 9.48631 11.1054 9.30005 11.2902C9.20542 11.3844 9.13061 11.4966 9.08005 11.6202C9.0288 11.7404 9.00163 11.8695 9.00005 12.0002C8.99928 12.1318 9.02451 12.2623 9.07427 12.3841C9.12404 12.5059 9.19736 12.6167 9.29005 12.7102C9.38349 12.8029 9.4943 12.8762 9.61614 12.926C9.73798 12.9757 9.86844 13.0009 10 13.0002H18.59L17.28 14.2902C17.1901 14.3823 17.1188 14.491 17.07 14.6102C17.0209 14.7342 16.9971 14.8668 17 15.0002C17.0016 15.1309 17.0288 15.26 17.08 15.3802C17.1276 15.5029 17.199 15.6151 17.29 15.7102C17.387 15.8015 17.4985 15.8758 17.62 15.9302C17.741 15.978 17.87 16.0018 18 16.0002C18.1334 16.0031 18.266 15.9793 18.39 15.9302C18.5119 15.8819 18.6213 15.8067 18.71 15.7102L21.71 12.7102C21.809 12.6196 21.8845 12.5063 21.93 12.3802C21.9779 12.2593 22.0016 12.1302 22 12.0002C21.9912 11.8651 21.9573 11.7328 21.9 11.6102ZM18.19 18.1702C18.0105 18.0489 17.7964 17.9893 17.58 18.0002C17.3498 18.002 17.1273 18.0833 16.95 18.2302C16.2114 18.8417 15.3629 19.3066 14.45 19.6002C13.2487 19.997 11.9704 20.1032 10.72 19.9102C9.47107 19.7095 8.28625 19.2199 7.26005 18.4802C5.71443 17.3605 4.62003 15.7252 4.17441 13.8694C3.7288 12.0136 3.96134 10.0596 4.83005 8.36018C5.69149 6.65435 7.13511 5.31324 8.89965 4.57954C10.6642 3.84584 12.6331 3.76803 14.45 4.36018C15.3822 4.66315 16.2478 5.14176 17 5.77018C17.1693 5.91077 17.3802 5.99161 17.6 6.00018C17.807 6.01045 18.0114 5.95055 18.18 5.83018C18.3522 5.71646 18.4849 5.5523 18.56 5.36018C18.6198 5.16124 18.6198 4.94913 18.56 4.75018C18.5083 4.55135 18.3966 4.37327 18.24 4.24018C17.6006 3.71049 16.8946 3.26672 16.14 2.92018C14.523 2.17466 12.7363 1.87441 10.9644 2.05047C9.19248 2.22653 7.49974 2.87251 6.06104 3.92166C4.62234 4.97081 3.48987 6.38509 2.78063 8.01835C2.07139 9.65162 1.81111 11.4446 2.02669 13.2122C2.24226 14.9797 2.92587 16.6576 4.00689 18.0725C5.0879 19.4874 6.5271 20.588 8.1758 21.2606C9.82449 21.9332 11.6229 22.1534 13.3851 21.8984C15.1474 21.6434 16.8096 20.9225 18.2 19.8102C18.3802 19.6897 18.5114 19.5088 18.57 19.3002C18.6379 19.0957 18.6379 18.8747 18.57 18.6702C18.5004 18.467 18.3671 18.2917 18.19 18.1702Z"
11
+ })
12
+ });
@@ -65,10 +65,12 @@ export * from './IconArmed';
65
65
  export * from './IconArmedoff';
66
66
  export * from './IconArmedpartially';
67
67
  export * from './IconArrowback';
68
+ export * from './IconArrowdown';
68
69
  export * from './IconArrowline';
69
70
  export * from './IconArrowlinediagonal';
70
71
  export * from './IconArrowlinedot';
71
72
  export * from './IconArrownext';
73
+ export * from './IconArrowup';
72
74
  export * from './IconArtificialinsemination';
73
75
  export * from './IconAssistivegrid';
74
76
  export * from './IconAstrology';
@@ -238,9 +240,13 @@ export * from './IconChemistry';
238
240
  export * from './IconCherry';
239
241
  export * from './IconChestpain';
240
242
  export * from './IconChevrondown';
243
+ export * from './IconChevrondowncircle';
241
244
  export * from './IconChevronleft';
245
+ export * from './IconChevronleftcircle';
242
246
  export * from './IconChevronright';
247
+ export * from './IconChevronrightcircle';
243
248
  export * from './IconChevronup';
249
+ export * from './IconChevronupcircle';
244
250
  export * from './IconChildrengame';
245
251
  export * from './IconCholesterol';
246
252
  export * from './IconCleaning';
@@ -759,6 +765,10 @@ export * from './IconOperatingtable';
759
765
  export * from './IconOperator';
760
766
  export * from './IconOrder';
761
767
  export * from './IconOrders';
768
+ export * from './IconOsnavback';
769
+ export * from './IconOsnavcenter';
770
+ export * from './IconOsnavhome';
771
+ export * from './IconOsnavtask';
762
772
  export * from './IconOtp';
763
773
  export * from './IconOutofstock';
764
774
  export * from './IconOutgoing';
@@ -955,6 +965,8 @@ export * from './IconShutter10s';
955
965
  export * from './IconShutter3s';
956
966
  export * from './IconShutter5s';
957
967
  export * from './IconSign';
968
+ export * from './IconSignin';
969
+ export * from './IconSignout';
958
970
  export * from './IconSim';
959
971
  export * from './IconSim1';
960
972
  export * from './IconSim2';