()
| 40 | @Prop() paused = false; |
| 41 | |
| 42 | private getName(): SpinnerTypes { |
| 43 | const spinnerName = this.name || config.get('spinner'); |
| 44 | const mode = getIonMode(this); |
| 45 | if (spinnerName) { |
| 46 | return spinnerName; |
| 47 | } |
| 48 | return mode === 'ios' ? 'lines' : 'circular'; |
| 49 | } |
| 50 | |
| 51 | render() { |
| 52 | const self = this; |
no test coverage detected