You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
369 B
13 lines
369 B
using System; |
|
using FluentAvalonia.UI.Controls; |
|
|
|
namespace StabilityMatrix.Avalonia.Controls; |
|
|
|
/// <summary> |
|
/// Like <see cref="HyperlinkButton"/>, but with a link icon left of the text content. |
|
/// </summary> |
|
public class HyperlinkIconButton : HyperlinkButton |
|
{ |
|
/// <inheritdoc /> |
|
protected override Type StyleKeyOverride => typeof(HyperlinkIconButton); |
|
}
|
|
|