From 5a7269b20db0371535669c0faa7f1814d967b5ca Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sat, 31 Aug 2019 11:49:36 +0200 Subject: cli refunds --- src/webex/renderHtml.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/webex/renderHtml.tsx') diff --git a/src/webex/renderHtml.tsx b/src/webex/renderHtml.tsx index e4686adee..867fb440f 100644 --- a/src/webex/renderHtml.tsx +++ b/src/webex/renderHtml.tsx @@ -316,3 +316,28 @@ export class ExpanderText extends ImplicitStateComponent { } } + +export interface LoadingButtonProps { + loading: boolean; +} + +export function ProgressButton( + props: + & React.PropsWithChildren + & React.DetailedHTMLProps< + React.ButtonHTMLAttributes, + HTMLButtonElement + >, +) { + return ( +