diff --git a/framework/core/js/src/common/components/LoadingIndicator.js b/framework/core/js/src/common/components/LoadingIndicator.js index fc036baae..e77228510 100644 --- a/framework/core/js/src/common/components/LoadingIndicator.js +++ b/framework/core/js/src/common/components/LoadingIndicator.js @@ -29,6 +29,10 @@ export default class LoadingIndicator extends Component { Object.assign(options, { lines: 10, length: 8, width: 4, radius: 8 }); break; + case 'tiny': + Object.assign(options, { lines: 8, length: 2, width: 2, radius: 3 }); + break; + default: Object.assign(options, { lines: 8, length: 4, width: 3, radius: 5 }); }