diff --git a/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml b/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml new file mode 100644 index 0000000..91c02ee --- /dev/null +++ b/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml @@ -0,0 +1,13 @@ + + + + + diff --git a/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml.cs b/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml.cs new file mode 100644 index 0000000..30be84e --- /dev/null +++ b/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml.cs @@ -0,0 +1,18 @@ +using Avalonia; +using Avalonia.Controls; + +namespace ClaudeDo.Ui.Views.Controls; + +public partial class InheritedBadge : UserControl +{ + public static readonly StyledProperty BadgeTextProperty = + AvaloniaProperty.Register(nameof(BadgeText)); + + public string? BadgeText + { + get => GetValue(BadgeTextProperty); + set => SetValue(BadgeTextProperty, value); + } + + public InheritedBadge() => InitializeComponent(); +}