@bitrise/bitkit 12.72.13-0 → 12.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,7 +11,7 @@ Based on [Chakra UI](https://chakra-ui.com/).
11
11
  ```
12
12
  git clone git@github.com:bitrise-io/bitkit.git
13
13
  cd bitkit
14
- npm i
14
+ yarn install
15
15
  ```
16
16
 
17
17
  ### Technology
@@ -23,19 +23,19 @@ npm i
23
23
 
24
24
  ### Scripts
25
25
 
26
- #### `$ npm run storybook`
26
+ #### `$ yarn storybook`
27
27
 
28
28
  Runs Storybook server
29
29
 
30
- #### `$ npm run start`
30
+ #### `$ yarn start`
31
31
 
32
- Runs `npm run storybook`
32
+ Runs `yarn storybook`
33
33
 
34
- #### `$ npm run lint`
34
+ #### `$ yarn lint`
35
35
 
36
36
  Runs Javascript linting
37
37
 
38
- #### `$ npm run test`
38
+ #### `$ yarn test`
39
39
 
40
40
  Runs the unit tests for the library components
41
41
 
package/package.json CHANGED
@@ -1,22 +1,18 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "12.72.13-0",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
8
- },
4
+ "version": "12.73.0",
5
+ "repository": "git@github.com:bitrise-io/bitkit.git",
9
6
  "main": "src/index.ts",
10
7
  "license": "UNLICENSED",
11
8
  "scripts": {
12
- "build-storybook": "storybook build",
9
+ "commitlint": "commitlint",
13
10
  "lint": "eslint src --ext ts,tsx",
14
- "start": "npm run storybook",
15
- "storybook": "storybook dev -p 6006",
11
+ "semantic-release": "semantic-release",
12
+ "start": "yarn storybook",
16
13
  "test": "jest",
17
- "typecheck": "tsc -p src --noEmit",
18
- "release": "npm version patch && npm publish",
19
- "release-alpha": "npm version prepatch && npm publish --tag alpha"
14
+ "storybook": "storybook dev -p 6006",
15
+ "build-storybook": "storybook build"
20
16
  },
21
17
  "alias": {
22
18
  "@bitrise/bitkit": "./src",
@@ -29,10 +25,10 @@
29
25
  "@chakra-ui/theme": "^3.3.1",
30
26
  "@chakra-ui/theme-tools": "^2.1.2",
31
27
  "@chakra-ui/utils": "^2.0.15",
32
- "@emotion/react": "^11.11.3",
28
+ "@emotion/react": "^11.11.1",
33
29
  "@emotion/styled": "^11.11.0",
34
30
  "@floating-ui/react-dom-interactions": "^0.8.1",
35
- "framer-motion": "^10.18.0",
31
+ "framer-motion": "^10.16.16",
36
32
  "luxon": "^3.4.4",
37
33
  "react": "^18.2.0",
38
34
  "react-dom": "^18.2.0",
@@ -44,37 +40,42 @@
44
40
  "react-dom": "^18.2.0"
45
41
  },
46
42
  "devDependencies": {
47
- "@babel/core": "^7.23.7",
48
- "@babel/preset-env": "^7.23.8",
43
+ "@babel/core": "^7.23.6",
44
+ "@babel/preset-env": "^7.23.6",
49
45
  "@babel/preset-react": "^7.23.3",
50
46
  "@babel/preset-typescript": "^7.23.3",
51
47
  "@bitrise/eslint-plugin": "^2.3.3",
48
+ "@commitlint/cli": "^17.8.0",
49
+ "@commitlint/config-conventional": "^17.8.0",
52
50
  "@google-cloud/storage": "^7.7.0",
53
- "@storybook/addon-actions": "^7.6.7",
54
- "@storybook/addon-essentials": "^7.6.7",
55
- "@storybook/addon-interactions": "^7.6.7",
56
- "@storybook/addon-links": "^7.6.7",
57
- "@storybook/addons": "^7.6.7",
58
- "@storybook/blocks": "^7.6.7",
59
- "@storybook/react": "^7.6.7",
60
- "@storybook/react-webpack5": "^7.6.7",
61
- "@storybook/theming": "^7.6.7",
62
- "@testing-library/dom": "^9.3.4",
63
- "@testing-library/jest-dom": "^6.2.0",
51
+ "@semantic-release/commit-analyzer": "^11.1.0",
52
+ "@semantic-release/git": "^10.0.1",
53
+ "@storybook/addon-actions": "^7.6.4",
54
+ "@storybook/addon-essentials": "^7.6.4",
55
+ "@storybook/addon-interactions": "^7.6.4",
56
+ "@storybook/addon-links": "^7.6.4",
57
+ "@storybook/addons": "^7.6.4",
58
+ "@storybook/blocks": "^7.6.4",
59
+ "@storybook/react": "^7.6.4",
60
+ "@storybook/react-webpack5": "^7.6.4",
61
+ "@storybook/testing-library": "^0.2.2",
62
+ "@storybook/theming": "^7.6.4",
63
+ "@testing-library/dom": "^9.3.3",
64
+ "@testing-library/jest-dom": "^6.1.5",
64
65
  "@testing-library/react": "^14.1.2",
65
- "@testing-library/user-event": "^14.5.2",
66
+ "@testing-library/user-event": "^14.5.1",
66
67
  "@types/jest": "^29.5.11",
67
- "@types/luxon": "^3.4.0",
68
- "@types/react": "^18.2.47",
69
- "@types/react-dom": "^18.2.18",
70
- "@typescript-eslint/eslint-plugin": "^6.18.1",
71
- "@typescript-eslint/parser": "^6.18.1",
72
- "axios": "^1.6.5",
73
- "eslint": "^8.56.0",
68
+ "@types/luxon": "^3.3.7",
69
+ "@types/react": "^18.2.45",
70
+ "@types/react-dom": "^18.2.17",
71
+ "@typescript-eslint/eslint-plugin": "^6.14.0",
72
+ "@typescript-eslint/parser": "^6.14.0",
73
+ "axios": "^1.6.2",
74
+ "eslint": "^8.55.0",
74
75
  "eslint-plugin-import": "^2.29.1",
75
- "eslint-plugin-jest": "^27.6.2",
76
+ "eslint-plugin-jest": "^27.6.0",
76
77
  "eslint-plugin-jsx-a11y": "^6.8.0",
77
- "eslint-plugin-prettier": "^5.1.3",
78
+ "eslint-plugin-prettier": "^5.0.1",
78
79
  "eslint-plugin-react": "^7.33.2",
79
80
  "eslint-plugin-react-hooks": "^4.6.0",
80
81
  "eslint-plugin-storybook": "^0.6.15",
@@ -82,12 +83,13 @@
82
83
  "glob": "^10.3.10",
83
84
  "jest": "^29.7.0",
84
85
  "jest-environment-jsdom": "^29.7.0",
85
- "jsdom": "^23.2.0",
86
+ "jsdom": "^23.0.1",
86
87
  "prettier": "^3.1.1",
87
- "react-hook-form": "^7.49.3",
88
- "storybook": "^7.6.7",
88
+ "react-hook-form": "^7.49.2",
89
+ "semantic-release": "^22.0.12",
90
+ "storybook": "^7.6.4",
89
91
  "ts-jest": "^29.1.1",
90
- "typescript": "^5.3.3"
92
+ "typescript": "^4.8.4"
91
93
  },
92
94
  "files": [
93
95
  "src",
@@ -96,9 +98,5 @@
96
98
  "sideEffects": false,
97
99
  "publishConfig": {
98
100
  "access": "public"
99
- },
100
- "engines": {
101
- "node": "20.10.0",
102
- "npm": "10.2.3"
103
101
  }
104
102
  }
@@ -3,8 +3,10 @@ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
3
3
  const ArrowDown = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M8.63972 9.44538L10.3906 7.69748L11.3333 8.70588L7.96632 12L4.66666 8.70588L5.60942 7.76471L7.29292 9.37815V4H8.63972V9.44538Z"
6
9
  fill="currentColor"
7
- d="M8.669 1.333v1.334H7.336V1.333h1.333Zm0 2V6H7.336V3.333h1.333Zm3.113 7.572-.943-.943-2.17 2.17V6.667H7.336v5.448L5.183 9.962l-.943.943 3.771 3.77 3.771-3.77Z"
8
10
  />
9
11
  </Icon>
10
12
  ));
@@ -1,6 +1,6 @@
1
1
  import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
2
 
3
- const BackArrow = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const ArrowLeft = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path
6
6
  fill="currentColor"
@@ -11,4 +11,4 @@ const BackArrow = forwardRef<IconProps, 'svg'>((props, ref) => (
11
11
  </Icon>
12
12
  ));
13
13
 
14
- export default BackArrow;
14
+ export default ArrowLeft;
@@ -0,0 +1,12 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const ArrowMoveDown = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ fill="currentColor"
7
+ d="M8.669 1.333v1.334H7.336V1.333h1.333Zm0 2V6H7.336V3.333h1.333Zm3.113 7.572-.943-.943-2.17 2.17V6.667H7.336v5.448L5.183 9.962l-.943.943 3.771 3.77 3.771-3.77Z"
8
+ />
9
+ </Icon>
10
+ ));
11
+
12
+ export default ArrowMoveDown;
@@ -1,6 +1,6 @@
1
1
  import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
2
 
3
- const ArrowBack = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const ArrowMoveLeft = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path
6
6
  fill="currentColor"
@@ -11,4 +11,4 @@ const ArrowBack = forwardRef<IconProps, 'svg'>((props, ref) => (
11
11
  </Icon>
12
12
  ));
13
13
 
14
- export default ArrowBack;
14
+ export default ArrowMoveLeft;
@@ -1,6 +1,6 @@
1
1
  import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
2
 
3
- const ArrowForward = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const ArrowMoveRight = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path
6
6
  fill="currentColor"
@@ -11,4 +11,4 @@ const ArrowForward = forwardRef<IconProps, 'svg'>((props, ref) => (
11
11
  </Icon>
12
12
  ));
13
13
 
14
- export default ArrowForward;
14
+ export default ArrowMoveRight;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const ArrowMoveUp = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ fill="currentColor"
7
+ fillRule="evenodd"
8
+ d="m7.28 3.797-2.17 2.17-.943-.942 3.771-3.772 3.771 3.772-.943.942-2.153-2.153v5.448H7.28V3.797Zm0 10.799v-1.334h1.333v1.334H7.28Zm0-2V9.929h1.333v2.667H7.28Z"
9
+ clipRule="evenodd"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default ArrowMoveUp;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const ArrowRight = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M9.44538 7.36035L7.69748 5.60951L8.70588 4.66675L12 8.03375L8.70588 11.3334L7.76471 10.3907L9.37815 8.70715H4V7.36035H9.44538Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default ArrowRight;
@@ -3,10 +3,10 @@ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
3
3
  const ArrowUp = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path
6
- fill="currentColor"
7
6
  fillRule="evenodd"
8
- d="m7.28 3.797-2.17 2.17-.943-.942 3.771-3.772 3.771 3.772-.943.942-2.153-2.153v5.448H7.28V3.797Zm0 10.799v-1.334h1.333v1.334H7.28Zm0-2V9.929h1.333v2.667H7.28Z"
9
7
  clipRule="evenodd"
8
+ d="M7.36026 6.55462L5.60942 8.30252L4.66666 7.29412L8.03366 4L11.3333 7.29412L10.3906 8.23529L8.70706 6.62185V12H7.36026V6.55462Z"
9
+ fill="currentColor"
10
10
  />
11
11
  </Icon>
12
12
  ));
@@ -8,12 +8,15 @@ export { default as Android } from './Android';
8
8
  export { default as App } from './App';
9
9
  export { default as AppleFill } from './AppleFill';
10
10
  export { default as Apple } from './Apple';
11
- export { default as ArrowBack } from './ArrowBack';
12
- export { default as ArrowDown } from './ArrowDown';
13
- export { default as ArrowForward } from './ArrowForward';
11
+ export { default as ArrowMoveLeft } from './ArrowMoveLeft';
12
+ export { default as ArrowMoveDown } from './ArrowMoveDown';
13
+ export { default as ArrowMoveUp } from './ArrowMoveUp';
14
+ export { default as ArrowMoveRight } from './ArrowMoveRight';
14
15
  export { default as ArrowQuit } from './ArrowQuit';
16
+ export { default as ArrowLeft } from './ArrowLeft';
17
+ export { default as ArrowRight } from './ArrowRight';
15
18
  export { default as ArrowUp } from './ArrowUp';
16
- export { default as BackArrow } from './BackArrow';
19
+ export { default as ArrowDown } from './ArrowDown';
17
20
  export { default as Badge3rdParty } from './Badge3rdParty';
18
21
  export { default as BadgeBitrise } from './BadgeBitrise';
19
22
  export { default as Bazel } from './Bazel';
@@ -3,7 +3,9 @@ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
3
3
  const ArrowDown = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path
6
- d="M13.003 2v2h-2V2h2ZM13.003 5v4h-2V5h2ZM17.673 16.357l-1.414-1.414-3.256 3.255V10h-2v8.172l-3.23-3.23-1.413 1.415 5.657 5.657 5.656-5.657Z"
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M12.9596 14.1681L15.5859 11.5462L17 13.0588L11.9495 18L7 13.0588L8.41414 11.6471L10.9394 14.0672V6H12.9596V14.1681Z"
7
9
  fill="currentColor"
8
10
  />
9
11
  </Icon>
@@ -1,6 +1,6 @@
1
1
  import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
2
 
3
- const BackArrow = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const ArrowLeft = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path
6
6
  fillRule="evenodd"
@@ -11,4 +11,4 @@ const BackArrow = forwardRef<IconProps, 'svg'>((props, ref) => (
11
11
  </Icon>
12
12
  ));
13
13
 
14
- export default BackArrow;
14
+ export default ArrowLeft;
@@ -0,0 +1,12 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const ArrowMoveDown = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ d="M13.003 2v2h-2V2h2ZM13.003 5v4h-2V5h2ZM17.673 16.357l-1.414-1.414-3.256 3.255V10h-2v8.172l-3.23-3.23-1.413 1.415 5.657 5.657 5.656-5.657Z"
7
+ fill="currentColor"
8
+ />
9
+ </Icon>
10
+ ));
11
+
12
+ export default ArrowMoveDown;
@@ -1,6 +1,6 @@
1
1
  import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
2
 
3
- const ArrowBack = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const ArrowMoveLeft = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path
6
6
  fillRule="evenodd"
@@ -11,4 +11,4 @@ const ArrowBack = forwardRef<IconProps, 'svg'>((props, ref) => (
11
11
  </Icon>
12
12
  ));
13
13
 
14
- export default ArrowBack;
14
+ export default ArrowMoveLeft;
@@ -1,6 +1,6 @@
1
1
  import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
2
 
3
- const ArrowForward = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const ArrowMoveRight = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path
6
6
  fillRule="evenodd"
@@ -11,4 +11,4 @@ const ArrowForward = forwardRef<IconProps, 'svg'>((props, ref) => (
11
11
  </Icon>
12
12
  ));
13
13
 
14
- export default ArrowForward;
14
+ export default ArrowMoveRight;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const ArrowMoveUp = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M10.92 5.695 7.664 8.951 6.25 7.537l5.657-5.657 5.657 5.657-1.415 1.414-3.229-3.23v8.173h-2V5.695Zm0 16.199v-2h2v2h-2Zm0-3v-4h2v4h-2Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default ArrowMoveUp;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const ArrowRight = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M14.1681 11.0404L11.5462 8.41414L13.0588 7L18 12.0505L13.0588 17L11.6471 15.5859L14.0672 13.0606H6V11.0404H14.1681Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default ArrowRight;
@@ -5,7 +5,7 @@ const ArrowUp = forwardRef<IconProps, 'svg'>((props, ref) => (
5
5
  <path
6
6
  fillRule="evenodd"
7
7
  clipRule="evenodd"
8
- d="M10.92 5.695 7.664 8.951 6.25 7.537l5.657-5.657 5.657 5.657-1.415 1.414-3.229-3.23v8.173h-2V5.695Zm0 16.199v-2h2v2h-2Zm0-3v-4h2v4h-2Z"
8
+ d="M11.0404 9.83193L8.41414 12.4538L7 10.9412L12.0505 6L17 10.9412L15.5859 12.3529L13.0606 9.93277V18H11.0404V9.83193Z"
9
9
  fill="currentColor"
10
10
  />
11
11
  </Icon>
@@ -8,12 +8,15 @@ export { default as Android } from './Android';
8
8
  export { default as App } from './App';
9
9
  export { default as AppleFill } from './AppleFill';
10
10
  export { default as Apple } from './Apple';
11
- export { default as ArrowBack } from './ArrowBack';
12
- export { default as ArrowDown } from './ArrowDown';
13
- export { default as ArrowForward } from './ArrowForward';
11
+ export { default as ArrowMoveLeft } from './ArrowMoveLeft';
12
+ export { default as ArrowMoveDown } from './ArrowMoveDown';
13
+ export { default as ArrowMoveUp } from './ArrowMoveUp';
14
+ export { default as ArrowMoveRight } from './ArrowMoveRight';
14
15
  export { default as ArrowQuit } from './ArrowQuit';
16
+ export { default as ArrowLeft } from './ArrowLeft';
17
+ export { default as ArrowRight } from './ArrowRight';
15
18
  export { default as ArrowUp } from './ArrowUp';
16
- export { default as BackArrow } from './BackArrow';
19
+ export { default as ArrowDown } from './ArrowDown';
17
20
  export { default as Badge3rdParty } from './Badge3rdParty';
18
21
  export { default as BadgeBitrise } from './BadgeBitrise';
19
22
  export { default as Bazel } from './Bazel';
@@ -20,9 +20,9 @@ export interface SelectProps extends Omit<FormControlProps, 'label' | 'onBlur' |
20
20
  isLoading?: boolean;
21
21
  label?: ReactNode;
22
22
  name?: string;
23
+ placeholder?: ChakraSelectProps['placeholder'];
23
24
  onBlur?: ChakraSelectProps['onBlur'];
24
25
  onChange?: ChakraSelectProps['onChange'];
25
- placeholder?: ChakraSelectProps['placeholder'];
26
26
  size?: 'small' | 'medium';
27
27
  value?: ChakraSelectProps['value'];
28
28
  }
@@ -12,17 +12,17 @@ export const figmaIcons: {
12
12
  [category: string]: FigmaIcon[];
13
13
  } = {
14
14
  'Arrows and Chevrons': [
15
- { iconName: 'BackArrow', figmaToken: 'arrow-left' },
16
- { iconName: '', figmaToken: 'arrow-down' },
17
- { iconName: '', figmaToken: 'arrow-right' },
18
- { iconName: '', figmaToken: 'arrow-up' },
15
+ { iconName: 'ArrowLeft', figmaToken: 'arrow-left' },
16
+ { iconName: 'ArrowDown', figmaToken: 'arrow-down' },
17
+ { iconName: 'ArrowRight', figmaToken: 'arrow-right' },
18
+ { iconName: 'ArrowUp', figmaToken: 'arrow-up' },
19
19
  { iconName: 'Request', figmaToken: 'arrow-left-over-right', tags: 'request' },
20
20
  { iconName: 'SortArrows', figmaToken: 'arrow-up-down' },
21
21
  { iconName: 'ArrowQuit', figmaToken: 'arrow-back-and-up', tags: 'quit' },
22
- { iconName: 'ArrowDown', figmaToken: 'arrow-move-down' },
23
- { iconName: 'ArrowBack', figmaToken: 'arrow-move-left' },
24
- { iconName: 'ArrowForward', figmaToken: 'arrow-move-right' },
25
- { iconName: 'ArrowUp', figmaToken: 'arrow-move-up' },
22
+ { iconName: 'ArrowMoveDown', figmaToken: 'arrow-move-down' },
23
+ { iconName: 'ArrowMoveLeft', figmaToken: 'arrow-move-left' },
24
+ { iconName: 'ArrowMoveRight', figmaToken: 'arrow-move-right' },
25
+ { iconName: 'ArrowMoveUp', figmaToken: 'arrow-move-up' },
26
26
  { iconName: 'ChevronDown', figmaToken: 'chevron-down' },
27
27
  { iconName: 'ChevronLeft', figmaToken: 'chevron-left' },
28
28
  { iconName: 'ChevronRight', figmaToken: 'chevron-right' },