@bitrise/bitkit 12.9.1 → 12.10.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": "12.9.1",
4
+ "version": "12.10.0",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const MonitorChart = 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="M1.33337 2.66671C1.33337 1.93033 1.93033 1.33337 2.66671 1.33337H13.3334C14.0698 1.33337 14.6667 1.93033 14.6667 2.66671V10.6667C14.6667 11.4031 14.0698 12 13.3334 12H8.66667V13.3333H12V14.6667H4V13.3333H7.33333V12H2.66671C1.93033 12 1.33337 11.4031 1.33337 10.6667V2.66671ZM13.3334 2.66671L2.66671 2.66671V10.6667H13.3334V2.66671ZM8.66672 8.27619L12.4715 4.47146L11.5286 3.52865L8.66672 6.39057L7.33338 5.05724L3.52865 8.86198L4.47146 9.80479L7.33338 6.94286L8.66672 8.27619Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default MonitorChart;
@@ -115,6 +115,7 @@ export { default as Message } from './Message';
115
115
  export { default as MinusClose } from './MinusClose';
116
116
  export { default as MinusRemove } from './MinusRemove';
117
117
  export { default as Mobile } from './Mobile';
118
+ export { default as MonitorChart } from './MonitorChart';
118
119
  export { default as MoreHorizontal } from './MoreHorizontal';
119
120
  export { default as MoreVertical } from './MoreVertical';
120
121
  export { default as News } from './News';
@@ -0,0 +1,14 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const MonitorChart = 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="M2 4C2 2.89543 2.89543 2 4 2H20C21.1046 2 22 2.89543 22 4V16C22 17.1046 21.1046 18 20 18H13V20H18V22H6V20H11V18H4C2.89543 18 2 17.1046 2 16V4ZM20 4L4 4V16H20V4ZM13.0001 12.4143L18.7072 6.70718L17.293 5.29297L13.0001 9.58586L11.0001 7.58586L5.29297 13.293L6.70718 14.7072L11.0001 10.4143L13.0001 12.4143Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default MonitorChart;
@@ -115,6 +115,7 @@ export { default as Message } from './Message';
115
115
  export { default as MinusClose } from './MinusClose';
116
116
  export { default as MinusRemove } from './MinusRemove';
117
117
  export { default as Mobile } from './Mobile';
118
+ export { default as MonitorChart } from './MonitorChart';
118
119
  export { default as MoreHorizontal } from './MoreHorizontal';
119
120
  export { default as MoreVertical } from './MoreVertical';
120
121
  export { default as News } from './News';