aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Infobox.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-10 07:53:26 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-10 07:53:26 +0530
commitf1f025639db0b891be7649b95a787af990df27ed (patch)
tree7f67f557efb5c64330754e13da4ccc5f01e4d331 /src/components/ui/Infobox.tsx
parentNew public release: 6.7.0 (diff)
parent6.7.1-nightly.28 [skip ci] (diff)
downloadferdium-app-f1f025639db0b891be7649b95a787af990df27ed.tar.gz
ferdium-app-f1f025639db0b891be7649b95a787af990df27ed.tar.zst
ferdium-app-f1f025639db0b891be7649b95a787af990df27ed.zip
Merge branch 'develop' into release; Bump to 6.7.1v6.7.1
Diffstat (limited to 'src/components/ui/Infobox.tsx')
-rw-r--r--src/components/ui/Infobox.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/ui/Infobox.tsx b/src/components/ui/Infobox.tsx
index 742717ed7..14e1a581c 100644
--- a/src/components/ui/Infobox.tsx
+++ b/src/components/ui/Infobox.tsx
@@ -6,6 +6,7 @@ import { noop } from 'lodash';
6import { observer } from 'mobx-react'; 6import { observer } from 'mobx-react';
7import Loader from './loader/index'; 7import Loader from './loader/index';
8import Icon from './icon'; 8import Icon from './icon';
9import { DEFAULT_LOADER_COLOR } from '../../config';
9 10
10const icons = { 11const icons = {
11 'checkbox-marked-circle-outline': mdiCheckboxMarkedCircleOutline, 12 'checkbox-marked-circle-outline': mdiCheckboxMarkedCircleOutline,
@@ -84,7 +85,11 @@ class Infobox extends Component<IProps, IState> {
84 className="contentWrapper" 85 className="contentWrapper"
85 style={{ display: 'flex', gap: '8px' }} 86 style={{ display: 'flex', gap: '8px' }}
86 > 87 >
87 <Loader size={18} loaded={!ctaLoading} color="#FFFFFF" /> 88 <Loader
89 size={18}
90 loaded={!ctaLoading}
91 color={DEFAULT_LOADER_COLOR}
92 />
88 {ctaLabel} 93 {ctaLabel}
89 </div> 94 </div>
90 </button> 95 </button>