()
| 178 | /** Name of the icon in the SVG icon set. */ |
| 179 | @Input() |
| 180 | get svgIcon(): string { |
| 181 | return this._svgIcon; |
| 182 | } |
| 183 | set svgIcon(value: string) { |
| 184 | if (value !== this._svgIcon) { |
| 185 | if (value) { |
nothing calls this directly
no test coverage detected