()
| 195 | /** Font set that the icon is a part of. */ |
| 196 | @Input() |
| 197 | get fontSet(): string { |
| 198 | return this._fontSet; |
| 199 | } |
| 200 | set fontSet(value: string) { |
| 201 | const newValue = this._cleanupFontValue(value); |
| 202 |
nothing calls this directly
no test coverage detected