Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 73db3ca

Browse files
author
Shammamah Hossain
committed
Define style prop for spinners as object and not bool.
1 parent 8e181d7 commit 73db3ca

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/fragments/Loading/spinners/CircleSpinner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ CircleSpinner.propTypes = {
191191
color: PropTypes.string,
192192
className: PropTypes.string,
193193
fullscreen: PropTypes.bool,
194-
style: PropTypes.bool,
194+
style: PropTypes.object,
195195
debug: PropTypes.bool,
196196
};
197197

src/fragments/Loading/spinners/CubeSpinner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ CubeSpinner.propTypes = {
193193
color: PropTypes.string,
194194
className: PropTypes.string,
195195
fullscreen: PropTypes.bool,
196-
style: PropTypes.bool,
196+
style: PropTypes.object,
197197
debug: PropTypes.bool,
198198
};
199199

src/fragments/Loading/spinners/DefaultSpinner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ DefaultSpinner.propTypes = {
116116
color: PropTypes.string,
117117
className: PropTypes.string,
118118
fullscreen: PropTypes.bool,
119-
style: PropTypes.bool,
119+
style: PropTypes.object,
120120
debug: PropTypes.bool,
121121
};
122122

src/fragments/Loading/spinners/DotSpinner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ DotSpinner.propTypes = {
9595
color: PropTypes.string,
9696
className: PropTypes.string,
9797
fullscreen: PropTypes.bool,
98-
style: PropTypes.bool,
98+
style: PropTypes.object,
9999
debug: PropTypes.bool,
100100
};
101101

src/fragments/Loading/spinners/GraphSpinner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ GraphSpinner.propTypes = {
332332
color: PropTypes.string,
333333
className: PropTypes.string,
334334
fullscreen: PropTypes.bool,
335-
style: PropTypes.bool,
335+
style: PropTypes.object,
336336
debug: PropTypes.bool,
337337
};
338338

0 commit comments

Comments
 (0)