@bitrise/bitkit 13.83.0 → 13.84.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.83.0",
4
+ "version": "13.84.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -0,0 +1,16 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const InfoCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path d="M8.75 7L8.75 12L7.25 12L7.25 7L8.75 7Z" fill="currentColor" />
6
+ <path d="M8.75 5.5L8.75 4L7.25 4L7.25 5.5L8.75 5.5Z" fill="currentColor" />
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M8 0.999999C4.13401 0.999999 1 4.13401 1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 0.999999ZM8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5Z"
11
+ fill="currentColor"
12
+ />
13
+ </Icon>
14
+ ));
15
+
16
+ export default InfoCircle;
@@ -0,0 +1,14 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const InfoCircleFilled = 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="M8 0.999999C4.13401 0.999999 1 4.13401 1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 0.999999ZM8.75 7L8.75 12L7.25 12L7.25 7L8.75 7ZM8.75 4L8.75 5.5L7.25 5.5L7.25 4L8.75 4Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default InfoCircleFilled;
@@ -119,6 +119,8 @@ export { default as HidePassword } from './HidePassword';
119
119
  export { default as History } from './History';
120
120
  export { default as Image } from './Image';
121
121
  export { default as Info } from './Info';
122
+ export { default as InfoCircle } from './InfoCircle';
123
+ export { default as InfoCircleFilled } from './InfoCircleFilled';
122
124
  export { default as Interaction } from './Interaction';
123
125
  export { default as Invoice } from './Invoice';
124
126
  export { default as Ionic } from './Ionic';
@@ -0,0 +1,16 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const InfoCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path d="M13 6.5V8.5H11V6.5H13Z" fill="currentColor" />
6
+ <path d="M13 17.5V10.5H11V17.5H13Z" fill="currentColor" />
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z"
11
+ fill="currentColor"
12
+ />
13
+ </Icon>
14
+ ));
15
+
16
+ export default InfoCircle;
@@ -0,0 +1,14 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const InfoCircleFilled = 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="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM11 8.5V6.5H13V8.5H11ZM11 17.5V10.5H13V17.5H11Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default InfoCircleFilled;
@@ -119,6 +119,8 @@ export { default as HidePassword } from './HidePassword';
119
119
  export { default as History } from './History';
120
120
  export { default as Image } from './Image';
121
121
  export { default as Info } from './Info';
122
+ export { default as InfoCircle } from './InfoCircle';
123
+ export { default as InfoCircleFilled } from './InfoCircleFilled';
122
124
  export { default as Interaction } from './Interaction';
123
125
  export { default as Invoice } from './Invoice';
124
126
  export { default as Ionic } from './Ionic';