@bitrise/bitkit 9.13.1 → 9.13.2

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.
@@ -1,24 +0,0 @@
1
- import * as React from 'react';
2
- import Button, { Props as ButtonProps } from '../Button/Button';
3
- import ProgressButtonContent, { Props as ProgressButtonContentProps } from './ProgressButtonContent';
4
-
5
- export interface Props extends ButtonProps, ProgressButtonContentProps {}
6
-
7
- /**
8
- * A progress indicator action button that is useful
9
- * to provide inline feedback that after a user action,
10
- * something is happening.
11
- */
12
- const ProgressButton: React.FunctionComponent<Props> = (props: Props) => {
13
- const { children, progressing, size, ...rest } = props;
14
-
15
- return (
16
- <Button size={size} {...rest}>
17
- <ProgressButtonContent progressing={progressing} size={size}>
18
- {children}
19
- </ProgressButtonContent>
20
- </Button>
21
- );
22
- };
23
-
24
- export default ProgressButton;