@bitrise/bitkit 12.62.0 → 12.63.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.
package/README.md CHANGED
@@ -3,8 +3,8 @@
3
3
  Library for React UI components and design patterns.
4
4
 
5
5
  Based on [Chakra UI](https://chakra-ui.com/).
6
- ___
7
6
 
7
+ ---
8
8
 
9
9
  ### Setup
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "12.62.0",
4
+ "version": "12.63.1",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -31,11 +31,12 @@ const DrawerTheme = defineMultiStyleConfig({
31
31
  },
32
32
  closeButton: {
33
33
  position: 'absolute',
34
- top: '24',
35
- right: '24',
34
+ top: '16',
35
+ right: '16',
36
+ padding: '4',
36
37
  },
37
38
  header: {
38
- color: 'neutral.40',
39
+ color: 'neutral.60',
39
40
  fontSize: '1',
40
41
  lineHeight: '1rem',
41
42
  textTransform: 'uppercase',
@@ -31,7 +31,7 @@ const Drawer = (props: DrawerProps) => {
31
31
  <ChakraDrawer {...drawerProps}>
32
32
  <DrawerOverlay />
33
33
  <DrawerContent maxWidth={maxWidth} padding={padding}>
34
- <DrawerCloseButton size="small">
34
+ <DrawerCloseButton size="md">
35
35
  <Icon name="CloseSmall" />
36
36
  </DrawerCloseButton>
37
37
  <DrawerHeader as="h3" padding={headerPadding}>
@@ -0,0 +1,28 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const BuildCache = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ d="M12 3.5C11.7474 2.09838 9.36902 1 6.5 1C3.63098 1 1.25261 2.09838 1 3.5C1 4.88071 3.46243 6 6.5 6C9.53757 6 12 4.88071 12 3.5Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ fillRule="evenodd"
11
+ clipRule="evenodd"
12
+ d="M1 8V5.43822C1.3631 5.74564 1.78552 5.99105 2.19711 6.17813C3.34983 6.7021 4.87207 7 6.5 7C7.79759 7 9.02802 6.81073 10.0577 6.46858L7.09521 10.4566C7.08782 10.4665 7.08055 10.4765 7.0734 10.4866C6.88493 10.4955 6.69363 10.5 6.5 10.5C3.46243 10.5 1 9.38071 1 8ZM5 8.5C5 8.91421 4.66421 9.25 4.25 9.25C3.83579 9.25 3.5 8.91421 3.5 8.5C3.5 8.08579 3.83579 7.75 4.25 7.75C4.66421 7.75 5 8.08579 5 8.5Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ fillRule="evenodd"
17
+ clipRule="evenodd"
18
+ d="M6.5 11.5C6.58363 11.5 6.66697 11.4992 6.75 11.4977C6.74959 11.7667 6.81114 12.0369 6.93656 12.2863C7.23371 12.8772 7.8386 13.2501 8.50001 13.2501H9.14685L9.04361 14.3342C9.03217 14.4543 9.03324 14.5733 9.04589 14.6897C8.28286 14.8879 7.41646 15 6.5 15C3.63098 15 1.25261 13.9016 1 12.5V9.93822C1.3631 10.2456 1.78552 10.491 2.19711 10.6781C3.34983 11.2021 4.87207 11.5 6.5 11.5ZM4.25 13.75C4.66421 13.75 5 13.4142 5 13C5 12.5858 4.66421 12.25 4.25 12.25C3.83579 12.25 3.5 12.5858 3.5 13C3.5 13.4142 3.83579 13.75 4.25 13.75Z"
19
+ fill="currentColor"
20
+ />
21
+ <path
22
+ d="M12.4834 5.79998C12.7976 5.92074 12.9928 6.23606 12.9609 6.57116L12.7534 8.75006H14.5C14.7835 8.75006 15.0427 8.90987 15.1701 9.16311C15.2974 9.41635 15.2711 9.71975 15.1021 9.9473L11.3878 14.9473C11.187 15.2175 10.8309 15.3209 10.5167 15.2001C10.2024 15.0794 10.0072 14.7641 10.0391 14.4289L10.2466 12.2501H8.5C8.21654 12.2501 7.9573 12.0902 7.82995 11.837C7.70261 11.5838 7.72891 11.2804 7.89795 11.0528L11.6122 6.05281C11.813 5.78259 12.1691 5.67922 12.4834 5.79998Z"
23
+ fill="currentColor"
24
+ />
25
+ </Icon>
26
+ ));
27
+
28
+ export default BuildCache;
@@ -0,0 +1,22 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const BuildCache = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ d="M13.4434 9.0001C12.9706 11.5556 10.7187 13.5 8.00005 13.5C5.64906 13.5 3.64711 12.0459 2.84288 9.99999H1.25663C2.12145 12.8915 4.81329 15 8.00005 15C10.2263 15 12.211 13.971 13.5 12.3649V13H15V9H13.5L13.4434 9.0001Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ d="M8.00005 2.5C5.2814 2.5 3.0295 4.44444 2.55669 6.99999L1 7V3H2.5V3.63524C3.78901 2.02906 5.77376 1 8.00005 1C11.1868 1 13.8787 3.10856 14.7435 6.0001H13.1573C12.3531 3.95413 10.3511 2.5 8.00005 2.5Z"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ fillRule="evenodd"
15
+ clipRule="evenodd"
16
+ d="M7.32918 3.83536C7.75147 3.62422 8.24853 3.62422 8.67082 3.83536L11.1708 5.08536C11.679 5.33945 12 5.85884 12 6.427V9.5729C12 10.1411 11.679 10.6605 11.1708 10.9145L8.67082 12.1645C8.24853 12.3757 7.75147 12.3757 7.32918 12.1645L4.82918 10.9145C4.321 10.6605 4 10.1411 4 9.5729V6.427C4 5.85884 4.321 5.33945 4.82918 5.08536L7.32918 3.83536ZM7.99998 7.41689L5.75723 6.07124L5.24274 6.92873L7.49998 8.28308V10.5H8.49998V8.28308L10.7572 6.92873L10.2427 6.07124L7.99998 7.41689Z"
17
+ fill="currentColor"
18
+ />
19
+ </Icon>
20
+ ));
21
+
22
+ export default BuildCache;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const BuildCache = 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="M3.55996 3.17648C6.25339 2.9607 9.74663 2.9607 12.4401 3.17648C13.4423 3.25677 14.2365 4.00833 14.4176 4.97172C14.8663 7.35881 15.138 9.14271 15.2219 11.1306C15.2713 12.2999 14.3836 13.2865 13.2182 13.3651C10.2628 13.5645 5.73716 13.5645 2.78184 13.3651C1.61643 13.2865 0.728732 12.2999 0.778101 11.1306C0.862034 9.14271 1.13377 7.35881 1.58243 4.97172C1.76351 4.00833 2.55775 3.25677 3.55996 3.17648ZM7.5 6V11H6V6H7.5ZM5 7V11H3.5V7H5ZM11 7H12.5V11H11V7ZM10 11V9H8.5V11H10Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default BuildCache;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const Release = 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="M3 2.5C3 1.67157 3.67157 1 4.5 1H11.5C12.3284 1 13 1.67157 13 2.5V13.5C13 14.3284 12.3284 15 11.5 15H4.5C3.67157 15 3 14.3284 3 13.5V2.5ZM7.25 3.25H8.75V4.75H7.25V3.25ZM11 10L8 7L5 10L6.06066 11.0607L7.25806 9.86326V13.5H8.75806V9.87938L9.93934 11.0607L11 10Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Release;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const Settings = 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="M6.75935 1.36209C7.16228 1.2884 7.57701 1.25 8.00005 1.25C8.42287 1.25 8.83739 1.28836 9.24013 1.36197L9.71432 1.44865L10.1087 3.00938C10.2998 3.0902 10.4852 3.18164 10.6642 3.28293L12.1355 2.61581L12.4988 2.93189C13.125 3.47659 13.6515 4.13331 14.0472 4.87132L14.2749 5.29603L13.2464 6.6487C13.2877 6.80953 13.3218 6.97321 13.3484 7.13933L14.8714 7.91663L14.8514 8.39722C14.8157 9.25346 14.6227 10.0703 14.3003 10.8187L14.1099 11.2606L12.2935 11.3026C12.2215 11.396 12.1466 11.4869 12.0689 11.5753L12.4333 13.3611L12.0451 13.6451C11.3807 14.1311 10.625 14.5009 9.80804 14.7236L9.34388 14.8502L8.14384 13.4147C8.09597 13.416 8.04795 13.4166 7.99981 13.4166C7.95165 13.4166 7.90362 13.416 7.85574 13.4147L6.65576 14.8501L6.19158 14.7235C5.37463 14.5007 4.61887 14.1308 3.95449 13.6447L3.56636 13.3607L3.93067 11.5753C3.85295 11.4869 3.77806 11.3959 3.70614 11.3026L1.8902 11.2606L1.6998 10.8187C1.37732 10.0702 1.18437 9.25328 1.14873 8.39693L1.12872 7.91636L2.65125 7.13932C2.6778 6.97321 2.71191 6.80955 2.75322 6.64873L1.72503 5.29647L1.95269 4.87177C2.34834 4.13366 2.87486 3.47685 3.50106 2.93207L3.86441 2.61596L5.33543 3.28294C5.51443 3.18165 5.69982 3.09021 5.89087 3.00939L6.28521 1.4488L6.75935 1.36209ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Settings;
@@ -30,7 +30,9 @@ export { default as Branch } from './Branch';
30
30
  export { default as Bug } from './Bug';
31
31
  export { default as Build } from './Build';
32
32
  export { default as BuildCache } from './BuildCache';
33
+ export { default as BuildCacheSolid } from './BuildCacheSolid';
33
34
  export { default as BuildTest } from './BuildTest';
35
+ export { default as BuildTestSolid } from './BuildTestSolid';
34
36
  export { default as BuildstatusAbortedSolid } from './BuildstatusAbortedSolid';
35
37
  export { default as BuildstatusAborted } from './BuildstatusAborted';
36
38
  export { default as BuildstatusFailedSolid } from './BuildstatusFailedSolid';
@@ -107,6 +109,7 @@ export { default as Interaction } from './Interaction';
107
109
  export { default as Invoice } from './Invoice';
108
110
  export { default as Ionic } from './Ionic';
109
111
  export { default as Insights } from './Insights';
112
+ export { default as InsightsSolid } from './InsightsSolid';
110
113
  export { default as Japanese } from './Japanese';
111
114
  export { default as Key } from './Key';
112
115
  export { default as Laptop } from './Laptop';
@@ -155,6 +158,7 @@ export { default as Push } from './Push';
155
158
  export { default as ReactIcon } from './ReactIcon';
156
159
  export { default as Refresh } from './Refresh';
157
160
  export { default as Release } from './Release';
161
+ export { default as ReleaseSolid } from './ReleaseSolid';
158
162
  export { default as Replace } from './Replace';
159
163
  export { default as Request } from './Request';
160
164
  export { default as Responsiveness } from './Responsiveness';
@@ -162,6 +166,7 @@ export { default as Save } from './Save';
162
166
  export { default as Screenshare } from './Screenshare';
163
167
  export { default as SecurityShield } from './SecurityShield';
164
168
  export { default as Settings } from './Settings';
169
+ export { default as SettingsSolid } from './SettingsSolid';
165
170
  export { default as Ship } from './Ship';
166
171
  export { default as ShowPassword } from './ShowPassword';
167
172
  export { default as Shuffle } from './Shuffle';
@@ -0,0 +1,28 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const BuildCache = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ d="M20 5.5C20 7.433 16.4183 9 12 9C7.58172 9 4 7.433 4 5.5C4 3.567 7.58172 2 12 2C16.4183 2 20 3.567 20 5.5Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ fillRule="evenodd"
11
+ clipRule="evenodd"
12
+ d="M12 15.5C12.338 15.5 12.6711 15.4908 12.9981 15.473L17.0994 9.77947C15.6163 10.2439 13.8549 10.5 12 10.5C9.63401 10.5 7.42029 10.0834 5.74192 9.34911C5.10541 9.07064 4.50676 8.72937 4 8.31654V12C4 13.933 7.58172 15.5 12 15.5ZM8 13.5C8.55228 13.5 9 13.0523 9 12.5C9 11.9477 8.55228 11.5 8 11.5C7.44772 11.5 7 11.9477 7 12.5C7 13.0523 7.44772 13.5 8 13.5Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ fillRule="evenodd"
17
+ clipRule="evenodd"
18
+ d="M12.0754 16.9999L12 17C9.63401 17 7.42029 16.5834 5.74192 15.8491C5.10541 15.5706 4.50676 15.2294 4 14.8165V18.5C4 20.433 7.58172 22 12 22C13.0981 22 14.1445 21.9032 15.0971 21.7281C15.0804 21.6011 15.0776 21.4708 15.0897 21.3392L15.2942 19.1251H13.7847C13.1279 19.1251 12.5264 18.7574 12.227 18.1728C12.0386 17.8047 11.9898 17.3898 12.0754 16.9999ZM9 19C9 19.5523 8.55228 20 8 20C7.44772 20 7 19.5523 7 19C7 18.4477 7.44772 18 8 18C8.55228 18 9 18.4477 9 19Z"
19
+ fill="currentColor"
20
+ />
21
+ <path
22
+ d="M19 9.79765C19.3168 9.91624 19.515 10.2322 19.4839 10.569L19.1786 13.8751H21.7847C22.0662 13.8751 22.3239 14.0327 22.4522 14.2832C22.5805 14.5337 22.5577 14.835 22.3932 15.0634L17.4408 21.9384C17.2431 22.2129 16.8862 22.321 16.5694 22.2025C16.2526 22.0839 16.0544 21.7679 16.0855 21.4311L16.3908 18.1251H13.7847C13.5032 18.1251 13.2454 17.9675 13.1171 17.7169C12.9888 17.4664 13.0116 17.1651 13.1761 16.9367L18.1285 10.0617C18.3262 9.78723 18.6832 9.67907 19 9.79765Z"
23
+ fill="currentColor"
24
+ />
25
+ </Icon>
26
+ ));
27
+
28
+ export default BuildCache;
@@ -0,0 +1,22 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const BuildCache = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ d="M11.9999 4C7.92032 4 4.55393 7.05369 4.06183 11H2V4.5H4V5.99895C5.82446 3.57065 8.72878 2 11.9999 2C16.4776 2 20.2679 4.94289 21.5421 9H19.4184C18.2316 6.06817 15.3573 4 11.9999 4Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ d="M19.938 13C19.4459 16.9463 16.0796 20 11.9999 20C8.64256 20 5.76823 17.9318 4.58146 15H2.45774C3.73201 19.0571 7.5223 22 11.9999 22C15.2712 22 18.1755 20.4293 20 18.0009V19.5H22V13H19.938Z"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ fillRule="evenodd"
15
+ clipRule="evenodd"
16
+ d="M10.9262 6.18328C11.5814 5.76638 12.4186 5.76638 13.0738 6.18328L16.5737 8.41055C17.1506 8.77767 17.5 9.41408 17.5 10.0979V13.9021C17.5 14.5859 17.1506 15.2223 16.5738 15.5894L13.0738 17.8167C12.4186 18.2336 11.5814 18.2336 10.9262 17.8167L7.42625 15.5894C6.84935 15.2223 6.5 14.5859 6.5 13.9021V10.0979C6.5 9.41408 6.84935 8.77767 7.42625 8.41055L10.9262 6.18328ZM12 11.6362L8.87211 9.84886L8.1279 11.1512L11.25 12.9353V16H12.75V12.9353L15.8721 11.1512L15.1279 9.84886L12 11.6362Z"
17
+ fill="currentColor"
18
+ />
19
+ </Icon>
20
+ ));
21
+
22
+ export default BuildCache;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const BuildCache = 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="M5.79688 5.22032C9.55091 4.92656 14.4492 4.92656 18.2032 5.22032C19.5342 5.32447 20.5956 6.31592 20.8455 7.59604C21.467 10.7795 21.8439 13.16 21.9607 15.812C22.0297 17.3778 20.838 18.6941 19.2819 18.7968C15.1741 19.0677 8.8259 19.0677 4.71817 18.7968C3.16204 18.6941 1.97034 17.3778 2.0393 15.812C2.15611 13.16 2.53306 10.7795 3.15454 7.59604C3.40445 6.31592 4.46586 5.32447 5.79688 5.22032ZM11.5 9V15.5H9.5V9H11.5ZM18.5 10.5V15.5H16.5V10.5H18.5ZM8 10.5V15.5H6V10.5H8ZM15 12.5V15.5H13V12.5H15Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default BuildCache;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const Release = 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="M7 2H17C18.1 2 19 2.9 19 4V20C19 21.1 18.1 22 17 22H7C5.9 22 5 21.1 5 20V4C5 2.9 5.9 2 7 2ZM11 5H13V7H11V5ZM16 15L12 11L8 15L9.41421 16.4142L11 14.8284V20H13V14.8284L14.5858 16.4142L16 15Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Release;
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const Settings = 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="M12 2C11.3731 2 10.7587 2.05688 10.1618 2.16602L9.5296 2.28162L8.94243 4.60532C8.62038 4.7386 8.30902 4.89225 8.00995 5.06463L5.81815 4.07083L5.33368 4.4923C4.40575 5.29956 3.62554 6.2728 3.03927 7.36643L2.7357 7.9327L4.26633 9.94577C4.19308 10.2221 4.13427 10.5043 4.09072 10.7913L1.82123 11.9496L1.84791 12.5904C1.90075 13.8593 2.18666 15.0697 2.66442 16.1786L2.91829 16.7678L5.62221 16.8303C5.75195 17.0013 5.88841 17.167 6.03119 17.3269L5.48824 19.9877L6.00578 20.3664C6.99029 21.0867 8.1101 21.6346 9.32048 21.9647L9.93938 22.1335L11.7268 19.9954C11.8175 19.9985 11.9085 20 11.9999 20C12.0913 20 12.1823 19.9985 12.273 19.9954L14.0605 22.1336L14.6794 21.9648C15.8898 21.6347 17.0096 21.0868 17.9941 20.3665L18.5116 19.9878L17.9687 17.3268C18.1114 17.167 18.2478 17.0013 18.3775 16.8303L21.0817 16.7678L21.3356 16.1786C21.8133 15.0697 22.0992 13.8594 22.1521 12.5905L22.1788 11.9497L19.909 10.7913C19.8655 10.5043 19.8067 10.2222 19.7335 9.94587L21.2642 7.93259L20.9607 7.36632C20.3744 6.27271 19.5942 5.29949 18.6663 4.49225L18.1818 4.0708L15.9898 5.06466C15.6908 4.89229 15.3795 4.73865 15.0574 4.60537L14.4703 2.28158L13.838 2.16599C13.2412 2.05687 12.6268 2 12 2ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Settings;
@@ -30,7 +30,9 @@ export { default as Branch } from './Branch';
30
30
  export { default as Bug } from './Bug';
31
31
  export { default as Build } from './Build';
32
32
  export { default as BuildCache } from './BuildCache';
33
+ export { default as BuildCacheSolid } from './BuildCacheSolid';
33
34
  export { default as BuildTest } from './BuildTest';
35
+ export { default as BuildTestSolid } from './BuildTestSolid';
34
36
  export { default as BuildstatusAbortedSolid } from './BuildstatusAbortedSolid';
35
37
  export { default as BuildstatusAborted } from './BuildstatusAborted';
36
38
  export { default as BuildstatusFailedSolid } from './BuildstatusFailedSolid';
@@ -107,6 +109,7 @@ export { default as Interaction } from './Interaction';
107
109
  export { default as Invoice } from './Invoice';
108
110
  export { default as Ionic } from './Ionic';
109
111
  export { default as Insights } from './Insights';
112
+ export { default as InsightsSolid } from './InsightsSolid';
110
113
  export { default as Japanese } from './Japanese';
111
114
  export { default as Key } from './Key';
112
115
  export { default as Laptop } from './Laptop';
@@ -155,6 +158,7 @@ export { default as Push } from './Push';
155
158
  export { default as ReactIcon } from './ReactIcon';
156
159
  export { default as Refresh } from './Refresh';
157
160
  export { default as Release } from './Release';
161
+ export { default as ReleaseSolid } from './ReleaseSolid';
158
162
  export { default as Replace } from './Replace';
159
163
  export { default as Request } from './Request';
160
164
  export { default as Responsiveness } from './Responsiveness';
@@ -162,6 +166,7 @@ export { default as Save } from './Save';
162
166
  export { default as Screenshare } from './Screenshare';
163
167
  export { default as SecurityShield } from './SecurityShield';
164
168
  export { default as Settings } from './Settings';
169
+ export { default as SettingsSolid } from './SettingsSolid';
165
170
  export { default as Ship } from './Ship';
166
171
  export { default as ShowPassword } from './ShowPassword';
167
172
  export { default as Shuffle } from './Shuffle';
@@ -188,15 +188,15 @@ export const figmaIcons: {
188
188
  { iconName: '', figmaToken: 'dashboard' },
189
189
  { iconName: '', figmaToken: 'dashboard-filled' },
190
190
  { iconName: 'BuildTest', figmaToken: 'build-test', tags: 'automation, ci/cd' },
191
- { iconName: '', figmaToken: 'build-test-filled', tags: 'automation, ci/cd' },
191
+ { iconName: 'BuildTestSolid', figmaToken: 'build-test-filled', tags: 'automation, ci/cd' },
192
192
  { iconName: 'BuildCache', figmaToken: 'build-cache' },
193
- { iconName: '', figmaToken: 'build-cache-filled' },
193
+ { iconName: 'BuildCacheSolid', figmaToken: 'build-cache-filled' },
194
194
  { iconName: 'Release', figmaToken: 'release' },
195
- { iconName: '', figmaToken: 'release-filled' },
195
+ { iconName: 'ReleaseSolid', figmaToken: 'release-filled' },
196
196
  { iconName: 'Insights', figmaToken: 'insights' },
197
- { iconName: '', figmaToken: 'insights-filled' },
197
+ { iconName: 'InsightsSolid', figmaToken: 'insights-filled' },
198
198
  { iconName: 'Settings', figmaToken: 'settings' },
199
- { iconName: '', figmaToken: 'settings-filled' },
199
+ { iconName: 'SettingsSolid', figmaToken: 'settings-filled' },
200
200
  ],
201
201
  Status: [
202
202
  { iconName: 'BuildstatusNeverbuilt', figmaToken: 'circle' },