@bitrise/bitkit 13.137.0 → 13.138.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.137.0",
4
+ "version": "13.138.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -0,0 +1,19 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const QuestionCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ d="M8.20353 7.28235C7.7874 7.58855 7.33484 7.92157 7.33484 8.64592C7.33484 8.83085 7.42604 9.06201 7.42604 9.06201H8.65734C8.65734 8.51386 8.99873 8.21568 9.37016 7.89126C9.81325 7.50425 10.2991 7.07991 10.2991 6.14935C10.2991 5.17847 9.4326 4.30005 8.1101 4.30005C6.28595 4.30005 5.82992 5.87196 5.82992 5.87196L6.97001 6.38052C6.97001 6.38052 7.19803 5.6408 8.06449 5.6408C8.56613 5.6408 8.88536 5.96442 8.88536 6.33429C8.88536 6.78064 8.55764 7.02179 8.20353 7.28235Z"
7
+ fill="currentColor"
8
+ />
9
+ <path d="M7.29907 11.8V10.3H8.79907V11.8H7.29907Z" fill="currentColor" />
10
+ <path
11
+ fillRule="evenodd"
12
+ clipRule="evenodd"
13
+ d="M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5Z"
14
+ fill="currentColor"
15
+ />
16
+ </Icon>
17
+ ));
18
+
19
+ export default QuestionCircle;
@@ -176,6 +176,7 @@ export { default as ProgressWhite } from './ProgressWhite';
176
176
  export { default as Pull } from './Pull';
177
177
  export { default as Push } from './Push';
178
178
  export { default as Puzzle } from './Puzzle';
179
+ export { default as QuestionCircle } from './QuestionCircle';
179
180
  export { default as ReactIcon } from './ReactIcon';
180
181
  export { default as Refresh } from './Refresh';
181
182
  export { default as Release } from './Release';
@@ -0,0 +1,19 @@
1
+ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
+
3
+ const QuestionCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ d="M11.1 13C11.1 11.9111 11.7818 11.415 12.403 10.9631C12.9227 10.585 13.4 10.2377 13.4 9.6C13.4 9 12.9 8.6 12.2 8.6C10.9 8.5 10.5 9.6 10.5 9.6L8.5 8.9C8.5 8.9 9.5 6.5 12.2 6.5C14.2 6.5 15.5 7.8 15.5 9.3C15.5 10.7376 14.7357 11.3803 14.0523 11.955C13.4997 12.4197 13 12.8399 13 13.6H11.2C11.2 13.6 11.1 13.3 11.1 13Z"
7
+ fill="currentColor"
8
+ />
9
+ <path d="M13 17.5V15.5H11V17.5H13Z" fill="currentColor" />
10
+ <path
11
+ fillRule="evenodd"
12
+ clipRule="evenodd"
13
+ d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z"
14
+ fill="currentColor"
15
+ />
16
+ </Icon>
17
+ ));
18
+
19
+ export default QuestionCircle;
@@ -176,6 +176,7 @@ export { default as ProgressWhite } from './ProgressWhite';
176
176
  export { default as Pull } from './Pull';
177
177
  export { default as Push } from './Push';
178
178
  export { default as Puzzle } from './Puzzle';
179
+ export { default as QuestionCircle } from './QuestionCircle';
179
180
  export { default as ReactIcon } from './ReactIcon';
180
181
  export { default as Refresh } from './Refresh';
181
182
  export { default as Release } from './Release';