@bitrise/bitkit 13.339.0 → 13.340.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.339.0",
4
+ "version": "13.340.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -0,0 +1,13 @@
1
+ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
+
3
+ const Stop = 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="M12.5 2C13.3284 2 14 2.67157 14 3.5V12.5C14 13.3284 13.3284 14 12.5 14H3.5C2.67157 14 2 13.3284 2 12.5V3.5C2 2.67157 2.67157 2 3.5 2H12.5ZM3.5 3.5V12.5H12.5V3.5H3.5Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+ export default Stop;
@@ -280,3 +280,4 @@ export { default as TeamsColor } from './TeamsColor';
280
280
  export { default as BrowserStackColor } from './BrowserStackColor';
281
281
  export { default as Sparkle } from './Sparkle';
282
282
  export { default as SparkleFilled } from './SparkleFilled';
283
+ export { default as Stop } from './Stop';
@@ -0,0 +1,14 @@
1
+ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
+
3
+ const Stop = 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="M18 4C19.1046 4 20 4.89543 20 6V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18V6C4 4.89543 4.89543 4 6 4H18ZM6 6V18H18V6H6Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Stop;
@@ -280,3 +280,4 @@ export { default as TeamsColor } from './TeamsColor';
280
280
  export { default as BrowserStackColor } from './BrowserStackColor';
281
281
  export { default as Sparkle } from './Sparkle';
282
282
  export { default as SparkleFilled } from './SparkleFilled';
283
+ export { default as Stop } from './Stop';