()
| 210 | /** Name of an icon within a font set. */ |
| 211 | @Input() |
| 212 | get fontIcon(): string { |
| 213 | return this._fontIcon; |
| 214 | } |
| 215 | set fontIcon(value: string) { |
| 216 | const newValue = this._cleanupFontValue(value); |
| 217 |
nothing calls this directly
no test coverage detected