@bitrise/bitkit 13.57.1-alpha.2 → 13.59.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.57.1-alpha.2",
4
+ "version": "13.59.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -0,0 +1,32 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const Dashboard = 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="M2 3C2 2.17157 2.67157 1.5 3.5 1.5H5.75C6.57843 1.5 7.25 2.17157 7.25 3V4.5C7.25 5.32843 6.57843 6 5.75 6H3.5C2.67157 6 2 5.32843 2 4.5V3ZM3.5 3H5.75V4.5H3.5L3.5 3Z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ fillRule="evenodd"
13
+ clipRule="evenodd"
14
+ d="M8.5 11.5C8.5 10.6716 9.17157 10 10 10H12.5C13.3284 10 14 10.6716 14 11.5V13C14 13.8284 13.3284 14.5 12.5 14.5H10C9.17157 14.5 8.5 13.8284 8.5 13V11.5ZM10 11.5H12.5V13H10V11.5Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ fillRule="evenodd"
19
+ clipRule="evenodd"
20
+ d="M10 1.5C9.17157 1.5 8.5 2.17157 8.5 3V7.5C8.5 8.32843 9.17157 9 10 9H12.5C13.3284 9 14 8.32843 14 7.5V3C14 2.17157 13.3284 1.5 12.5 1.5H10ZM12.5 3H10V7.5H12.5V3Z"
21
+ fill="currentColor"
22
+ />
23
+ <path
24
+ fillRule="evenodd"
25
+ clipRule="evenodd"
26
+ d="M2 8.5C2 7.67157 2.67157 7 3.5 7H5.75C6.57843 7 7.25 7.67157 7.25 8.5V13C7.25 13.8284 6.57843 14.5 5.75 14.5H3.5C2.67157 14.5 2 13.8284 2 13V8.5ZM3.5 8.5H5.75V13H3.5L3.5 8.5Z"
27
+ fill="currentColor"
28
+ />
29
+ </Icon>
30
+ ));
31
+
32
+ export default Dashboard;
@@ -241,3 +241,4 @@ export { default as WrappedLines } from './WrappedLines';
241
241
  export { default as Xamarin } from './Xamarin';
242
242
  export { default as XTwitter } from './XTwitter';
243
243
  export { default as OutsideContributor } from './OutsideContributor';
244
+ export { default as Dashboard } from './Dashboard';
@@ -0,0 +1,32 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const Dashboard = 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="M3.5 7.5V5C3.5 3.89543 4.39543 3 5.5 3H9C10.1046 3 11 3.89543 11 5V7.5C11 8.60457 10.1046 9.5 9 9.5H5.5C4.39543 9.5 3.5 8.60457 3.5 7.5ZM5.5 7.5V5L9 5V7.5H5.5Z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ fillRule="evenodd"
13
+ clipRule="evenodd"
14
+ d="M12.5 19V16.5C12.5 15.3954 13.3954 14.5 14.5 14.5H18.5C19.6046 14.5 20.5 15.3954 20.5 16.5V19C20.5 20.1046 19.6046 21 18.5 21H14.5C13.3954 21 12.5 20.1046 12.5 19ZM14.5 19V16.5H18.5V19H14.5Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ fillRule="evenodd"
19
+ clipRule="evenodd"
20
+ d="M3.5 13V19C3.5 20.1046 4.39543 21 5.5 21H9C10.1046 21 11 20.1046 11 19V13C11 11.8954 10.1046 11 9 11H5.5C4.39543 11 3.5 11.8954 3.5 13ZM5.5 13V19H9V13H5.5Z"
21
+ fill="currentColor"
22
+ />
23
+ <path
24
+ fillRule="evenodd"
25
+ clipRule="evenodd"
26
+ d="M12.5 11V5C12.5 3.89543 13.3954 3 14.5 3H18.5C19.6046 3 20.5 3.89543 20.5 5V11C20.5 12.1046 19.6046 13 18.5 13H14.5C13.3954 13 12.5 12.1046 12.5 11ZM14.5 11V5L18.5 5V11H14.5Z"
27
+ fill="currentColor"
28
+ />
29
+ </Icon>
30
+ ));
31
+
32
+ export default Dashboard;
@@ -241,3 +241,4 @@ export { default as WrappedLines } from './WrappedLines';
241
241
  export { default as Xamarin } from './Xamarin';
242
242
  export { default as XTwitter } from './XTwitter';
243
243
  export { default as OutsideContributor } from './OutsideContributor';
244
+ export { default as Dashboard } from './Dashboard';