@bitrise/bitkit 13.353.0 → 13.354.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.353.0",
4
+ "version": "13.354.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-2--react';
2
+
3
+ const Python = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ fill="currentColor"
7
+ d="M7.976 1c-3.305 0-3.34 1.283-3.34 1.547V4.15H8.04v.481H3.283C2.271 4.631 1 5.246 1 7.972c0 2.504.992 3.472 1.993 3.472h1.189v-1.67c0-.699.346-1.993 1.96-1.993H9.52c.497 0 1.897-.216 1.897-1.833V2.865c0-.401-.068-1.865-3.44-1.865M6.1 2.078A.612.612 0 1 1 6.1 3.302.612.612 0 0 1 6.1 2.078"
8
+ />
9
+ <path
10
+ fill="currentColor"
11
+ d="M8.024 15c3.304 0 3.345-1.307 3.345-1.547V11.85H7.96v-.481h4.757c1.02 0 2.283-.63 2.283-3.341 0-2.968-1.341-3.472-1.993-3.472h-1.189v1.67c0 .7-.335 1.993-1.96 1.993H6.48c-.496 0-1.898.241-1.898 1.833v3.083c0 .665.407 1.865 3.44 1.865M9.9 13.922a.612.612 0 1 1-.001-1.224.612.612 0 0 1 .001 1.224"
12
+ />
13
+ </Icon>
14
+ ));
15
+
16
+ export default Python;
@@ -201,6 +201,7 @@ export { default as Project } from './Project';
201
201
  export { default as Pull } from './Pull';
202
202
  export { default as Push } from './Push';
203
203
  export { default as Puzzle } from './Puzzle';
204
+ export { default as Python } from './Python';
204
205
  export { default as QuestionCircle } from './QuestionCircle';
205
206
  export { default as QuestionCircleFilled } from './QuestionCircleFilled';
206
207
  export { default as ReactIcon } from './ReactIcon';
@@ -0,0 +1,16 @@
1
+ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
+
3
+ const Python = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ fill="currentColor"
7
+ d="M11.966 2C7.244 2 7.193 3.833 7.193 4.21V6.5h4.864v.687H5.26C3.816 7.187 2 8.067 2 11.96c0 3.577 1.417 4.96 2.847 4.96h1.698v-2.386c0-.998.495-2.847 2.802-2.847h4.823c.71 0 2.71-.308 2.71-2.619V4.665C16.88 4.09 16.784 2 11.967 2M9.284 3.54a.874.874 0 1 1 0 1.75.874.874 0 1 1 0-1.75"
8
+ />
9
+ <path
10
+ fill="currentColor"
11
+ d="M12.034 22c4.72 0 4.778-1.867 4.778-2.21V17.5h-4.869v-.687h6.795c1.457 0 3.262-.901 3.262-4.773 0-4.24-1.916-4.96-2.846-4.96h-1.7v2.386c0 .998-.478 2.847-2.8 2.847H9.828c-.707 0-2.71.344-2.71 2.619v4.403c0 .951.581 2.665 4.915 2.665m2.682-1.54a.874.874 0 1 1-.002-1.748.874.874 0 0 1 .002 1.748"
12
+ />
13
+ </Icon>
14
+ ));
15
+
16
+ export default Python;
@@ -201,6 +201,7 @@ export { default as Project } from './Project';
201
201
  export { default as Pull } from './Pull';
202
202
  export { default as Push } from './Push';
203
203
  export { default as Puzzle } from './Puzzle';
204
+ export { default as Python } from './Python';
204
205
  export { default as QuestionCircle } from './QuestionCircle';
205
206
  export { default as QuestionCircleFilled } from './QuestionCircleFilled';
206
207
  export { default as ReactIcon } from './ReactIcon';