@hero-design/rn 8.25.3 → 8.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/.eslintrc.js +2 -1
  2. package/.turbo/turbo-build.log +8 -9
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +350 -198
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +350 -198
  7. package/package.json +6 -5
  8. package/src/components/FAB/ActionGroup/ActionItem.tsx +6 -1
  9. package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +17 -3
  10. package/src/components/FAB/ActionGroup/StyledActionItem.tsx +1 -4
  11. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +704 -1040
  12. package/src/components/FAB/ActionGroup/__tests__/index.spec.tsx +9 -15
  13. package/src/components/FAB/ActionGroup/index.tsx +111 -43
  14. package/src/components/FAB/AnimatedFABIcon.tsx +5 -3
  15. package/src/components/FAB/FAB.tsx +16 -3
  16. package/src/components/FAB/StyledFAB.tsx +10 -3
  17. package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +4 -4
  18. package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +1 -2
  19. package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +74 -43
  20. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  21. package/src/components/Icon/IconList.ts +1 -0
  22. package/src/components/Switch/SelectorSwitch/Option.tsx +31 -5
  23. package/src/components/Switch/SelectorSwitch/StyledSelectorSwitch.tsx +18 -4
  24. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +25 -18
  25. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +49 -18
  26. package/src/components/Switch/SelectorSwitch/index.tsx +81 -17
  27. package/src/components/Switch/index.tsx +1 -0
  28. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +8 -9
  29. package/src/theme/components/fab.ts +8 -9
  30. package/types/components/FAB/ActionGroup/ActionItem.d.ts +1 -0
  31. package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +7 -1
  32. package/types/components/FAB/StyledFAB.d.ts +5 -1
  33. package/types/components/Icon/IconList.d.ts +1 -1
  34. package/types/components/Icon/index.d.ts +1 -1
  35. package/types/components/Icon/utils.d.ts +1 -1
  36. package/types/components/Switch/SelectorSwitch/Option.d.ts +4 -1
  37. package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +15 -9
  38. package/types/components/Switch/SelectorSwitch/index.d.ts +1 -1
  39. package/types/theme/components/fab.d.ts +5 -6
@@ -1,11 +1,12 @@
1
- import React from 'react';
2
1
  import type { ReactElement } from 'react';
2
+ import React, { useEffect, useRef } from 'react';
3
+ import { Animated, Easing, LayoutChangeEvent, Platform } from 'react-native';
3
4
  import type { BadgeConfigType, OptionType } from '.';
4
5
  import { useTheme } from '../../../theme';
5
- import { StyledIconWrapper, StyledTextWrapper } from './StyledSelectorSwitch';
6
- import Typography from '../../Typography';
7
6
  import Badge from '../../Badge';
8
7
  import Icon from '../../Icon';
8
+ import Typography from '../../Typography';
9
+ import { StyledIconWrapper, StyledTextWrapper } from './StyledSelectorSwitch';
9
10
 
10
11
  export const OptionContent = ({
11
12
  content,
@@ -39,12 +40,34 @@ const Option = <T,>({
39
40
  icon,
40
41
  badge,
41
42
  selected,
43
+ onLayout,
44
+ index = 0,
42
45
  }: Pick<OptionType<T>, 'text' | 'icon' | 'badge'> & {
43
46
  selected: boolean;
47
+ onLayout?: (e: LayoutChangeEvent) => void;
48
+ index?: number;
44
49
  }): ReactElement => {
50
+ const animatedValue = useRef(new Animated.Value(1)).current;
51
+ const translateX = animatedValue.interpolate({
52
+ inputRange: [0, 1],
53
+ outputRange: index === 1 ? [-5, 0] : [5, 0],
54
+ });
55
+
56
+ useEffect(() => {
57
+ Animated.timing(animatedValue, {
58
+ toValue: selected ? 1 : 0,
59
+ duration: 200,
60
+ easing: Easing.linear,
61
+ useNativeDriver: Platform.OS === 'ios' || Platform.OS === 'android',
62
+ }).start();
63
+ }, [selected]);
64
+
45
65
  if (selected) {
46
66
  return (
47
- <StyledTextWrapper>
67
+ <StyledTextWrapper
68
+ style={{ transform: [{ translateX }] }}
69
+ onLayout={onLayout}
70
+ >
48
71
  <OptionContent
49
72
  content={<Typography.Text fontSize="large">{text}</Typography.Text>}
50
73
  badge={badge}
@@ -54,7 +77,10 @@ const Option = <T,>({
54
77
  }
55
78
 
56
79
  return (
57
- <StyledIconWrapper>
80
+ <StyledIconWrapper
81
+ style={{ transform: [{ translateX }] }}
82
+ onLayout={onLayout}
83
+ >
58
84
  <OptionContent content={<Icon icon={icon} />} badge={badge} />
59
85
  </StyledIconWrapper>
60
86
  );
@@ -1,5 +1,7 @@
1
1
  import styled from '@emotion/native';
2
- import { View } from 'react-native';
2
+ import { View, Animated } from 'react-native';
3
+
4
+ const AnimatedView = Animated.createAnimatedComponent(View);
3
5
 
4
6
  export const StyledWrapper = styled(View)(({ theme }) => ({
5
7
  flexDirection: 'row',
@@ -8,18 +10,30 @@ export const StyledWrapper = styled(View)(({ theme }) => ({
8
10
  borderRadius: theme.__hd__.switch.radii.selector.default,
9
11
  backgroundColor: theme.__hd__.switch.colors.selector.background,
10
12
  padding: theme.__hd__.switch.spaces.selector.wrapperPadding,
13
+ position: 'relative',
11
14
  }));
12
15
 
13
- export const StyledTextWrapper = styled(View)(({ theme }) => ({
16
+ export const StyledTextWrapper = styled(AnimatedView)(({ theme }) => ({
14
17
  flex: 1,
15
18
  borderRadius: theme.__hd__.switch.radii.selector.default,
16
- backgroundColor: theme.__hd__.switch.colors.selector.textBackground,
17
19
  justifyContent: 'center',
18
20
  alignItems: 'center',
21
+ zIndex: 1,
19
22
  }));
20
23
 
21
- export const StyledIconWrapper = styled(View)(({ theme }) => ({
24
+ export const StyledIconWrapper = styled(AnimatedView)(({ theme }) => ({
22
25
  paddingHorizontal: theme.__hd__.switch.spaces.selector.iconPadding,
23
26
  justifyContent: 'center',
24
27
  alignItems: 'center',
28
+ zIndex: 1,
29
+ }));
30
+
31
+ export const StyledKnot = styled(AnimatedView)(({ theme }) => ({
32
+ borderRadius: theme.__hd__.switch.radii.selector.default,
33
+ backgroundColor: theme.__hd__.switch.colors.selector.textBackground,
34
+ position: 'absolute',
35
+ top: theme.__hd__.switch.spaces.selector.wrapperPadding,
36
+ bottom: theme.__hd__.switch.spaces.selector.wrapperPadding,
37
+ left: theme.__hd__.switch.spaces.selector.wrapperPadding,
38
+ right: theme.__hd__.switch.spaces.selector.wrapperPadding,
25
39
  }));
@@ -2,15 +2,19 @@
2
2
 
3
3
  exports[`Option renders correctly when not selected 1`] = `
4
4
  <View
5
+ collapsable={false}
5
6
  style={
6
- Array [
7
- Object {
8
- "alignItems": "center",
9
- "justifyContent": "center",
10
- "paddingHorizontal": 16,
11
- },
12
- undefined,
13
- ]
7
+ Object {
8
+ "alignItems": "center",
9
+ "justifyContent": "center",
10
+ "paddingHorizontal": 16,
11
+ "transform": Array [
12
+ Object {
13
+ "translateX": 0,
14
+ },
15
+ ],
16
+ "zIndex": 1,
17
+ }
14
18
  }
15
19
  >
16
20
  <View
@@ -62,17 +66,20 @@ exports[`Option renders correctly when not selected 1`] = `
62
66
 
63
67
  exports[`Option renders correctly when selected 1`] = `
64
68
  <View
69
+ collapsable={false}
65
70
  style={
66
- Array [
67
- Object {
68
- "alignItems": "center",
69
- "backgroundColor": "#ffffff",
70
- "borderRadius": 999,
71
- "flex": 1,
72
- "justifyContent": "center",
73
- },
74
- undefined,
75
- ]
71
+ Object {
72
+ "alignItems": "center",
73
+ "borderRadius": 999,
74
+ "flex": 1,
75
+ "justifyContent": "center",
76
+ "transform": Array [
77
+ Object {
78
+ "translateX": 0,
79
+ },
80
+ ],
81
+ "zIndex": 1,
82
+ }
76
83
  }
77
84
  >
78
85
  <View
@@ -5,6 +5,7 @@ exports[`SelectorSwitch renders correctly 1`] = `
5
5
  accessible={true}
6
6
  focusable={true}
7
7
  onClick={[Function]}
8
+ onLayout={[Function]}
8
9
  onResponderGrant={[Function]}
9
10
  onResponderMove={[Function]}
10
11
  onResponderRelease={[Function]}
@@ -19,6 +20,7 @@ exports[`SelectorSwitch renders correctly 1`] = `
19
20
  "flexDirection": "row",
20
21
  "height": 56,
21
22
  "padding": 4,
23
+ "position": "relative",
22
24
  "width": "100%",
23
25
  },
24
26
  undefined,
@@ -26,17 +28,21 @@ exports[`SelectorSwitch renders correctly 1`] = `
26
28
  }
27
29
  >
28
30
  <View
31
+ collapsable={false}
32
+ onLayout={[Function]}
29
33
  style={
30
- Array [
31
- Object {
32
- "alignItems": "center",
33
- "backgroundColor": "#ffffff",
34
- "borderRadius": 999,
35
- "flex": 1,
36
- "justifyContent": "center",
37
- },
38
- undefined,
39
- ]
34
+ Object {
35
+ "alignItems": "center",
36
+ "borderRadius": 999,
37
+ "flex": 1,
38
+ "justifyContent": "center",
39
+ "transform": Array [
40
+ Object {
41
+ "translateX": 0,
42
+ },
43
+ ],
44
+ "zIndex": 1,
45
+ }
40
46
  }
41
47
  >
42
48
  <Text
@@ -62,15 +68,20 @@ exports[`SelectorSwitch renders correctly 1`] = `
62
68
  </Text>
63
69
  </View>
64
70
  <View
71
+ collapsable={false}
72
+ onLayout={[Function]}
65
73
  style={
66
- Array [
67
- Object {
68
- "alignItems": "center",
69
- "justifyContent": "center",
70
- "paddingHorizontal": 16,
71
- },
72
- undefined,
73
- ]
74
+ Object {
75
+ "alignItems": "center",
76
+ "justifyContent": "center",
77
+ "paddingHorizontal": 16,
78
+ "transform": Array [
79
+ Object {
80
+ "translateX": 0,
81
+ },
82
+ ],
83
+ "zIndex": 1,
84
+ }
74
85
  }
75
86
  >
76
87
  <View
@@ -118,5 +129,25 @@ exports[`SelectorSwitch renders correctly 1`] = `
118
129
  />
119
130
  </View>
120
131
  </View>
132
+ <View
133
+ collapsable={false}
134
+ style={
135
+ Object {
136
+ "backgroundColor": "#ffffff",
137
+ "borderRadius": 999,
138
+ "bottom": 4,
139
+ "left": 4,
140
+ "position": "absolute",
141
+ "right": 4,
142
+ "top": 4,
143
+ "transform": Array [
144
+ Object {
145
+ "translateX": 0,
146
+ },
147
+ ],
148
+ "width": 0,
149
+ }
150
+ }
151
+ />
121
152
  </View>
122
153
  `;
@@ -1,9 +1,23 @@
1
- import React from 'react';
2
- import type { ReactElement } from 'react';
3
- import { StyleProp, TouchableWithoutFeedback, ViewStyle } from 'react-native';
4
- import { StyledWrapper } from './StyledSelectorSwitch';
1
+ import React, {
2
+ ReactElement,
3
+ useCallback,
4
+ useEffect,
5
+ useRef,
6
+ useState,
7
+ } from 'react';
8
+ import {
9
+ Animated,
10
+ Platform,
11
+ StyleProp,
12
+ TouchableWithoutFeedback,
13
+ ViewStyle,
14
+ Easing,
15
+ LayoutChangeEvent,
16
+ } from 'react-native';
17
+ import { useTheme } from '@emotion/react';
5
18
  import type { IconName } from '../../Icon';
6
19
  import Option from './Option';
20
+ import { StyledKnot, StyledWrapper } from './StyledSelectorSwitch';
7
21
 
8
22
  type StatusBadgeType = {
9
23
  type: 'status';
@@ -46,18 +60,68 @@ const SelectorSwitch = <T,>({
46
60
  onPress,
47
61
  style,
48
62
  testID,
49
- }: SelectorSwitchProps<T>): ReactElement => (
50
- <TouchableWithoutFeedback
51
- onPress={onPress !== undefined ? () => onPress(value) : undefined}
52
- testID={testID}
53
- >
54
- <StyledWrapper style={style}>
55
- {options.map((opt, index) => (
56
- // eslint-disable-next-line react/no-array-index-key
57
- <Option {...opt} selected={opt.value === value} key={index} />
58
- ))}
59
- </StyledWrapper>
60
- </TouchableWithoutFeedback>
61
- );
63
+ }: SelectorSwitchProps<T>): ReactElement => {
64
+ const theme = useTheme();
65
+ const [knotWidth, setKnotWidth] = useState(0);
66
+ const [containerWidth, setContainerWidth] = useState(0);
67
+ const animatedValue = useRef(new Animated.Value(0)).current;
68
+
69
+ const translateX = animatedValue.interpolate({
70
+ inputRange: [0, 1],
71
+ outputRange: [
72
+ 0,
73
+ Math.floor(containerWidth - knotWidth - theme.space.small),
74
+ ],
75
+ });
76
+
77
+ useEffect(() => {
78
+ Animated.timing(animatedValue, {
79
+ toValue: value === options[0].value ? 0 : 1,
80
+ duration: 200,
81
+ easing: Easing.inOut(Easing.ease),
82
+ useNativeDriver: Platform.OS === 'ios' || Platform.OS === 'android',
83
+ }).start();
84
+ }, [value]);
85
+
86
+ const onContainerLayout = useCallback(
87
+ (e: LayoutChangeEvent) => {
88
+ setContainerWidth(e.nativeEvent.layout.width);
89
+ },
90
+ [options]
91
+ );
92
+
93
+ const onItemLayout = useCallback(
94
+ (e: LayoutChangeEvent, optionValue: T) => {
95
+ if (optionValue === value) {
96
+ setKnotWidth(e.nativeEvent.layout.width);
97
+ }
98
+ },
99
+ [value]
100
+ );
101
+
102
+ return (
103
+ <TouchableWithoutFeedback onPress={() => onPress?.(value)} testID={testID}>
104
+ <StyledWrapper onLayout={onContainerLayout} style={style}>
105
+ {options.map((opt, index) => (
106
+ <Option
107
+ {...opt}
108
+ selected={opt.value === value}
109
+ // eslint-disable-next-line react/no-array-index-key
110
+ key={index}
111
+ onLayout={(e) => onItemLayout(e, opt.value)}
112
+ index={index}
113
+ />
114
+ ))}
115
+
116
+ <StyledKnot
117
+ style={{
118
+ width: knotWidth,
119
+ transform: [{ translateX }],
120
+ }}
121
+ />
122
+ </StyledWrapper>
123
+ </TouchableWithoutFeedback>
124
+ );
125
+ };
62
126
 
63
127
  export default SelectorSwitch;
@@ -65,6 +65,7 @@ const Switch = ({
65
65
  Animated.timing(animatedOffset, {
66
66
  toValue: offset,
67
67
  easing: Easing.inOut(Easing.cubic),
68
+ duration: 200,
68
69
  useNativeDriver: false,
69
70
  }).start();
70
71
  }, [checked]);
@@ -457,7 +457,7 @@ Object {
457
457
  },
458
458
  "fab": Object {
459
459
  "colors": Object {
460
- "actionItemBackground": "#401960",
460
+ "actionItemBackground": "#795e90",
461
461
  "actionItemPressedBackground": "#664780",
462
462
  "actionItemText": "#ffffff",
463
463
  "backdropBackground": "#000000",
@@ -469,7 +469,7 @@ Object {
469
469
  "titleText": "#ffffff",
470
470
  },
471
471
  "fontSizes": Object {
472
- "actionItemText": 14,
472
+ "actionItemText": 16,
473
473
  "header": 24,
474
474
  "title": 16,
475
475
  },
@@ -498,22 +498,21 @@ Object {
498
498
  },
499
499
  "sizes": Object {
500
500
  "height": 64,
501
+ "iconContainerHeight": 24,
502
+ "iconContainerWidth": 24,
501
503
  "width": 64,
502
504
  },
503
505
  "space": Object {
504
506
  "actionItemMargin": 8,
505
507
  "actionItemMarginRight": 24,
506
- "actionItemPaddingBottom": 8,
507
- "actionItemPaddingLeft": 16,
508
- "actionItemPaddingRight": 16,
509
- "actionItemPaddingTop": 8,
510
- "actionItemTextPaddingLeft": 8,
508
+ "actionItemPadding": 12,
509
+ "actionItemTextPaddingLeft": 4,
511
510
  "buttonMarginRight": 24,
512
511
  "buttonMarginTop": 24,
513
- "containerPaddingHorizontal": 16,
514
- "containerPaddingVertical": 16,
512
+ "containerPadding": 20,
515
513
  "headerTextMarginBottom": 24,
516
514
  "headerTextMarginRight": 24,
515
+ "internalFABMarginBottom": 24,
517
516
  "titleMarginHorizontal": 8,
518
517
  },
519
518
  },
@@ -6,7 +6,7 @@ const getFABTheme = (theme: GlobalTheme) => {
6
6
  buttonPressedBackground: theme.colors.pressedSurface,
7
7
  icon: theme.colors.onPrimary,
8
8
  headerText: theme.colors.onDefaultGlobalSurface,
9
- actionItemBackground: theme.colors.primary,
9
+ actionItemBackground: theme.colors.secondary,
10
10
  actionItemPressedBackground: theme.colors.pressedSurface,
11
11
  backdropBackground: theme.colors.overlayGlobalSurface,
12
12
  titleText: theme.colors.onPrimary,
@@ -17,6 +17,8 @@ const getFABTheme = (theme: GlobalTheme) => {
17
17
  const sizes = {
18
18
  width: theme.sizes.xxxxxlarge,
19
19
  height: theme.sizes.xxxxxlarge,
20
+ iconContainerWidth: theme.sizes.large,
21
+ iconContainerHeight: theme.sizes.large,
20
22
  };
21
23
 
22
24
  const fonts = {
@@ -27,7 +29,7 @@ const getFABTheme = (theme: GlobalTheme) => {
27
29
 
28
30
  const fontSizes = {
29
31
  header: theme.fontSizes.xxxlarge,
30
- actionItemText: theme.fontSizes.medium,
32
+ actionItemText: theme.fontSizes.large,
31
33
  title: theme.fontSizes.large,
32
34
  };
33
35
 
@@ -46,20 +48,17 @@ const getFABTheme = (theme: GlobalTheme) => {
46
48
  };
47
49
 
48
50
  const space = {
49
- actionItemPaddingLeft: theme.space.medium,
50
- actionItemPaddingRight: theme.space.medium,
51
- actionItemPaddingTop: theme.space.small,
52
- actionItemPaddingBottom: theme.space.small,
51
+ actionItemPadding: theme.space.smallMedium,
53
52
  actionItemMargin: theme.space.small,
54
53
  actionItemMarginRight: theme.space.large,
55
- actionItemTextPaddingLeft: theme.space.small,
54
+ actionItemTextPaddingLeft: theme.space.xsmall,
56
55
  buttonMarginTop: theme.space.large,
57
56
  buttonMarginRight: theme.space.large,
58
57
  headerTextMarginRight: theme.space.large,
59
58
  headerTextMarginBottom: theme.space.large,
60
- containerPaddingHorizontal: theme.space.medium,
61
- containerPaddingVertical: theme.space.medium,
59
+ containerPadding: theme.space.large - theme.space.xsmall,
62
60
  titleMarginHorizontal: theme.space.small,
61
+ internalFABMarginBottom: theme.space.large,
63
62
  };
64
63
 
65
64
  const radii = {
@@ -7,6 +7,7 @@ export interface ActionItemProps {
7
7
  icon: ComponentProps<typeof Icon>['icon'];
8
8
  onPress?: () => void;
9
9
  style?: StyleProp<ViewStyle>;
10
+ key?: string;
10
11
  }
11
12
  declare const ActionItem: ({ icon, title, onPress, style, testID, }: ActionItemProps) => JSX.Element;
12
13
  export default ActionItem;
@@ -28,4 +28,10 @@ declare const StyledHeaderText: import("@emotion/native").StyledComponent<TextPr
28
28
  theme?: import("@emotion/react").Theme | undefined;
29
29
  as?: import("react").ElementType<any> | undefined;
30
30
  }, {}, {}>;
31
- export { StyledHeaderText, StyledBackdrop, StyledContainer, StyledActionGroupContainer, StyledFAB, };
31
+ declare const StyledModalView: import("@emotion/native").StyledComponent<ViewProps & {
32
+ theme?: import("@emotion/react").Theme | undefined;
33
+ as?: import("react").ElementType<any> | undefined;
34
+ }, {}, {
35
+ ref?: import("react").Ref<View> | undefined;
36
+ }>;
37
+ export { StyledHeaderText, StyledBackdrop, StyledContainer, StyledActionGroupContainer, StyledFAB, StyledModalView, };
@@ -16,4 +16,8 @@ declare const StyledFABText: import("@emotion/native").StyledComponent<import(".
16
16
  theme?: import("@emotion/react").Theme | undefined;
17
17
  as?: import("react").ElementType<any> | undefined;
18
18
  } & TextProps, {}, {}>;
19
- export { StyledFAB, StyledFABIcon, StyledFABText };
19
+ declare const StyledIconContainer: import("@emotion/native").StyledComponent<import("../Box").BoxProps & {
20
+ theme?: import("@emotion/react").Theme | undefined;
21
+ as?: import("react").ElementType<any> | undefined;
22
+ }, {}, {}>;
23
+ export { StyledFAB, StyledFABIcon, StyledFABText, StyledIconContainer };
@@ -1,2 +1,2 @@
1
- declare const IconList: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bolt", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "double-buildings", "edit-template", "envelope", "exclude", "expense", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "home", "image", "import", "incident-siren", "instapay", "list", "loading-2", "loading", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "surfing", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "switch", "tag", "target", "teams", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "beer-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "billing-outlined", "body-outlined", "bold", "book-outlined", "bookmark-added-outlined", "bookmark-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "coin-super-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cup-outlined", "dentistry-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-outlined", "edit-template-outlined", "email-outlined", "enter-arrow", "envelope-outlined", "expense-outlined", "explore-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "fastfood-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "folder-outlined", "folder-user-outlined", "form-outlined", "funnel-filter-outline", "graph-outlined", "hand-holding-user-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "link-1", "link-2", "list-outlined", "live-help-outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "return-arrow", "rostering-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "stopwatch-outlined", "strikethrough", "styler-outlined", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "tag-outlined", "target-outlined", "tennis-outlined", "ticket-outlined", "timesheet-outlined", "today-outlined", "transfer", "trash-bin-outlined", "umbrela-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "volunteer-outlined", "wallet-outlined"];
1
+ declare const IconList: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bolt", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "double-buildings", "edit-template", "envelope", "exclude", "expense", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "home", "image", "import", "incident-siren", "instapay", "list", "loading-2", "loading", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "surfing", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "switch", "tag", "target", "teams", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "beer-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "billing-outlined", "body-outlined", "bold", "book-outlined", "bookmark-added-outlined", "bookmark-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "coin-super-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cup-outlined", "dentistry-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-box-outlined", "download-outlined", "edit-template-outlined", "email-outlined", "enter-arrow", "envelope-outlined", "expense-outlined", "explore-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "fastfood-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "folder-outlined", "folder-user-outlined", "form-outlined", "funnel-filter-outline", "graph-outlined", "hand-holding-user-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "link-1", "link-2", "list-outlined", "live-help-outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "return-arrow", "rostering-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "stopwatch-outlined", "strikethrough", "styler-outlined", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "tag-outlined", "target-outlined", "tennis-outlined", "ticket-outlined", "timesheet-outlined", "today-outlined", "transfer", "trash-bin-outlined", "umbrela-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "volunteer-outlined", "wallet-outlined"];
2
2
  export default IconList;
@@ -29,6 +29,6 @@ export interface IconProps extends AccessibilityProps {
29
29
  }
30
30
  declare const Icon: {
31
31
  ({ icon, style, size, intent, testID, spin, accessibilityLabel, accessibilityHint, accessibilityRole, accessibilityState, accessibilityValue, accessibilityLiveRegion, accessibilityElementsHidden, accessible, accessibilityIgnoresInvertColors, accessibilityViewIsModal, accessibilityActions, }: IconProps): JSX.Element;
32
- List: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bolt", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "double-buildings", "edit-template", "envelope", "exclude", "expense", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "home", "image", "import", "incident-siren", "instapay", "list", "loading-2", "loading", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "surfing", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "switch", "tag", "target", "teams", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "beer-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "billing-outlined", "body-outlined", "bold", "book-outlined", "bookmark-added-outlined", "bookmark-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "coin-super-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cup-outlined", "dentistry-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-outlined", "edit-template-outlined", "email-outlined", "enter-arrow", "envelope-outlined", "expense-outlined", "explore-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "fastfood-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "folder-outlined", "folder-user-outlined", "form-outlined", "funnel-filter-outline", "graph-outlined", "hand-holding-user-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "link-1", "link-2", "list-outlined", "live-help-outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "return-arrow", "rostering-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "stopwatch-outlined", "strikethrough", "styler-outlined", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "tag-outlined", "target-outlined", "tennis-outlined", "ticket-outlined", "timesheet-outlined", "today-outlined", "transfer", "trash-bin-outlined", "umbrela-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "volunteer-outlined", "wallet-outlined"];
32
+ List: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bolt", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "double-buildings", "edit-template", "envelope", "exclude", "expense", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "home", "image", "import", "incident-siren", "instapay", "list", "loading-2", "loading", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "surfing", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "switch", "tag", "target", "teams", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "beer-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "billing-outlined", "body-outlined", "bold", "book-outlined", "bookmark-added-outlined", "bookmark-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "coin-super-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cup-outlined", "dentistry-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-box-outlined", "download-outlined", "edit-template-outlined", "email-outlined", "enter-arrow", "envelope-outlined", "expense-outlined", "explore-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "fastfood-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "folder-outlined", "folder-user-outlined", "form-outlined", "funnel-filter-outline", "graph-outlined", "hand-holding-user-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "link-1", "link-2", "list-outlined", "live-help-outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "return-arrow", "rostering-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "stopwatch-outlined", "strikethrough", "styler-outlined", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "tag-outlined", "target-outlined", "tennis-outlined", "ticket-outlined", "timesheet-outlined", "today-outlined", "transfer", "trash-bin-outlined", "umbrela-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "volunteer-outlined", "wallet-outlined"];
33
33
  };
34
34
  export default Icon;