@bitrise/bitkit 12.41.2 → 12.41.4

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.41.2",
4
+ "version": "12.41.4",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -0,0 +1,18 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const CheckCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ d="M4.33334 7.99985L5.27615 7.05704L7.16177 8.94265L10.4616 5.64282L11.4044 6.58563L7.16177 10.8283L4.33334 7.99985Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ fillRule="evenodd"
11
+ clipRule="evenodd"
12
+ d="M14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00001 14.6666C4.31811 14.6666 1.33334 11.6818 1.33334 7.99992C1.33334 4.31802 4.31811 1.33325 8.00001 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992ZM13.3333 7.99992C13.3333 10.9454 10.9455 13.3333 8.00001 13.3333C5.05449 13.3333 2.66668 10.9454 2.66668 7.99992C2.66668 5.0544 5.05449 2.66659 8.00001 2.66659C10.9455 2.66659 13.3333 5.0544 13.3333 7.99992Z"
13
+ fill="currentColor"
14
+ />
15
+ </Icon>
16
+ ));
17
+
18
+ export default CheckCircle;
@@ -46,6 +46,7 @@ export { default as Calendar } from './Calendar';
46
46
  export { default as ChangePlan } from './ChangePlan';
47
47
  export { default as ChatMessage } from './ChatMessage';
48
48
  export { default as Chat } from './Chat';
49
+ export { default as CheckCircle } from './CheckCircle';
49
50
  export { default as ChevronDown } from './ChevronDown';
50
51
  export { default as ChevronLeft } from './ChevronLeft';
51
52
  export { default as ChevronRight } from './ChevronRight';
@@ -0,0 +1,18 @@
1
+ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
+
3
+ const CheckCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ d="M6.5 11.9999L7.91421 10.5857L10.7426 13.4141L15.6924 8.46436L17.1066 9.87857L10.7426 16.2425L6.5 11.9999Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ fillRule="evenodd"
11
+ clipRule="evenodd"
12
+ 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"
13
+ fill="currentColor"
14
+ />
15
+ </Icon>
16
+ ));
17
+
18
+ export default CheckCircle;
@@ -46,6 +46,7 @@ export { default as Calendar } from './Calendar';
46
46
  export { default as ChangePlan } from './ChangePlan';
47
47
  export { default as ChatMessage } from './ChatMessage';
48
48
  export { default as Chat } from './Chat';
49
+ export { default as CheckCircle } from './CheckCircle';
49
50
  export { default as ChevronDown } from './ChevronDown';
50
51
  export { default as ChevronLeft } from './ChevronLeft';
51
52
  export { default as ChevronRight } from './ChevronRight';
@@ -28,6 +28,7 @@ const STATUSES: Record<NotificationStatus, { colorScheme: ColorScheme; defaultIc
28
28
  export type ActionProps = {
29
29
  label: string;
30
30
  href?: string;
31
+ target?: string;
31
32
  onClick?: () => void;
32
33
  placement?: 'end' | 'after-content';
33
34
  } & Omit<ColorButtonProps, 'as' | 'onClick' | 'colorScheme'>;