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.
14 lines
369 B
14 lines
369 B
1 year ago
|
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);
|
||
|
}
|