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.
- package/CHANGELOG.md +29 -0
- package/lib/commonjs/components/AppBar/AppBar.js +70 -6
- package/lib/commonjs/components/AreaLineChart/AreaLineChart.js +866 -0
- package/lib/commonjs/components/AreaLineChart/chartMath.js +252 -0
- package/lib/commonjs/components/Attached/Attached.js +76 -7
- package/lib/commonjs/components/BubbleChart/BubbleChart.js +191 -0
- package/lib/commonjs/components/BubbleChart/bubblePacking.js +378 -0
- package/lib/commonjs/components/Checkbox/Checkbox.js +18 -2
- package/lib/commonjs/components/ClusterBubble/ClusterBubble.js +272 -0
- package/lib/commonjs/components/Drawer/Drawer.js +6 -1
- package/lib/commonjs/components/DropdownInput/DropdownInput.js +30 -6
- package/lib/commonjs/components/ExpandableCheckbox/ExpandableCheckbox.js +17 -11
- package/lib/commonjs/components/FormField/FormField.js +1 -14
- package/lib/commonjs/components/FullscreenModal/FullscreenModal.js +5 -1
- package/lib/commonjs/components/ListItem/ListItem.js +6 -11
- package/lib/commonjs/components/MessageField/MessageField.js +1 -13
- package/lib/commonjs/components/MetricLegendItem/MetricLegendItem.js +7 -1
- package/lib/commonjs/components/PaymentFeedback/PaymentFeedback.js +12 -9
- package/lib/commonjs/components/PlanComparisonCard/PlanComparisonCard.js +69 -160
- package/lib/commonjs/components/Spinner/Spinner.js +217 -0
- package/lib/commonjs/components/TextInput/TextInput.js +33 -18
- package/lib/commonjs/components/index.js +34 -0
- package/lib/commonjs/design-tokens/Coin Variables-variables-full.json +1 -1
- package/lib/commonjs/icons/components/IconArrowdown.js +19 -0
- package/lib/commonjs/icons/components/IconArrowup.js +19 -0
- package/lib/commonjs/icons/components/IconChevrondowncircle.js +19 -0
- package/lib/commonjs/icons/components/IconChevronleftcircle.js +19 -0
- package/lib/commonjs/icons/components/IconChevronrightcircle.js +19 -0
- package/lib/commonjs/icons/components/IconChevronupcircle.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavback.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavcenter.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavhome.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavtask.js +19 -0
- package/lib/commonjs/icons/components/IconSignin.js +19 -0
- package/lib/commonjs/icons/components/IconSignout.js +19 -0
- package/lib/commonjs/icons/components/index.js +132 -0
- package/lib/commonjs/icons/registry.js +2 -2
- package/lib/module/components/AppBar/AppBar.js +70 -6
- package/lib/module/components/AreaLineChart/AreaLineChart.js +859 -0
- package/lib/module/components/AreaLineChart/chartMath.js +242 -0
- package/lib/module/components/Attached/Attached.js +76 -7
- package/lib/module/components/BubbleChart/BubbleChart.js +185 -0
- package/lib/module/components/BubbleChart/bubblePacking.js +370 -0
- package/lib/module/components/Checkbox/Checkbox.js +18 -2
- package/lib/module/components/ClusterBubble/ClusterBubble.js +267 -0
- package/lib/module/components/Drawer/Drawer.js +6 -1
- package/lib/module/components/DropdownInput/DropdownInput.js +30 -6
- package/lib/module/components/ExpandableCheckbox/ExpandableCheckbox.js +17 -11
- package/lib/module/components/FormField/FormField.js +3 -16
- package/lib/module/components/FullscreenModal/FullscreenModal.js +5 -1
- package/lib/module/components/ListItem/ListItem.js +6 -11
- package/lib/module/components/MessageField/MessageField.js +3 -15
- package/lib/module/components/MetricLegendItem/MetricLegendItem.js +7 -1
- package/lib/module/components/PaymentFeedback/PaymentFeedback.js +13 -9
- package/lib/module/components/PlanComparisonCard/PlanComparisonCard.js +72 -160
- package/lib/module/components/Spinner/Spinner.js +212 -0
- package/lib/module/components/TextInput/TextInput.js +34 -19
- package/lib/module/components/index.js +4 -0
- package/lib/module/design-tokens/Coin Variables-variables-full.json +1 -1
- package/lib/module/icons/components/IconArrowdown.js +12 -0
- package/lib/module/icons/components/IconArrowup.js +12 -0
- package/lib/module/icons/components/IconChevrondowncircle.js +12 -0
- package/lib/module/icons/components/IconChevronleftcircle.js +12 -0
- package/lib/module/icons/components/IconChevronrightcircle.js +12 -0
- package/lib/module/icons/components/IconChevronupcircle.js +12 -0
- package/lib/module/icons/components/IconOsnavback.js +12 -0
- package/lib/module/icons/components/IconOsnavcenter.js +12 -0
- package/lib/module/icons/components/IconOsnavhome.js +12 -0
- package/lib/module/icons/components/IconOsnavtask.js +12 -0
- package/lib/module/icons/components/IconSignin.js +12 -0
- package/lib/module/icons/components/IconSignout.js +12 -0
- package/lib/module/icons/components/index.js +12 -0
- package/lib/module/icons/registry.js +2 -2
- package/lib/typescript/src/components/AppBar/AppBar.d.ts +12 -1
- package/lib/typescript/src/components/AreaLineChart/AreaLineChart.d.ts +212 -0
- package/lib/typescript/src/components/AreaLineChart/chartMath.d.ts +90 -0
- package/lib/typescript/src/components/Attached/Attached.d.ts +19 -16
- package/lib/typescript/src/components/BubbleChart/BubbleChart.d.ts +81 -0
- package/lib/typescript/src/components/BubbleChart/bubblePacking.d.ts +83 -0
- package/lib/typescript/src/components/ClusterBubble/ClusterBubble.d.ts +76 -0
- package/lib/typescript/src/components/DropdownInput/DropdownInput.d.ts +3 -2
- package/lib/typescript/src/components/ListItem/ListItem.d.ts +3 -3
- package/lib/typescript/src/components/MetricLegendItem/MetricLegendItem.d.ts +7 -1
- package/lib/typescript/src/components/PaymentFeedback/PaymentFeedback.d.ts +5 -1
- package/lib/typescript/src/components/PlanComparisonCard/PlanComparisonCard.d.ts +10 -8
- package/lib/typescript/src/components/Spinner/Spinner.d.ts +45 -0
- package/lib/typescript/src/components/index.d.ts +4 -0
- package/lib/typescript/src/icons/components/IconArrowdown.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconArrowup.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevrondowncircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevronleftcircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevronrightcircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevronupcircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavback.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavcenter.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavhome.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavtask.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconSignin.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconSignout.d.ts +3 -0
- package/lib/typescript/src/icons/components/index.d.ts +12 -0
- package/lib/typescript/src/icons/registry.d.ts +1 -1
- package/package.json +3 -2
- package/src/components/AppBar/AppBar.tsx +92 -12
- package/src/components/AreaLineChart/AreaLineChart.tsx +1161 -0
- package/src/components/AreaLineChart/chartMath.ts +265 -0
- package/src/components/Attached/Attached.tsx +94 -7
- package/src/components/BubbleChart/BubbleChart.tsx +319 -0
- package/src/components/BubbleChart/bubblePacking.ts +397 -0
- package/src/components/Checkbox/Checkbox.tsx +14 -2
- package/src/components/ClusterBubble/ClusterBubble.tsx +359 -0
- package/src/components/Drawer/Drawer.tsx +4 -0
- package/src/components/DropdownInput/DropdownInput.tsx +54 -20
- package/src/components/ExpandableCheckbox/ExpandableCheckbox.tsx +13 -9
- package/src/components/FormField/FormField.tsx +3 -19
- package/src/components/FullscreenModal/FullscreenModal.tsx +3 -0
- package/src/components/ListItem/ListItem.tsx +14 -16
- package/src/components/MessageField/MessageField.tsx +3 -18
- package/src/components/MetricLegendItem/MetricLegendItem.tsx +20 -6
- package/src/components/PaymentFeedback/PaymentFeedback.tsx +15 -8
- package/src/components/PlanComparisonCard/PlanComparisonCard.tsx +82 -192
- package/src/components/Spinner/Spinner.tsx +273 -0
- package/src/components/TextInput/TextInput.tsx +37 -19
- package/src/components/index.ts +4 -0
- package/src/design-tokens/Coin Variables-variables-full.json +1 -1
- package/src/icons/components/IconArrowdown.tsx +11 -0
- package/src/icons/components/IconArrowup.tsx +11 -0
- package/src/icons/components/IconChevrondowncircle.tsx +11 -0
- package/src/icons/components/IconChevronleftcircle.tsx +11 -0
- package/src/icons/components/IconChevronrightcircle.tsx +11 -0
- package/src/icons/components/IconChevronupcircle.tsx +11 -0
- package/src/icons/components/IconOsnavback.tsx +11 -0
- package/src/icons/components/IconOsnavcenter.tsx +11 -0
- package/src/icons/components/IconOsnavhome.tsx +11 -0
- package/src/icons/components/IconOsnavtask.tsx +11 -0
- package/src/icons/components/IconSignin.tsx +11 -0
- package/src/icons/components/IconSignout.tsx +11 -0
- package/src/icons/components/index.ts +12 -0
- package/src/icons/registry.ts +49 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconArrowdown = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconArrowup = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconChevrondowncircle = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconChevronleftcircle = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconChevronrightcircle = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconChevronupcircle = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconOsnavback = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconOsnavcenter = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconOsnavhome = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconOsnavtask = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconSignin = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconSignout = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
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"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -63,10 +63,12 @@ export * from './IconArmed';
|
|
|
63
63
|
export * from './IconArmedoff';
|
|
64
64
|
export * from './IconArmedpartially';
|
|
65
65
|
export * from './IconArrowback';
|
|
66
|
+
export * from './IconArrowdown';
|
|
66
67
|
export * from './IconArrowline';
|
|
67
68
|
export * from './IconArrowlinediagonal';
|
|
68
69
|
export * from './IconArrowlinedot';
|
|
69
70
|
export * from './IconArrownext';
|
|
71
|
+
export * from './IconArrowup';
|
|
70
72
|
export * from './IconArtificialinsemination';
|
|
71
73
|
export * from './IconAssistivegrid';
|
|
72
74
|
export * from './IconAstrology';
|
|
@@ -236,9 +238,13 @@ export * from './IconChemistry';
|
|
|
236
238
|
export * from './IconCherry';
|
|
237
239
|
export * from './IconChestpain';
|
|
238
240
|
export * from './IconChevrondown';
|
|
241
|
+
export * from './IconChevrondowncircle';
|
|
239
242
|
export * from './IconChevronleft';
|
|
243
|
+
export * from './IconChevronleftcircle';
|
|
240
244
|
export * from './IconChevronright';
|
|
245
|
+
export * from './IconChevronrightcircle';
|
|
241
246
|
export * from './IconChevronup';
|
|
247
|
+
export * from './IconChevronupcircle';
|
|
242
248
|
export * from './IconChildrengame';
|
|
243
249
|
export * from './IconCholesterol';
|
|
244
250
|
export * from './IconCleaning';
|
|
@@ -757,6 +763,10 @@ export * from './IconOperatingtable';
|
|
|
757
763
|
export * from './IconOperator';
|
|
758
764
|
export * from './IconOrder';
|
|
759
765
|
export * from './IconOrders';
|
|
766
|
+
export * from './IconOsnavback';
|
|
767
|
+
export * from './IconOsnavcenter';
|
|
768
|
+
export * from './IconOsnavhome';
|
|
769
|
+
export * from './IconOsnavtask';
|
|
760
770
|
export * from './IconOtp';
|
|
761
771
|
export * from './IconOutofstock';
|
|
762
772
|
export * from './IconOutgoing';
|
|
@@ -953,6 +963,8 @@ export * from './IconShutter10s';
|
|
|
953
963
|
export * from './IconShutter3s';
|
|
954
964
|
export * from './IconShutter5s';
|
|
955
965
|
export * from './IconSign';
|
|
966
|
+
export * from './IconSignin';
|
|
967
|
+
export * from './IconSignout';
|
|
956
968
|
export * from './IconSim';
|
|
957
969
|
export * from './IconSim1';
|
|
958
970
|
export * from './IconSim2';
|
package/src/icons/registry.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Auto-generated from SVG files in src/icons/
|
|
5
5
|
* DO NOT EDIT MANUALLY - Run "npm run icons:generate" to regenerate
|
|
6
6
|
*
|
|
7
|
-
* Generated: 2026-
|
|
7
|
+
* Generated: 2026-06-02T15:42:11.888Z
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
// Icon name to SVG data mapping
|
|
@@ -261,6 +261,10 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
261
261
|
path: 'M2.28994 12.7099L8.28994 18.7099C8.38318 18.8032 8.49387 18.8771 8.61569 18.9276C8.73751 18.9781 8.86808 19.004 8.99994 19.004C9.1318 19.004 9.26237 18.9781 9.38419 18.9276C9.50601 18.8771 9.6167 18.8032 9.70994 18.7099C9.80318 18.6167 9.87714 18.506 9.9276 18.3842C9.97806 18.2624 10.004 18.1318 10.004 17.9999C10.004 17.8681 9.97806 17.7375 9.9276 17.6157C9.87714 17.4939 9.80318 17.3832 9.70994 17.2899L5.40994 12.9999H20.9999C21.2652 12.9999 21.5195 12.8946 21.707 12.707C21.8946 12.5195 21.9999 12.2652 21.9999 11.9999C21.9999 11.7347 21.8946 11.4804 21.707 11.2928C21.5195 11.1053 21.2652 10.9999 20.9999 10.9999H5.40994L9.70994 6.70994C9.80367 6.61698 9.87806 6.50638 9.92883 6.38452C9.9796 6.26266 10.0057 6.13195 10.0057 5.99994C10.0057 5.86793 9.9796 5.73722 9.92883 5.61536C9.87806 5.4935 9.80367 5.3829 9.70994 5.28994C9.61698 5.19621 9.50637 5.12182 9.38452 5.07105C9.26266 5.02028 9.13195 4.99414 8.99994 4.99414C8.86793 4.99414 8.73722 5.02028 8.61536 5.07105C8.4935 5.12182 8.3829 5.19621 8.28994 5.28994L2.28994 11.2899C2.19621 11.3829 2.12182 11.4935 2.07105 11.6154C2.02028 11.7372 1.99414 11.8679 1.99414 11.9999C1.99414 12.132 2.02028 12.2627 2.07105 12.3845C2.12182 12.5064 2.19621 12.617 2.28994 12.7099Z',
|
|
262
262
|
viewBox: '0 0 24 24',
|
|
263
263
|
},
|
|
264
|
+
'ic_arrow_down': {
|
|
265
|
+
path: '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',
|
|
266
|
+
viewBox: '0 0 24 24',
|
|
267
|
+
},
|
|
264
268
|
'ic_arrow_line': {
|
|
265
269
|
path: 'M20.0001 15.0001C19.4501 15.0001 19.0001 15.4501 19.0001 16.0001V17.5901L4.71007 3.29006C4.32007 2.90006 3.69007 2.90006 3.30007 3.29006C2.91007 3.68006 2.91007 4.31006 3.30007 4.70006L17.5901 18.9901H16.0001C15.4501 18.9901 15.0001 19.4401 15.0001 19.9901C15.0001 20.5401 15.4501 20.9901 16.0001 20.9901H20.0001C20.5501 20.9901 21.0001 20.5401 21.0001 19.9901V15.9901C21.0001 15.4401 20.5501 14.9901 20.0001 14.9901V15.0001Z',
|
|
266
270
|
viewBox: '0 0 24 24',
|
|
@@ -277,6 +281,10 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
277
281
|
path: 'M21.71 11.2902L15.71 5.29019C15.5217 5.10188 15.2663 4.99609 15 4.99609C14.7337 4.99609 14.4783 5.10188 14.29 5.29019C14.1017 5.47849 13.9959 5.73388 13.9959 6.00019C13.9959 6.26649 14.1017 6.52188 14.29 6.71019L18.59 11.0002H3C2.73478 11.0002 2.48043 11.1055 2.29289 11.2931C2.10536 11.4806 2 11.735 2 12.0002C2 12.2654 2.10536 12.5198 2.29289 12.7073C2.48043 12.8948 2.73478 13.0002 3 13.0002H18.59L14.29 17.2902C14.1963 17.3831 14.1219 17.4937 14.0711 17.6156C14.0203 17.7375 13.9942 17.8682 13.9942 18.0002C13.9942 18.1322 14.0203 18.2629 14.0711 18.3848C14.1219 18.5066 14.1963 18.6172 14.29 18.7102C14.383 18.8039 14.4936 18.8783 14.6154 18.9291C14.7373 18.9798 14.868 19.006 15 19.006C15.132 19.006 15.2627 18.9798 15.3846 18.9291C15.5064 18.8783 15.617 18.8039 15.71 18.7102L21.71 12.7102C21.8037 12.6172 21.8781 12.5066 21.9289 12.3848C21.9797 12.2629 22.0058 12.1322 22.0058 12.0002C22.0058 11.8682 21.9797 11.7375 21.9289 11.6156C21.8781 11.4937 21.8037 11.3831 21.71 11.2902Z',
|
|
278
282
|
viewBox: '0 0 24 24',
|
|
279
283
|
},
|
|
284
|
+
'ic_arrow_up': {
|
|
285
|
+
path: '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',
|
|
286
|
+
viewBox: '0 0 24 24',
|
|
287
|
+
},
|
|
280
288
|
'ic_artificial_insemination': {
|
|
281
289
|
path: 'M18 2H6C5.73478 2 5.48043 2.10536 5.29289 2.29289C5.10536 2.48043 5 2.73478 5 3C5 3.26522 5.10536 3.51957 5.29289 3.70711C5.48043 3.89464 5.73478 4 6 4H7V17C7 18.3261 7.52678 19.5979 8.46447 20.5355C9.40215 21.4732 10.6739 22 12 22C13.3261 22 14.5979 21.4732 15.5355 20.5355C16.4732 19.5979 17 18.3261 17 17V4H18C18.2652 4 18.5196 3.89464 18.7071 3.70711C18.8946 3.51957 19 3.26522 19 3C19 2.73478 18.8946 2.48043 18.7071 2.29289C18.5196 2.10536 18.2652 2 18 2ZM12.64 11.23C13.0429 11.5008 13.3762 11.8629 13.6125 12.287C13.8489 12.711 13.9816 13.1849 14 13.67C14.0035 14.343 13.7536 14.9928 13.3 15.49C13.5553 15.7083 13.7514 15.9875 13.8704 16.3016C13.9893 16.6157 14.0272 16.9548 13.9806 17.2874C13.934 17.6201 13.8044 17.9356 13.6036 18.205C13.4029 18.4743 13.1376 18.6887 12.8321 18.8285C12.5267 18.9683 12.191 19.0288 11.8559 19.0047C11.5209 18.9805 11.1974 18.8723 10.9152 18.6901C10.633 18.5079 10.4012 18.2576 10.2413 17.9622C10.0813 17.6668 9.99835 17.3359 10 17C10.0134 16.5152 10.1441 16.0409 10.381 15.6176C10.6178 15.1944 10.9538 14.8349 11.36 14.57C11.87 14.14 12 13.99 12 13.67C12 13.35 11.84 13.17 11.36 12.77C10.9524 12.5041 10.6156 12.143 10.3787 11.7179C10.1417 11.2929 10.0118 10.8165 10 10.33C10.0134 9.84519 10.1441 9.37086 10.381 8.94764C10.6178 8.52443 10.9538 8.16494 11.36 7.9C11.84 7.5 12 7.34 12 7C12 6.73478 12.1054 6.48043 12.2929 6.29289C12.4804 6.10536 12.7348 6 13 6C13.2652 6 13.5196 6.10536 13.7071 6.29289C13.8946 6.48043 14 6.73478 14 7C13.9816 7.48511 13.8489 7.95901 13.6125 8.38305C13.3762 8.80708 13.0429 9.16925 12.64 9.44C12.16 9.84 12 10 12 10.33C12 10.66 12.16 10.83 12.64 11.23Z',
|
|
282
290
|
viewBox: '0 0 24 24',
|
|
@@ -953,18 +961,34 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
953
961
|
path: 'M12.0002 15.0002C11.8686 15.0009 11.7381 14.9757 11.6163 14.926C11.4944 14.8762 11.3836 14.8029 11.2902 14.7102L7.29019 10.7102C7.10188 10.5219 6.99609 10.2665 6.99609 10.0002C6.99609 9.73388 7.10188 9.47849 7.29019 9.29018C7.47849 9.10188 7.73388 8.99609 8.00019 8.99609C8.26649 8.99609 8.52188 9.10188 8.71019 9.29018L12.0002 12.5902L15.2902 9.29018C15.4785 9.10188 15.7339 8.99609 16.0002 8.99609C16.2665 8.99609 16.5219 9.10188 16.7102 9.29018C16.8985 9.47849 17.0043 9.73388 17.0043 10.0002C17.0043 10.2665 16.8985 10.5219 16.7102 10.7102L12.7102 14.7102C12.6167 14.8029 12.5059 14.8762 12.3841 14.926C12.2623 14.9757 12.1318 15.0009 12.0002 15.0002Z',
|
|
954
962
|
viewBox: '0 0 24 24',
|
|
955
963
|
},
|
|
964
|
+
'ic_chevron_down_circle': {
|
|
965
|
+
path: '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',
|
|
966
|
+
viewBox: '0 0 24 24',
|
|
967
|
+
},
|
|
956
968
|
'ic_chevron_left': {
|
|
957
969
|
path: 'M13.9999 17.0002C13.8683 17.0009 13.7379 16.9757 13.616 16.926C13.4942 16.8762 13.3834 16.8029 13.2899 16.7102L9.28994 12.7102C9.19621 12.6172 9.12182 12.5066 9.07105 12.3848C9.02028 12.2629 8.99414 12.1322 8.99414 12.0002C8.99414 11.8682 9.02028 11.7375 9.07105 11.6156C9.12182 11.4937 9.19621 11.3831 9.28994 11.2902L13.2899 7.29019C13.3832 7.19695 13.4939 7.12299 13.6157 7.07253C13.7375 7.02207 13.8681 6.99609 13.9999 6.99609C14.1318 6.99609 14.2624 7.02207 14.3842 7.07253C14.506 7.12299 14.6167 7.19695 14.7099 7.29019C14.8032 7.38342 14.8771 7.49411 14.9276 7.61594C14.9781 7.73776 15.004 7.86833 15.004 8.00019C15.004 8.13204 14.9781 8.26261 14.9276 8.38444C14.8771 8.50626 14.8032 8.61695 14.7099 8.71019L11.4099 12.0002L14.7099 15.2902C14.8037 15.3831 14.8781 15.4937 14.9288 15.6156C14.9796 15.7375 15.0057 15.8682 15.0057 16.0002C15.0057 16.1322 14.9796 16.2629 14.9288 16.3848C14.8781 16.5066 14.8037 16.6172 14.7099 16.7102C14.6165 16.8029 14.5057 16.8762 14.3838 16.926C14.262 16.9757 14.1315 17.0009 13.9999 17.0002Z',
|
|
958
970
|
viewBox: '0 0 24 24',
|
|
959
971
|
},
|
|
972
|
+
'ic_chevron_left_circle': {
|
|
973
|
+
path: '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',
|
|
974
|
+
viewBox: '0 0 24 24',
|
|
975
|
+
},
|
|
960
976
|
'ic_chevron_right': {
|
|
961
977
|
path: 'M9.99994 17.0002C9.86833 17.0009 9.73787 16.9757 9.61603 16.926C9.4942 16.8762 9.38338 16.8029 9.28994 16.7102C9.19621 16.6172 9.12182 16.5066 9.07105 16.3848C9.02028 16.2629 8.99414 16.1322 8.99414 16.0002C8.99414 15.8682 9.02028 15.7375 9.07105 15.6156C9.12182 15.4937 9.19621 15.3831 9.28994 15.2902L12.5899 12.0002L9.28994 8.71019C9.10164 8.52188 8.99585 8.26649 8.99585 8.00019C8.99585 7.86833 9.02182 7.73776 9.07228 7.61594C9.12274 7.49411 9.1967 7.38342 9.28994 7.29019C9.38318 7.19695 9.49387 7.12299 9.61569 7.07253C9.73751 7.02207 9.86808 6.99609 9.99994 6.99609C10.2662 6.99609 10.5216 7.10188 10.7099 7.29019L14.7099 11.2902C14.8037 11.3831 14.8781 11.4937 14.9288 11.6156C14.9796 11.7375 15.0057 11.8682 15.0057 12.0002C15.0057 12.1322 14.9796 12.2629 14.9288 12.3848C14.8781 12.5066 14.8037 12.6172 14.7099 12.7102L10.7099 16.7102C10.6165 16.8029 10.5057 16.8762 10.3838 16.926C10.262 16.9757 10.1315 17.0009 9.99994 17.0002Z',
|
|
962
978
|
viewBox: '0 0 24 24',
|
|
963
979
|
},
|
|
980
|
+
'ic_chevron_right_circle': {
|
|
981
|
+
path: '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',
|
|
982
|
+
viewBox: '0 0 24 24',
|
|
983
|
+
},
|
|
964
984
|
'ic_chevron_up': {
|
|
965
985
|
path: 'M16.0002 14.9999C15.8686 15.0007 15.7381 14.9755 15.6163 14.9257C15.4944 14.8759 15.3836 14.8026 15.2902 14.7099L12.0002 11.4099L8.71019 14.7099C8.52188 14.8982 8.26649 15.004 8.00019 15.004C7.73388 15.004 7.47849 14.8982 7.29019 14.7099C7.10188 14.5216 6.99609 14.2662 6.99609 13.9999C6.99609 13.8681 7.02207 13.7375 7.07253 13.6157C7.12299 13.4939 7.19695 13.3832 7.29019 13.2899L11.2902 9.28994C11.3831 9.19621 11.4937 9.12182 11.6156 9.07105C11.7375 9.02028 11.8682 8.99414 12.0002 8.99414C12.1322 8.99414 12.2629 9.02028 12.3848 9.07105C12.5066 9.12182 12.6172 9.19621 12.7102 9.28994L16.7102 13.2899C16.8039 13.3829 16.8783 13.4935 16.9291 13.6154C16.9798 13.7372 17.006 13.8679 17.006 13.9999C17.006 14.132 16.9798 14.2627 16.9291 14.3845C16.8783 14.5064 16.8039 14.617 16.7102 14.7099C16.6167 14.8026 16.5059 14.8759 16.3841 14.9257C16.2623 14.9755 16.1318 15.0007 16.0002 14.9999Z',
|
|
966
986
|
viewBox: '0 0 24 24',
|
|
967
987
|
},
|
|
988
|
+
'ic_chevron_up_circle': {
|
|
989
|
+
path: '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',
|
|
990
|
+
viewBox: '0 0 24 24',
|
|
991
|
+
},
|
|
968
992
|
'ic_children_game': {
|
|
969
993
|
path: 'M18 3H6C5.20435 3 4.44129 3.31607 3.87868 3.87868C3.31607 4.44129 3 5.20435 3 6V18C3 18.7956 3.31607 19.5587 3.87868 20.1213C4.44129 20.6839 5.20435 21 6 21H18C18.7956 21 19.5587 20.6839 20.1213 20.1213C20.6839 19.5587 21 18.7956 21 18V6C21 5.20435 20.6839 4.44129 20.1213 3.87868C19.5587 3.31607 18.7956 3 18 3ZM15 7C15.3956 7 15.7822 7.1173 16.1111 7.33706C16.44 7.55682 16.6964 7.86918 16.8478 8.23463C16.9991 8.60009 17.0387 9.00222 16.9616 9.39018C16.8844 9.77814 16.6939 10.1345 16.4142 10.4142C16.1345 10.6939 15.7781 10.8844 15.3902 10.9616C15.0022 11.0387 14.6001 10.9991 14.2346 10.8478C13.8692 10.6964 13.5568 10.44 13.3371 10.1111C13.1173 9.78224 13 9.39556 13 9C13 8.46957 13.2107 7.96086 13.5858 7.58579C13.9609 7.21071 14.4696 7 15 7ZM7 8C7 7.73478 7.10536 7.48043 7.29289 7.29289C7.48043 7.10536 7.73478 7 8 7H10C10.2652 7 10.5196 7.10536 10.7071 7.29289C10.8946 7.48043 11 7.73478 11 8V10C11 10.2652 10.8946 10.5196 10.7071 10.7071C10.5196 10.8946 10.2652 11 10 11H8C7.73478 11 7.48043 10.8946 7.29289 10.7071C7.10536 10.5196 7 10.2652 7 10V8ZM11.14 15.39L10.39 16.64C10.3231 16.7498 10.2291 16.8406 10.1171 16.9037C10.005 16.9667 9.87859 16.9999 9.75 17H8.25C8.12141 16.9999 7.99501 16.9667 7.88293 16.9037C7.77085 16.8406 7.67687 16.7498 7.61 16.64L6.86 15.39C6.78624 15.2733 6.74709 15.1381 6.74709 15C6.74709 14.8619 6.78624 14.7267 6.86 14.61L7.61 13.36C7.67687 13.2502 7.77085 13.1594 7.88293 13.0963C7.99501 13.0333 8.12141 13.0001 8.25 13H9.75C9.87859 13.0001 10.005 13.0333 10.1171 13.0963C10.2291 13.1594 10.3231 13.2502 10.39 13.36L11.14 14.61C11.2138 14.7267 11.2529 14.8619 11.2529 15C11.2529 15.1381 11.2138 15.2733 11.14 15.39ZM17 16.63C16.9351 16.7424 16.8418 16.8357 16.7295 16.9006C16.6172 16.9656 16.4898 16.9998 16.36 17H13.62C13.4902 16.9998 13.3628 16.9656 13.2505 16.9006C13.1382 16.8357 13.0449 16.7424 12.98 16.63C12.9141 16.5178 12.8793 16.3901 12.8793 16.26C12.8793 16.1299 12.9141 16.0022 12.98 15.89L14.35 13.39C14.4219 13.2807 14.5199 13.1909 14.6351 13.1288C14.7503 13.0667 14.8791 13.0342 15.01 13.0342C15.1409 13.0342 15.2697 13.0667 15.3849 13.1288C15.5001 13.1909 15.5981 13.2807 15.67 13.39L17 15.89C17.0659 16.0022 17.1007 16.1299 17.1007 16.26C17.1007 16.3901 17.0659 16.5178 17 16.63Z',
|
|
970
994
|
viewBox: '0 0 24 24',
|
|
@@ -3040,6 +3064,22 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
3040
3064
|
path: 'M14.54 3.88005L12.35 3.06005C12.1235 2.97998 11.8765 2.97998 11.65 3.06005L4.00001 5.93005L6.66001 6.93005L14.54 3.88005ZM7.63001 13.2201C7.63001 13.4853 7.52465 13.7396 7.33711 13.9272C7.14958 14.1147 6.89522 14.2201 6.63001 14.2201C6.36479 14.2201 6.11043 14.1147 5.9229 13.9272C5.73536 13.7396 5.63001 13.4853 5.63001 13.2201V8.68005L3.00001 7.69005V17.0001C2.99934 17.2044 3.06128 17.404 3.17749 17.5721C3.2937 17.7401 3.4586 17.8685 3.65001 17.9401L11 20.6901V10.6901L7.63001 9.43005V13.2201ZM17.36 4.94005L9.48 8.00005L12 8.93005L20 5.93005L17.36 4.94005ZM13 10.6901V20.6901L20.35 17.9401C20.5414 17.8685 20.7063 17.7401 20.8225 17.5721C20.9387 17.404 21.0007 17.2044 21 17.0001V7.69005L13 10.6901Z',
|
|
3041
3065
|
viewBox: '0 0 24 24',
|
|
3042
3066
|
},
|
|
3067
|
+
'ic_os_nav_back': {
|
|
3068
|
+
path: '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',
|
|
3069
|
+
viewBox: '0 0 24 24',
|
|
3070
|
+
},
|
|
3071
|
+
'ic_os_nav_center': {
|
|
3072
|
+
path: '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',
|
|
3073
|
+
viewBox: '0 0 24 24',
|
|
3074
|
+
},
|
|
3075
|
+
'ic_os_nav_home': {
|
|
3076
|
+
path: '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',
|
|
3077
|
+
viewBox: '0 0 24 24',
|
|
3078
|
+
},
|
|
3079
|
+
'ic_os_nav_task': {
|
|
3080
|
+
path: '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',
|
|
3081
|
+
viewBox: '0 0 24 24',
|
|
3082
|
+
},
|
|
3043
3083
|
'ic_otp': {
|
|
3044
3084
|
path: 'M10 10.9998H8.24L9.11 9.49978C9.21195 9.27419 9.22661 9.0188 9.15112 8.78303C9.07564 8.54726 8.91538 8.34787 8.70136 8.22344C8.48734 8.09901 8.23478 8.05839 7.99254 8.10944C7.7503 8.16048 7.53561 8.29957 7.39 8.49978L6.5 9.99978L5.61 8.49978C5.55237 8.37228 5.46863 8.25828 5.36419 8.16517C5.25974 8.07206 5.13692 8.00191 5.00366 7.95924C4.8704 7.91658 4.72967 7.90235 4.59057 7.91749C4.45146 7.93263 4.31709 7.97679 4.19612 8.04711C4.07516 8.11744 3.9703 8.21237 3.88832 8.32577C3.80635 8.43917 3.74909 8.5685 3.72023 8.70542C3.69138 8.84234 3.69158 8.98378 3.72083 9.12062C3.75007 9.25745 3.8077 9.38662 3.89 9.49978L4.76 10.9998H3C2.73478 10.9998 2.48043 11.1051 2.29289 11.2927C2.10536 11.4802 2 11.7346 2 11.9998C2 12.265 2.10536 12.5194 2.29289 12.7069C2.48043 12.8944 2.73478 12.9998 3 12.9998H4.76L3.89 14.4998C3.75879 14.7282 3.723 14.9992 3.7904 15.2538C3.85781 15.5084 4.02297 15.7262 4.25 15.8598C4.39929 15.9546 4.5732 16.0033 4.75 15.9998C4.92451 15.9987 5.09571 15.952 5.24658 15.8643C5.39746 15.7766 5.52274 15.6509 5.61 15.4998L6.5 13.9998L7.39 15.5098C7.47726 15.6609 7.60254 15.7866 7.75342 15.8743C7.90429 15.962 8.07549 16.0087 8.25 16.0098C8.4268 16.0133 8.60071 15.9646 8.75 15.8698C8.97703 15.7362 9.14219 15.5184 9.2096 15.2638C9.277 15.0091 9.24121 14.7382 9.11 14.5098L8.24 12.9998H10C10.2652 12.9998 10.5196 12.8944 10.7071 12.7069C10.8946 12.5194 11 12.265 11 11.9998C11 11.7346 10.8946 11.4802 10.7071 11.2927C10.5196 11.1051 10.2652 10.9998 10 10.9998ZM21 10.9998H19.24L20.11 9.49978C20.1923 9.38662 20.2499 9.25745 20.2792 9.12062C20.3084 8.98378 20.3086 8.84234 20.2798 8.70542C20.2509 8.5685 20.1936 8.43917 20.1117 8.32577C20.0297 8.21237 19.9248 8.11744 19.8039 8.04711C19.6829 7.97679 19.5485 7.93263 19.4094 7.91749C19.2703 7.90235 19.1296 7.91658 18.9963 7.95924C18.8631 8.00191 18.7403 8.07206 18.6358 8.16517C18.5314 8.25828 18.4476 8.37228 18.39 8.49978L17.5 9.99978L16.61 8.49978C16.5524 8.37228 16.4686 8.25828 16.3642 8.16517C16.2597 8.07206 16.1369 8.00191 16.0037 7.95924C15.8704 7.91658 15.7297 7.90235 15.5906 7.91749C15.4515 7.93263 15.3171 7.97679 15.1961 8.04711C15.0752 8.11744 14.9703 8.21237 14.8883 8.32577C14.8063 8.43917 14.7491 8.5685 14.7202 8.70542C14.6914 8.84234 14.6916 8.98378 14.7208 9.12062C14.7501 9.25745 14.8077 9.38662 14.89 9.49978L15.76 10.9998H14C13.7348 10.9998 13.4804 11.1051 13.2929 11.2927C13.1054 11.4802 13 11.7346 13 11.9998C13 12.265 13.1054 12.5194 13.2929 12.7069C13.4804 12.8944 13.7348 12.9998 14 12.9998H15.76L14.89 14.4998C14.7588 14.7282 14.723 14.9992 14.7904 15.2538C14.8578 15.5084 15.023 15.7262 15.25 15.8598C15.3993 15.9546 15.5732 16.0033 15.75 15.9998C15.9245 15.9987 16.0957 15.952 16.2466 15.8643C16.3975 15.7766 16.5227 15.6509 16.61 15.4998L17.5 13.9998L18.39 15.5098C18.4773 15.6609 18.6025 15.7866 18.7534 15.8743C18.9043 15.962 19.0755 16.0087 19.25 16.0098C19.4268 16.0133 19.6007 15.9646 19.75 15.8698C19.977 15.7362 20.1422 15.5184 20.2096 15.2638C20.277 15.0091 20.2412 14.7382 20.11 14.5098L19.24 12.9998H21C21.2652 12.9998 21.5196 12.8944 21.7071 12.7069C21.8946 12.5194 22 12.265 22 11.9998C22 11.7346 21.8946 11.4802 21.7071 11.2927C21.5196 11.1051 21.2652 10.9998 21 10.9998Z',
|
|
3045
3085
|
viewBox: '0 0 24 24',
|
|
@@ -3825,6 +3865,14 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
3825
3865
|
path: 'M20.3 3.69998C17.5635 2.74975 14.5865 2.74975 11.85 3.69998C8.56525 4.8236 5.86082 7.20513 4.3308 10.3214C2.80078 13.4377 2.57031 17.0339 3.69001 20.32C3.75709 20.5186 3.8849 20.6911 4.05538 20.8131C4.22585 20.9352 4.43036 21.0005 4.64001 21C4.75938 21.0174 4.88063 21.0174 5.00001 21C5.25053 20.9136 5.45653 20.7314 5.57278 20.4933C5.68903 20.2551 5.70601 19.9806 5.62001 19.73C5.39419 19.0364 5.23349 18.3234 5.14001 17.6C5.93115 17.7508 6.73461 17.8278 7.54001 17.83C10.1196 17.835 12.6464 17.0992 14.82 15.71C15.0022 15.5876 15.1391 15.4088 15.2095 15.201C15.28 14.9931 15.2802 14.7679 15.21 14.56L14 11L18.06 11.68C18.2534 11.7095 18.4512 11.6817 18.629 11.5999C18.8067 11.5182 18.9566 11.3861 19.06 11.22C20.2563 9.23853 20.9242 6.98331 21 4.66998C21.0035 4.45445 20.9372 4.24357 20.811 4.06877C20.6849 3.89398 20.5056 3.76462 20.3 3.69998Z',
|
|
3826
3866
|
viewBox: '0 0 24 24',
|
|
3827
3867
|
},
|
|
3868
|
+
'ic_sign_in': {
|
|
3869
|
+
path: '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',
|
|
3870
|
+
viewBox: '0 0 24 24',
|
|
3871
|
+
},
|
|
3872
|
+
'ic_sign_out': {
|
|
3873
|
+
path: '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',
|
|
3874
|
+
viewBox: '0 0 24 24',
|
|
3875
|
+
},
|
|
3828
3876
|
'ic_sim': {
|
|
3829
3877
|
path: 'M15.9998 2.00019H10.9998C10.5433 1.99502 10.0916 2.09412 9.67914 2.28995C9.2667 2.48577 8.90439 2.77315 8.61982 3.13019L5.61982 6.83019C5.20854 7.36596 4.99009 8.02484 4.99982 8.70019V19.0002C4.99982 19.7958 5.31589 20.5589 5.8785 21.1215C6.44111 21.6841 7.20417 22.0002 7.99982 22.0002H15.9998C16.7955 22.0002 17.5585 21.6841 18.1211 21.1215C18.6838 20.5589 18.9998 19.7958 18.9998 19.0002V5.00019C18.9998 4.20454 18.6838 3.44148 18.1211 2.87887C17.5585 2.31626 16.7955 2.00019 15.9998 2.00019ZM6.99982 12.0002H9.99982V15.0002H6.99982V12.0002ZM11.9998 20.0002H7.99982C7.73461 20.0002 7.48025 19.8948 7.29272 19.7073C7.10518 19.5198 6.99982 19.2654 6.99982 19.0002V17.0002H11.9998V20.0002ZM16.9998 19.0002C16.9998 19.2654 16.8945 19.5198 16.7069 19.7073C16.5194 19.8948 16.265 20.0002 15.9998 20.0002H13.9998V17.0002H16.9998V19.0002ZM16.9998 15.0002H11.9998V12.0002H16.9998V15.0002Z',
|
|
3830
3878
|
viewBox: '0 0 24 24',
|