aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/InfoBar.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/InfoBar.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/InfoBar.tsx')
-rw-r--r--src/components/ui/InfoBar.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/ui/InfoBar.tsx b/src/components/ui/InfoBar.tsx
index ae37546df..f3f1adbe7 100644
--- a/src/components/ui/InfoBar.tsx
+++ b/src/components/ui/InfoBar.tsx
@@ -8,6 +8,7 @@ import { noop } from 'lodash';
8import Loader from './loader/index'; 8import Loader from './loader/index';
9import Appear from './effects/Appear'; 9import Appear from './effects/Appear';
10import Icon from './icon'; 10import Icon from './icon';
11import { DEFAULT_LOADER_COLOR } from '../../config';
11 12
12const messages = defineMessages({ 13const messages = defineMessages({
13 hide: { 14 hide: {
@@ -71,7 +72,11 @@ class InfoBar extends Component<IProps> {
71 className="contentWrapper" 72 className="contentWrapper"
72 style={{ display: 'flex', gap: '8px' }} 73 style={{ display: 'flex', gap: '8px' }}
73 > 74 >
74 <Loader size={18} loaded={!ctaLoading} color="#FFFFFF" /> 75 <Loader
76 size={18}
77 loaded={!ctaLoading}
78 color={DEFAULT_LOADER_COLOR}
79 />
75 {ctaLabel} 80 {ctaLabel}
76 </div> 81 </div>
77 </button> 82 </button>